From 4f5c14979880ce0c07fbb98ebeaa20b601c22485 Mon Sep 17 00:00:00 2001 From: Asmir Mustafic Date: Wed, 12 Apr 2017 12:55:45 +0200 Subject: [PATCH 01/67] Test case for not in-lined map-objects --- .../Component/Yaml/Tests/DumperTest.php | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/Symfony/Component/Yaml/Tests/DumperTest.php b/src/Symfony/Component/Yaml/Tests/DumperTest.php index 844177dbcd107..4533c6050c35e 100644 --- a/src/Symfony/Component/Yaml/Tests/DumperTest.php +++ b/src/Symfony/Component/Yaml/Tests/DumperTest.php @@ -206,6 +206,25 @@ public function testInlineLevel() $this->assertEquals($expected, $this->dumper->dump($this->array, 10), '->dump() takes an inline level argument'); } + public function testArrayObjectAsMapNotInLined() + { + $deep = new \ArrayObject(array('deep1' => 'd', 'deep2' => 'e')); + $inner = new \ArrayObject(array('inner1' => 'b', 'inner2' => 'c', 'inner3' => $deep)); + $outer = new \ArrayObject(array('outer1' => 'a', 'outer1' => $inner)); + + $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); + + $expected = <<assertEquals($expected, $yaml); + } + public function testObjectSupportEnabled() { $dump = $this->dumper->dump(array('foo' => new A(), 'bar' => 1), 0, 0, Yaml::DUMP_OBJECT); From 3cca48c715bb016825c96aae7957d66afb7f8562 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 12 Apr 2017 21:41:43 +0200 Subject: [PATCH 02/67] respect inline level when dumping objects as maps --- src/Symfony/Component/Yaml/Dumper.php | 21 +++- src/Symfony/Component/Yaml/Inline.php | 10 +- .../Component/Yaml/Tests/DumperTest.php | 106 ++++++++++++++---- 3 files changed, 110 insertions(+), 27 deletions(-) diff --git a/src/Symfony/Component/Yaml/Dumper.php b/src/Symfony/Component/Yaml/Dumper.php index 98d82434c2388..a38bce014279a 100644 --- a/src/Symfony/Component/Yaml/Dumper.php +++ b/src/Symfony/Component/Yaml/Dumper.php @@ -81,15 +81,20 @@ public function dump($input, $inline = 0, $indent = 0, $flags = 0) $output = ''; $prefix = $indent ? str_repeat(' ', $indent) : ''; + $dumpObjectAsInlineMap = true; - if ($inline <= 0 || !is_array($input) || empty($input)) { + if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($input instanceof \ArrayObject || $input instanceof \stdClass)) { + $dumpObjectAsInlineMap = empty((array) $input); + } + + if ($inline <= 0 || (!is_array($input) && $dumpObjectAsInlineMap) || empty($input)) { $output .= $prefix.Inline::dump($input, $flags); } else { - $isAHash = Inline::isHash($input); + $dumpAsMap = Inline::isHash($input); foreach ($input as $key => $value) { if ($inline >= 1 && Yaml::DUMP_MULTI_LINE_LITERAL_BLOCK & $flags && is_string($value) && false !== strpos($value, "\n")) { - $output .= sprintf("%s%s%s |\n", $prefix, $isAHash ? Inline::dump($key, $flags).':' : '-', ''); + $output .= sprintf("%s%s%s |\n", $prefix, $dumpAsMap ? Inline::dump($key, $flags).':' : '-', ''); foreach (preg_split('/\n|\r\n/', $value) as $row) { $output .= sprintf("%s%s%s\n", $prefix, str_repeat(' ', $this->indentation), $row); @@ -98,11 +103,17 @@ public function dump($input, $inline = 0, $indent = 0, $flags = 0) continue; } - $willBeInlined = $inline - 1 <= 0 || !is_array($value) || empty($value); + $dumpObjectAsInlineMap = true; + + if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \ArrayObject || $value instanceof \stdClass)) { + $dumpObjectAsInlineMap = empty((array) $value); + } + + $willBeInlined = $inline - 1 <= 0 || !is_array($value) && $dumpObjectAsInlineMap || empty($value); $output .= sprintf('%s%s%s%s', $prefix, - $isAHash ? Inline::dump($key, $flags).':' : '-', + $dumpAsMap ? Inline::dump($key, $flags).':' : '-', $willBeInlined ? ' ' : "\n", $this->dump($value, $inline - 1, $willBeInlined ? 0 : $indent + $this->indentation, $flags) ).($willBeInlined ? "\n" : ''); diff --git a/src/Symfony/Component/Yaml/Inline.php b/src/Symfony/Component/Yaml/Inline.php index eb3ffed6f3690..b2cf9d4930f72 100644 --- a/src/Symfony/Component/Yaml/Inline.php +++ b/src/Symfony/Component/Yaml/Inline.php @@ -164,7 +164,7 @@ public static function dump($value, $flags = 0) } if (Yaml::DUMP_OBJECT_AS_MAP & $flags && ($value instanceof \stdClass || $value instanceof \ArrayObject)) { - return self::dumpArray((array) $value, $flags); + return self::dumpArray($value, $flags); } if (Yaml::DUMP_EXCEPTION_ON_INVALID_TYPE & $flags) { @@ -224,12 +224,16 @@ public static function dump($value, $flags = 0) * * @internal * - * @param array $value The PHP array to check + * @param array|\ArrayObject|\stdClass $value The PHP array or array-like object to check * * @return bool true if value is hash array, false otherwise */ - public static function isHash(array $value) + public static function isHash($value) { + if ($value instanceof \stdClass || $value instanceof \ArrayObject) { + return true; + } + $expectedKey = 0; foreach ($value as $key => $val) { diff --git a/src/Symfony/Component/Yaml/Tests/DumperTest.php b/src/Symfony/Component/Yaml/Tests/DumperTest.php index 4533c6050c35e..de49f46dded92 100644 --- a/src/Symfony/Component/Yaml/Tests/DumperTest.php +++ b/src/Symfony/Component/Yaml/Tests/DumperTest.php @@ -206,25 +206,6 @@ public function testInlineLevel() $this->assertEquals($expected, $this->dumper->dump($this->array, 10), '->dump() takes an inline level argument'); } - public function testArrayObjectAsMapNotInLined() - { - $deep = new \ArrayObject(array('deep1' => 'd', 'deep2' => 'e')); - $inner = new \ArrayObject(array('inner1' => 'b', 'inner2' => 'c', 'inner3' => $deep)); - $outer = new \ArrayObject(array('outer1' => 'a', 'outer1' => $inner)); - - $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); - - $expected = <<assertEquals($expected, $yaml); - } - public function testObjectSupportEnabled() { $dump = $this->dumper->dump(array('foo' => new A(), 'bar' => 1), 0, 0, Yaml::DUMP_OBJECT); @@ -352,6 +333,93 @@ public function objectAsMapProvider() return $tests; } + public function testDumpingArrayObjectInstancesRespectsInlineLevel() + { + $deep = new \ArrayObject(array('deep1' => 'd', 'deep2' => 'e')); + $inner = new \ArrayObject(array('inner1' => 'b', 'inner2' => 'c', 'inner3' => $deep)); + $outer = new \ArrayObject(array('outer1' => 'a', 'outer2' => $inner)); + + $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); + + $expected = <<assertSame($expected, $yaml); + } + + public function testDumpingArrayObjectInstancesWithNumericKeysInlined() + { + $deep = new \ArrayObject(array('d', 'e')); + $inner = new \ArrayObject(array('b', 'c', $deep)); + $outer = new \ArrayObject(array('a', $inner)); + + $yaml = $this->dumper->dump($outer, 0, 0, Yaml::DUMP_OBJECT_AS_MAP); + $expected = <<assertSame($expected, $yaml); + } + + public function testDumpingArrayObjectInstancesWithNumericKeysRespectsInlineLevel() + { + $deep = new \ArrayObject(array('d', 'e')); + $inner = new \ArrayObject(array('b', 'c', $deep)); + $outer = new \ArrayObject(array('a', $inner)); + $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); + $expected = <<assertEquals($expected, $yaml); + } + + public function testDumpEmptyArrayObjectInstanceAsMap() + { + $this->assertSame('{ }', $this->dumper->dump(new \ArrayObject(), 2, 0, Yaml::DUMP_OBJECT_AS_MAP)); + } + + public function testDumpEmptyStdClassInstanceAsMap() + { + $this->assertSame('{ }', $this->dumper->dump(new \stdClass(), 2, 0, Yaml::DUMP_OBJECT_AS_MAP)); + } + + public function testDumpingStdClassInstancesRespectsInlineLevel() + { + $deep = new \stdClass(); + $deep->deep1 = 'd'; + $deep->deep2 = 'e'; + + $inner = new \stdClass(); + $inner->inner1 = 'b'; + $inner->inner2 = 'c'; + $inner->inner3 = $deep; + + $outer = new \stdClass(); + $outer->outer1 = 'a'; + $outer->outer2 = $inner; + + $yaml = $this->dumper->dump($outer, 2, 0, Yaml::DUMP_OBJECT_AS_MAP); + + $expected = <<assertSame($expected, $yaml); + } + public function testDumpMultiLineStringAsScalarBlock() { $data = array( From 2967807b14dbc6af8b0e8732889b8da04e1af64b Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sat, 29 Apr 2017 20:05:30 +0200 Subject: [PATCH 03/67] [Security] Avoid unnecessary route lookup for empty logout path --- .../Component/Security/Http/Firewall/LogoutListener.php | 2 +- .../Component/Security/Http/Logout/LogoutUrlGenerator.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Http/Firewall/LogoutListener.php b/src/Symfony/Component/Security/Http/Firewall/LogoutListener.php index 01e3be722fbd0..e04a0a601920d 100644 --- a/src/Symfony/Component/Security/Http/Firewall/LogoutListener.php +++ b/src/Symfony/Component/Security/Http/Firewall/LogoutListener.php @@ -135,6 +135,6 @@ public function handle(GetResponseEvent $event) */ protected function requiresLogout(Request $request) { - return $this->httpUtils->checkRequestPath($request, $this->options['logout_path']); + return isset($this->options['logout_path']) && $this->httpUtils->checkRequestPath($request, $this->options['logout_path']); } } diff --git a/src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php b/src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php index 4ad63cc3b1103..1472a99b244a2 100644 --- a/src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php +++ b/src/Symfony/Component/Security/Http/Logout/LogoutUrlGenerator.php @@ -112,6 +112,10 @@ private function generateLogoutUrl($key, $referenceType) list($logoutPath, $csrfTokenId, $csrfParameter, $csrfTokenManager) = $this->listeners[$key]; + if (null === $logoutPath) { + throw new \LogicException('Unable to generate the logout URL without a path.'); + } + $parameters = null !== $csrfTokenManager ? array($csrfParameter => (string) $csrfTokenManager->getToken($csrfTokenId)) : array(); if ('/' === $logoutPath[0]) { From ddc9e78b08bd75e95c1587f2f977c41f9132f911 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:01:06 -0700 Subject: [PATCH 04/67] updated CHANGELOG for 2.7.27 --- CHANGELOG-2.7.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/CHANGELOG-2.7.md b/CHANGELOG-2.7.md index bc4c0fa89d5fc..1d1f0984f1988 100644 --- a/CHANGELOG-2.7.md +++ b/CHANGELOG-2.7.md @@ -7,6 +7,22 @@ in 2.7 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/v2.7.0...v2.7.1 +* 2.7.27 (2017-05-01) + + * bug #22528 [Asset] Starting slash should indicate no basePath wanted (weaverryan) + * bug #22526 [Asset] Preventing the base path or absolute URL from being prefixed incorrectly (weaverryan) + * bug #22435 [Console] Fix dispatching throwables from ConsoleEvents::COMMAND (nicolas-grekas) + * bug #22478 [Serializer] XmlEncoder: fix negative int and large numbers handling (dunglas) + * bug #22424 [Debug] Set exit status to 255 on error (nicolas-grekas) + * bug #22396 Prevent double registrations related to tag priorities (nicolas-grekas) + * bug #22352 [HttpFoundation] Add `use_strict_mode` in validOptions for session (sstok) + * bug #22351 [Yaml] don't keep internal state between parser runs (xabbuh) + * bug #22307 [Debug] Fix php notice (enumag) + * bug #22109 [Validator] check for empty host when calling checkdnsrr() (apetitpa) + * bug #22280 [DI] Fix the xml schema (GuilhemN) + * bug #22255 [Translation] avoid creating cache files for fallback locales. (aitboudad) + * bug #22292 Fixes #22264 - add support for Chrome headless (redthor) + * 2.7.26 (2017-04-04) * bug #22229 [ExpressionLanguage] Provide the expression in syntax errors (k0pernikus, stof) From 44d21493781eeaea9216642e0ce8bb9051351f77 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:01:11 -0700 Subject: [PATCH 05/67] update CONTRIBUTORS for 2.7.27 --- CONTRIBUTORS.md | 51 +++++++++++++++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 19 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 90b929e5efccb..9fe1d4c7e9d50 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -26,9 +26,9 @@ Symfony is the result of the work of many people who made the code better - Grégoire Pineau (lyrixx) - Joseph Bielawski (stloyd) - Karma Dordrak (drak) + - Robin Chalas (chalas_r) - Lukas Kahwe Smith (lsmith) - Martin Hasoň (hason) - - Robin Chalas (chalas_r) - Maxime Steinhausser (ogizanagi) - Jeremy Mikola (jmikola) - Jean-François Simon (jfsimon) @@ -37,10 +37,10 @@ Symfony is the result of the work of many people who made the code better - Eriksen Costa (eriksencosta) - Jules Pietri (heah) - Sarah Khalil (saro0h) + - Roland Franssen (ro0) - Jonathan Wage (jwage) - Guilhem Niot (energetick) - Diego Saint Esteben (dosten) - - Roland Franssen (ro0) - Alexandre Salomé (alexandresalome) - William Durand (couac) - ornicar @@ -73,10 +73,10 @@ Symfony is the result of the work of many people who made the code better - Titouan Galopin (tgalopin) - Douglas Greenshields (shieldo) - Konstantin Myakshin (koc) + - Jáchym Toušek (enumag) - Lee McDermott - Brandon Turner - Luis Cordova (cordoval) - - Jáchym Toušek (enumag) - Graham Campbell (graham) - Daniel Holmes (dholmes) - Toni Uebernickel (havvg) @@ -84,12 +84,12 @@ Symfony is the result of the work of many people who made the code better - Jordan Alliot (jalliot) - Jérémy DERUSSÉ (jderusse) - John Wards (johnwards) + - Dariusz Ruminski - Fran Moreno (franmomu) - Antoine Hérault (herzult) + - Jérôme Tamarelle (gromnan) - Paráda József (paradajozsef) - - Dariusz Ruminski - Arnaud Le Blanc (arnaud-lb) - - Jérôme Tamarelle (gromnan) - Maxime STEINHAUSSER - Michal Piotrowski (eventhorizon) - Tim Nagel (merk) @@ -120,6 +120,7 @@ Symfony is the result of the work of many people who made the code better - Théo FIDRY (theofidry) - Robert Schönthal (digitalkaoz) - Florian Lonqueu-Brochard (florianlb) + - Sebastiaan Stok (sstok) - Stefano Sala (stefano.sala) - Yonel Ceruto González (yonelceruto) - Evgeniy (ewgraf) @@ -128,7 +129,6 @@ Symfony is the result of the work of many people who made the code better - Sebastian Hörl (blogsh) - Daniel Gomes (danielcsgomes) - Hidenori Goto (hidenorigoto) - - Sebastiaan Stok (sstok) - Guilherme Blanco (guilhermeblanco) - Pablo Godel (pgodel) - Jérémie Augustin (jaugustin) @@ -146,6 +146,7 @@ Symfony is the result of the work of many people who made the code better - Vincent AUBERT (vincent) - Rouven Weßling (realityking) - Teoh Han Hui (teohhanhui) + - Jérôme Vasseur (jvasseur) - Clemens Tolboom - Helmer Aaviksoo - Grégoire Paris (greg0ire) @@ -178,8 +179,11 @@ Symfony is the result of the work of many people who made the code better - Daniel Espendiller - sun (sun) - Larry Garfield (crell) + - Julien Falque (julienfalque) - Martin Schuhfuß (usefulthink) + - apetitpa - Matthieu Bontemps (mbontemps) + - apetitpa - Pierre Minnieur (pminnieur) - fivestar - Dominique Bongiraud @@ -201,7 +205,6 @@ Symfony is the result of the work of many people who made the code better - SpacePossum - Eugene Wissner - Julien Brochet (mewt) - - Julien Falque (julienfalque) - Tristan Darricau (nicofuma) - Sergey Linnik (linniksa) - Michaël Perrin (michael.perrin) @@ -220,7 +223,6 @@ Symfony is the result of the work of many people who made the code better - Elnur Abdurrakhimov (elnur) - Manuel Reinhard (sprain) - Danny Berger (dpb587) - - Jérôme Vasseur - Ruben Gonzalez (rubenrua) - Adam Prager (padam87) - Roman Marintšenko (inori) @@ -230,6 +232,7 @@ Symfony is the result of the work of many people who made the code better - Arjen Brouwer (arjenjb) - Katsuhiro OGAWA - Patrick McDougle (patrick-mcdougle) + - Dany Maillard (maidmaid) - Alif Rachmawadi - Kristen Gilden (kgilden) - Pierre-Yves LEBECQ (pylebecq) @@ -267,7 +270,9 @@ Symfony is the result of the work of many people who made the code better - Michael Holm (hollo) - Marc Weistroff (futurecat) - Christian Schmidt + - Marek Štípek (maryo) - Hidde Wieringa (hiddewie) + - Jordan Samouh (jordansamouh) - Chris Smith (cs278) - Florian Klein (docteurklein) - Oleg Voronkovich @@ -281,6 +286,7 @@ Symfony is the result of the work of many people who made the code better - Andrey Esaulov (andremaha) - Grégoire Passault (gregwar) - Ismael Ambrosi (iambrosi) + - gadelat (gadelat) - Baptiste Lafontaine - Aurelijus Valeiša (aurelijus) - Victor Bocharsky (bocharsky_bw) @@ -324,7 +330,8 @@ Symfony is the result of the work of many people who made the code better - Yaroslav Kiliba - Terje Bråten - Robbert Klarenbeek (robbertkl) - - Marek Štípek (maryo) + - Thomas Calvet (fancyweb) + - Niels Keurentjes (curry684) - Alessandro Chitolina - JhonnyL - hossein zolfi (ocean) @@ -342,14 +349,15 @@ Symfony is the result of the work of many people who made the code better - Vyacheslav Salakhutdinov (megazoll) - Jerzy Zawadzki (jzawadzki) - Hassan Amouhzi - - gadelat (gadelat) - Tamas Szijarto - Pavel Volokitin (pvolok) - François Pluchino (francoispluchino) + - Arthur de Moulins (4rthem) - Nicolas Dewez (nicolas_dewez) - Endre Fejes - Tobias Naumann (tna) - Daniel Beyer + - Nikolay Labinskiy (e-moe) - Shein Alexey - Romain Gautier (mykiwi) - Joe Lencioni @@ -399,10 +407,10 @@ Symfony is the result of the work of many people who made the code better - Andreas Braun - Chris Sedlmayr (catchamonkey) - Seb Koelen - - Dany Maillard (maidmaid) - Christoph Mewes (xrstf) - Vitaliy Tverdokhlib (vitaliytv) - Ariel Ferrandini (aferrandini) + - Samuel ROZE (sroze) - Dirk Pahl (dirkaholic) - cedric lombardot (cedriclombardot) - Jonas Flodén (flojon) @@ -416,7 +424,6 @@ Symfony is the result of the work of many people who made the code better - Gintautas Miselis - Rob Bast - David Badura (davidbadura) - - Jordan Samouh (jordansamouh) - Zander Baldwin - Adam Harvey - Alex Bakhturin @@ -425,7 +432,6 @@ Symfony is the result of the work of many people who made the code better - Fabrice Bernhard (fabriceb) - Jérôme Macias (jeromemacias) - Andrey Astakhov (aast) - - Thomas Calvet - Fabian Lange (codingfabian) - Frank Neff (fneff) - Roman Lapin (memphys) @@ -461,13 +467,12 @@ Symfony is the result of the work of many people who made the code better - Jakub Škvára (jskvara) - Andrew Udvare (audvare) - alexpods - - Nikolay Labinskiy (e-moe) - Arjen van der Meijden - Michele Locati - Dariusz Ruminski + - Alex Rock Ancelet (pierstoval) - Erik Trapman (eriktrapman) - De Cock Xavier (xdecock) - - Arthur de Moulins (4rthem) - Almog Baku (almogbaku) - Scott Arciszewski - Norbert Orzechowicz (norzechowicz) @@ -581,7 +586,6 @@ Symfony is the result of the work of many people who made the code better - Ulumuddin Yunus (joenoez) - Luc Vieillescazes (iamluc) - Johann Saunier (prophet777) - - Samuel ROZE (sroze) - Michael Devery (mickadoo) - Antoine Corcy - Artur Eshenbrener @@ -695,6 +699,7 @@ Symfony is the result of the work of many people who made the code better - Pierre Vanliefland (pvanliefland) - Sofiane HADDAG (sofhad) - frost-nzcr4 + - Sanpi - Abhoryo - Fabian Vogler (fabian) - Korvin Szanto @@ -751,6 +756,7 @@ Symfony is the result of the work of many people who made the code better - Martijn Evers - Jacques Moati - Balazs Csaba (balazscsaba2006) + - Douglas Reith (douglas_reith) - Harry Walter (haswalt) - Johnson Page (jwpage) - Michael Roterman (wtfzdotnet) @@ -764,7 +770,6 @@ Symfony is the result of the work of many people who made the code better - Gábor Tóth - Daniel Cestari - David Lima - - Jérôme Vasseur - Brunet Laurent (lbrunet) - Mikhail Yurasov (mym) - LOUARDI Abdeltif (ouardisoft) @@ -819,6 +824,7 @@ Symfony is the result of the work of many people who made the code better - Danilo Silva - Zachary Tong (polyfractal) - Hryhorii Hrebiniuk + - Thomas Perez (scullwm) - Dennis Fridrich (dfridrich) - hamza - dantleech @@ -933,6 +939,7 @@ Symfony is the result of the work of many people who made the code better - Klaus Purer - Gilles Doge (gido) - abulford + - Philipp Kretzschmar - antograssiot - Brooks Boyd - Roger Webb @@ -1039,6 +1046,7 @@ Symfony is the result of the work of many people who made the code better - Kim Laï Trinh - Jason Desrosiers - m.chwedziak + - insekticid - Philip Frank - Lance McNearney - Giorgio Premi @@ -1061,6 +1069,7 @@ Symfony is the result of the work of many people who made the code better - Tadcka - Beth Binkovitz - Gonzalo Míguez + - Pierre Rineau - Romain Geissler - Adrien Moiruad - Tomaz Ahlin @@ -1084,6 +1093,7 @@ Symfony is the result of the work of many people who made the code better - Martin Eckhardt - Pieter Jordaan - Damien Tournoud + - Craig Duncan (duncan3dc) - Jon Gotlin (jongotlin) - Michael Dowling (mtdowling) - Karlos Presumido (oneko) @@ -1184,12 +1194,12 @@ Symfony is the result of the work of many people who made the code better - Michal Gebauer - Gleb Sidora - David Stone - - Niels Keurentjes (curry684) - Jovan Perovic (jperovic) - Pablo Maria Martelletti (pmartelletti) - Yassine Guedidi (yguedidi) - Waqas Ahmed - Luis Muñoz + - Matthew Donadio - Andreas - Thomas Chmielowiec - Andrey Ryaguzov @@ -1246,7 +1256,6 @@ Symfony is the result of the work of many people who made the code better - Jordi Llonch (jordillonch) - Cédric Dugat (ph3nol) - Philip Dahlstrøm (phidah) - - Alex Rock Ancelet (pierstoval) - Milos Colakovic (project2481) - Rénald Casagraude (rcasagraude) - Robin Duval (robin-duval) @@ -1389,6 +1398,7 @@ Symfony is the result of the work of many people who made the code better - Joeri Verdeyen (jverdeyen) - Kevin Herrera (kherge) - Luis Ramón López López (lrlopez) + - Bart Reunes (metalarend) - Muriel (metalmumu) - Michael Pohlers (mick_the_big) - mlpo (mlpo) @@ -1530,6 +1540,7 @@ Symfony is the result of the work of many people who made the code better - Oncle Tom - Christian Stocker - Dawid Nowak + - Lesnykh Ilia - Karolis Daužickas - Sergio Santoro - tirnanog06 @@ -1594,6 +1605,7 @@ Symfony is the result of the work of many people who made the code better - Florent Viel (luxifer) - Matthieu Moquet (mattketmo) - Moritz Borgmann (mborgmann) + - Michal Čihař (mcihar) - Matt Drollette (mdrollette) - Adam Monsen (meonkeys) - Ala Eddine Khefifi (nayzo) @@ -1646,6 +1658,7 @@ Symfony is the result of the work of many people who made the code better - smokeybear87 - Gustavo Adrian - Kevin Weber + - Ben Scott - Dionysis Arvanitis - Sergey Fedotov - Michael From 161bed58beb3b598a55216c74a23bfd4450b2750 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:01:24 -0700 Subject: [PATCH 06/67] updated VERSION for 2.7.27 --- 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 0d37a6d05e409..35f7dcccaaec6 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.7.27-DEV'; + const VERSION = '2.7.27'; const VERSION_ID = 20727; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; const RELEASE_VERSION = 27; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 0e9a243bbad86a021a89e9411de60ac470e0b3aa Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:13:24 -0700 Subject: [PATCH 07/67] bumped Symfony version to 2.7.28 --- 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 35f7dcccaaec6..1c1928825025c 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.7.27'; - const VERSION_ID = 20727; + const VERSION = '2.7.28-DEV'; + const VERSION_ID = 20728; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; - const RELEASE_VERSION = 27; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 28; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From f98aeb2fd071a2c10639324e6e0077fec284b518 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:14:12 -0700 Subject: [PATCH 08/67] updated CHANGELOG for 2.8.20 --- CHANGELOG-2.8.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 65264dd3ec5b9..52328ef28f5c3 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,29 @@ in 2.8 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/v2.8.0...v2.8.1 +* 2.8.20 (2017-05-01) + + * bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid) + * bug #22528 [Asset] Starting slash should indicate no basePath wanted (weaverryan) + * bug #22541 [EventDispatcher] fix: unwrap listeners for correct info (dmaicher) + * bug #22526 [Asset] Preventing the base path or absolute URL from being prefixed incorrectly (weaverryan) + * bug #22523 [WebProfilerBundle] Fixed the flickering when loading complex profiler panels (javiereguiluz) + * bug #22435 [Console] Fix dispatching throwables from ConsoleEvents::COMMAND (nicolas-grekas) + * bug #22478 [Serializer] XmlEncoder: fix negative int and large numbers handling (dunglas) + * bug #22424 [Debug] Set exit status to 255 on error (nicolas-grekas) + * bug #22426 [PropertyInfo] Prevent returning int values in some cases (dunglas) + * bug #22399 Prevent double registrations related to tag priorities (nicolas-grekas) + * bug #22396 Prevent double registrations related to tag priorities (nicolas-grekas) + * bug #22352 [HttpFoundation] Add `use_strict_mode` in validOptions for session (sstok) + * bug #22351 [Yaml] don't keep internal state between parser runs (xabbuh) + * bug #22307 [Debug] Fix php notice (enumag) + * bug #22311 [DI] Fix second auto-registration (nicolas-grekas) + * bug #22109 [Validator] check for empty host when calling checkdnsrr() (apetitpa) + * bug #22280 [DI] Fix the xml schema (GuilhemN) + * bug #22282 [DI] Prevent AutowirePass from triggering irrelevant deprecations (chalasr) + * bug #22255 [Translation] avoid creating cache files for fallback locales. (aitboudad) + * bug #22292 Fixes #22264 - add support for Chrome headless (redthor) + * 2.8.19 (2017-04-05) * bug #22265 Allow Upper Case property names (insekticid) From db017ebba27fbf28068cf2bd7c59dc5b871cd28c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 09:14:16 -0700 Subject: [PATCH 09/67] updated VERSION for 2.8.20 --- 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 19a222845c40f..f7bb37d376122 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.8.20-DEV'; + const VERSION = '2.8.20'; const VERSION_ID = 20820; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; const RELEASE_VERSION = 20; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From 1f1b5d4f9ecdc6e5b50fe07478729ca8aa0937f0 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 10:40:16 -0700 Subject: [PATCH 10/67] bumped Symfony version to 2.8.21 --- 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 f7bb37d376122..51417f5dcbf32 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -59,12 +59,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '2.8.20'; - const VERSION_ID = 20820; + const VERSION = '2.8.21-DEV'; + const VERSION_ID = 20821; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; - const RELEASE_VERSION = 20; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 21; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From da26b3f32f4e2195166fadcba3fd51154bf0e3d3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 11:00:12 -0700 Subject: [PATCH 11/67] bumped Symfony version to 3.2.9 --- src/Symfony/Component/HttpKernel/Kernel.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index 7ef34d65687f3..ddfe322cc2853 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '3.2.8'; - const VERSION_ID = 30208; + const VERSION = '3.2.9-DEV'; + const VERSION_ID = 30209; const MAJOR_VERSION = 3; const MINOR_VERSION = 2; - const RELEASE_VERSION = 8; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 9; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '07/2017'; const END_OF_LIFE = '01/2018'; From f67eba863c6fb9170fc99aa2b57985be1ff93445 Mon Sep 17 00:00:00 2001 From: David Maicher Date: Mon, 1 May 2017 20:34:19 +0200 Subject: [PATCH 12/67] [EventDispatcher] fix merge of #22541 from 2.8 --- .../Debug/TraceableEventDispatcherTest.php | 25 +++---------------- 1 file changed, 3 insertions(+), 22 deletions(-) diff --git a/src/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php b/src/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php index 9c1293125aab0..b6710cacd1b2d 100644 --- a/src/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php +++ b/src/Symfony/Component/EventDispatcher/Tests/Debug/TraceableEventDispatcherTest.php @@ -13,7 +13,6 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\EventDispatcher\Debug\TraceableEventDispatcher; -use Symfony\Component\EventDispatcher\Debug\WrappedListener; use Symfony\Component\EventDispatcher\EventDispatcherInterface; use Symfony\Component\EventDispatcher\EventSubscriberInterface; use Symfony\Component\EventDispatcher\EventDispatcher; @@ -105,20 +104,10 @@ public function testAddRemoveSubscriber() $this->assertCount(0, $dispatcher->getListeners('foo')); } - /** - * @dataProvider isWrappedDataProvider - * - * @param bool $isWrapped - */ - public function testGetCalledListeners($isWrapped) + public function testGetCalledListeners() { - $dispatcher = new EventDispatcher(); - $stopWatch = new Stopwatch(); - $tdispatcher = new TraceableEventDispatcher($dispatcher, $stopWatch); - - $listener = function () {}; - - $tdispatcher->addListener('foo', $listener, 5); + $tdispatcher = new TraceableEventDispatcher(new EventDispatcher(), new Stopwatch()); + $tdispatcher->addListener('foo', function () {}, 5); $listeners = $tdispatcher->getNotCalledListeners(); $this->assertArrayHasKey('data', $listeners['foo.closure']); @@ -134,14 +123,6 @@ public function testGetCalledListeners($isWrapped) $this->assertEquals(array(), $tdispatcher->getNotCalledListeners()); } - public function isWrappedDataProvider() - { - return array( - array(false), - array(true), - ); - } - public function testGetCalledListenersNested() { $tdispatcher = null; From 51b82f54692627e175c202c68c3a98909f15ef2e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 27 Apr 2017 15:48:43 -0400 Subject: [PATCH 13/67] [appveyor][3.x] Run the test suite on PHP 7.1 --- appveyor.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 79be565e0dce8..f6563e730a32e 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,23 +11,23 @@ init: - SET COMPOSER_NO_INTERACTION=1 - SET SYMFONY_DEPRECATIONS_HELPER=strict - SET ANSICON=121x90 (121x90) - - SET SYMFONY_PHPUNIT_SKIPPED_TESTS=phpunit.skipped + - SET SYMFONY_PHPUNIT_VERSION=4.8 - REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v DelayedExpansion /t REG_DWORD /d 1 /f install: - mkdir c:\php && cd c:\php - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/cacert.pem - - appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-5.5.9-nts-Win32-VC11-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-5.5.9-nts-Win32-VC11-x86.zip - 7z x php-5.5.9-nts-Win32-VC11-x86.zip -y >nul - - del /Q *.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.1.3-Win32-VC14-x64.zip - cd ext - - appveyor DownloadFile http://windows.php.net/downloads/pecl/releases/apcu/4.0.10/php_apcu-4.0.10-5.5-nts-vc11-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_apcu-4.0.10-5.5-nts-vc11-x86.zip - 7z x php_apcu-4.0.10-5.5-nts-vc11-x86.zip -y >nul - - appveyor DownloadFile http://windows.php.net/downloads/pecl/releases/memcache/3.0.8/php_memcache-3.0.8-5.5-nts-vc11-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_memcache-3.0.8-5.5-nts-vc11-x86.zip - 7z x php_memcache-3.0.8-5.5-nts-vc11-x86.zip -y >nul - - del /Q *.zip - cd .. - copy /Y php.ini-development php.ini-min + - echo serialize_precision=14 >> php.ini-min - echo max_execution_time=1200 >> php.ini-min - echo date.timezone="America/Los_Angeles" >> php.ini-min - echo extension_dir=ext >> php.ini-min @@ -55,9 +55,13 @@ install: - php phpunit install test_script: - - cd c:\projects\symfony - SET X=0 - - copy /Y c:\php\php.ini-min c:\php\php.ini + - cd c:\php && 7z x php-7.1.3-Win32-VC14-x64.zip -y >nul && copy /Y php.ini-min php.ini + - cd c:\projects\symfony + - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! + - cd c:\php && 7z x php-5.5.9-nts-Win32-VC11-x86.zip -y >nul && copy /Y php.ini-min php.ini + - cd c:\projects\symfony + - SET SYMFONY_PHPUNIT_SKIPPED_TESTS=phpunit.skipped - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! - copy /Y c:\php\php.ini-max c:\php\php.ini - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! From a537d6c11e6a768620415b5c357f145bf2031f6c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 27 Apr 2017 15:48:43 -0400 Subject: [PATCH 14/67] [appveyor] Run the test suite on PHP 7.1 --- appveyor.yml | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 86a943c77c42e..0ec2c5a3a00e1 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,27 +11,27 @@ init: - SET COMPOSER_NO_INTERACTION=1 - SET SYMFONY_DEPRECATIONS_HELPER=strict - SET ANSICON=121x90 (121x90) - - SET SYMFONY_PHPUNIT_SKIPPED_TESTS=phpunit.skipped + - SET SYMFONY_PHPUNIT_VERSION=4.8 - REG ADD "HKEY_CURRENT_USER\Software\Microsoft\Command Processor" /v DelayedExpansion /t REG_DWORD /d 1 /f install: - mkdir c:\php && cd c:\php - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/cacert.pem - - appveyor DownloadFile http://windows.php.net/downloads/releases/archives/php-5.3.11-nts-Win32-VC9-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-5.3.11-nts-Win32-VC9-x86.zip - 7z x php-5.3.11-nts-Win32-VC9-x86.zip -y >nul - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/ICU-51.2-dlls.zip - 7z x ICU-51.2-dlls.zip -y >nul - - del /Q *.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.1.3-Win32-VC14-x64.zip - cd ext - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/php_intl-3.0.0-5.3-nts-vc9-x86.zip - 7z x php_intl-3.0.0-5.3-nts-vc9-x86.zip -y >nul - - appveyor DownloadFile http://windows.php.net/downloads/pecl/releases/apcu/4.0.10/php_apcu-4.0.10-5.3-nts-vc9-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_apcu-4.0.10-5.3-nts-vc9-x86.zip - 7z x php_apcu-4.0.10-5.3-nts-vc9-x86.zip -y >nul - - appveyor DownloadFile http://windows.php.net/downloads/pecl/releases/memcache/3.0.8/php_memcache-3.0.8-5.3-nts-vc9-x86.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php_memcache-3.0.8-5.3-nts-vc9-x86.zip - 7z x php_memcache-3.0.8-5.3-nts-vc9-x86.zip -y >nul - - del /Q *.zip - cd .. - copy /Y php.ini-development php.ini-min + - echo serialize_precision=14 >> php.ini-min - echo max_execution_time=1200 >> php.ini-min - echo date.timezone="America/Los_Angeles" >> php.ini-min - echo extension_dir=ext >> php.ini-min @@ -58,8 +58,12 @@ install: test_script: - cd c:\projects\symfony - - SET X=0 - - copy /Y c:\php\php.ini-min c:\php\php.ini + - cd c:\php && 7z x php-7.1.3-Win32-VC14-x64.zip -y >nul && copy /Y php.ini-min php.ini + - cd c:\projects\symfony + - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! + - cd c:\php && 7z x php-5.3.11-nts-Win32-VC9-x86.zip -y >nul && copy /Y php.ini-min php.ini + - cd c:\projects\symfony + - SET SYMFONY_PHPUNIT_SKIPPED_TESTS=phpunit.skipped - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! - copy /Y c:\php\php.ini-max c:\php\php.ini - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! From 00acb372052d115d36b652c8dad3deb37cf59784 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Fri, 28 Apr 2017 23:38:13 +0100 Subject: [PATCH 15/67] [Intl] Update ICU data to 59.1 --- src/Symfony/Component/Intl/Resources/bin/icu.ini | 1 + .../Component/Intl/Resources/data/currencies/af.json | 4 ++-- .../Component/Intl/Resources/data/currencies/af_NA.json | 2 +- .../Component/Intl/Resources/data/currencies/ak.json | 2 +- .../Component/Intl/Resources/data/currencies/am.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ar.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ar_DJ.json | 2 +- .../Component/Intl/Resources/data/currencies/ar_ER.json | 2 +- .../Component/Intl/Resources/data/currencies/ar_LB.json | 2 +- .../Component/Intl/Resources/data/currencies/ar_SO.json | 2 +- .../Component/Intl/Resources/data/currencies/ar_SS.json | 2 +- .../Component/Intl/Resources/data/currencies/az.json | 6 +++--- .../Intl/Resources/data/currencies/az_Cyrl.json | 2 +- .../Component/Intl/Resources/data/currencies/be.json | 4 ++-- .../Component/Intl/Resources/data/currencies/bg.json | 6 +++--- .../Component/Intl/Resources/data/currencies/bm.json | 2 +- .../Component/Intl/Resources/data/currencies/bn.json | 6 +++--- .../Component/Intl/Resources/data/currencies/bo.json | 2 +- .../Component/Intl/Resources/data/currencies/bo_IN.json | 2 +- .../Component/Intl/Resources/data/currencies/br.json | 4 ++-- .../Component/Intl/Resources/data/currencies/bs.json | 4 ++-- .../Intl/Resources/data/currencies/bs_Cyrl.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ca.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ca_FR.json | 2 +- .../Component/Intl/Resources/data/currencies/ce.json | 4 ++-- .../Component/Intl/Resources/data/currencies/cs.json | 4 ++-- .../Component/Intl/Resources/data/currencies/cy.json | 4 ++-- .../Component/Intl/Resources/data/currencies/da.json | 8 ++++---- .../Component/Intl/Resources/data/currencies/de.json | 2 +- .../Component/Intl/Resources/data/currencies/de_CH.json | 2 +- .../Component/Intl/Resources/data/currencies/de_LI.json | 2 +- .../Component/Intl/Resources/data/currencies/de_LU.json | 2 +- .../Component/Intl/Resources/data/currencies/dz.json | 2 +- .../Component/Intl/Resources/data/currencies/ee.json | 6 +++--- .../Component/Intl/Resources/data/currencies/el.json | 6 +++--- .../Component/Intl/Resources/data/currencies/en.json | 4 ++-- .../Component/Intl/Resources/data/currencies/en_001.json | 2 +- .../Component/Intl/Resources/data/currencies/en_150.json | 2 +- .../Component/Intl/Resources/data/currencies/en_AG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_AI.json | 2 +- .../Component/Intl/Resources/data/currencies/en_AU.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BB.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BI.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BM.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BS.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BW.json | 2 +- .../Component/Intl/Resources/data/currencies/en_BZ.json | 2 +- .../Component/Intl/Resources/data/currencies/en_CA.json | 2 +- .../Component/Intl/Resources/data/currencies/en_CC.json | 2 +- .../Component/Intl/Resources/data/currencies/en_CK.json | 2 +- .../Component/Intl/Resources/data/currencies/en_CX.json | 2 +- .../Component/Intl/Resources/data/currencies/en_DK.json | 2 +- .../Component/Intl/Resources/data/currencies/en_DM.json | 2 +- .../Component/Intl/Resources/data/currencies/en_ER.json | 2 +- .../Component/Intl/Resources/data/currencies/en_FJ.json | 2 +- .../Component/Intl/Resources/data/currencies/en_FK.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GD.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GH.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GI.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GM.json | 2 +- .../Component/Intl/Resources/data/currencies/en_GY.json | 2 +- .../Component/Intl/Resources/data/currencies/en_IM.json | 2 +- .../Component/Intl/Resources/data/currencies/en_JE.json | 2 +- .../Component/Intl/Resources/data/currencies/en_JM.json | 2 +- .../Component/Intl/Resources/data/currencies/en_KE.json | 2 +- .../Component/Intl/Resources/data/currencies/en_KI.json | 2 +- .../Component/Intl/Resources/data/currencies/en_KN.json | 2 +- .../Component/Intl/Resources/data/currencies/en_KY.json | 2 +- .../Component/Intl/Resources/data/currencies/en_LC.json | 2 +- .../Component/Intl/Resources/data/currencies/en_LR.json | 2 +- .../Component/Intl/Resources/data/currencies/en_LS.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MO.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MS.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MT.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MU.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MW.json | 2 +- .../Component/Intl/Resources/data/currencies/en_MY.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NA.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NF.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NH.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NR.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NU.json | 2 +- .../Component/Intl/Resources/data/currencies/en_NZ.json | 2 +- .../Component/Intl/Resources/data/currencies/en_PG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_PH.json | 2 +- .../Component/Intl/Resources/data/currencies/en_PK.json | 2 +- .../Component/Intl/Resources/data/currencies/en_PN.json | 2 +- .../Component/Intl/Resources/data/currencies/en_RW.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SB.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SC.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SE.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SH.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SL.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SS.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SX.json | 2 +- .../Component/Intl/Resources/data/currencies/en_SZ.json | 2 +- .../Component/Intl/Resources/data/currencies/en_TK.json | 2 +- .../Component/Intl/Resources/data/currencies/en_TO.json | 2 +- .../Component/Intl/Resources/data/currencies/en_TT.json | 2 +- .../Component/Intl/Resources/data/currencies/en_TV.json | 2 +- .../Component/Intl/Resources/data/currencies/en_TZ.json | 2 +- .../Component/Intl/Resources/data/currencies/en_UG.json | 2 +- .../Component/Intl/Resources/data/currencies/en_VC.json | 2 +- .../Component/Intl/Resources/data/currencies/en_VU.json | 2 +- .../Component/Intl/Resources/data/currencies/en_WS.json | 2 +- .../Component/Intl/Resources/data/currencies/en_ZA.json | 2 +- .../Component/Intl/Resources/data/currencies/en_ZM.json | 2 +- .../Component/Intl/Resources/data/currencies/es.json | 4 ++-- .../Component/Intl/Resources/data/currencies/es_419.json | 2 +- .../Component/Intl/Resources/data/currencies/es_AR.json | 2 +- .../Component/Intl/Resources/data/currencies/es_BO.json | 2 +- .../Component/Intl/Resources/data/currencies/es_BR.json | 2 +- .../Component/Intl/Resources/data/currencies/es_BZ.json | 9 +++++++++ .../Component/Intl/Resources/data/currencies/es_CL.json | 2 +- .../Component/Intl/Resources/data/currencies/es_CO.json | 2 +- .../Component/Intl/Resources/data/currencies/es_CR.json | 2 +- .../Component/Intl/Resources/data/currencies/es_CU.json | 2 +- .../Component/Intl/Resources/data/currencies/es_DO.json | 2 +- .../Component/Intl/Resources/data/currencies/es_EC.json | 2 +- .../Component/Intl/Resources/data/currencies/es_GQ.json | 2 +- .../Component/Intl/Resources/data/currencies/es_GT.json | 2 +- .../Component/Intl/Resources/data/currencies/es_HN.json | 2 +- .../Component/Intl/Resources/data/currencies/es_MX.json | 2 +- .../Component/Intl/Resources/data/currencies/es_NI.json | 2 +- .../Component/Intl/Resources/data/currencies/es_PA.json | 2 +- .../Component/Intl/Resources/data/currencies/es_PE.json | 4 ++-- .../Component/Intl/Resources/data/currencies/es_PH.json | 2 +- .../Component/Intl/Resources/data/currencies/es_PR.json | 2 +- .../Component/Intl/Resources/data/currencies/es_PY.json | 2 +- .../Component/Intl/Resources/data/currencies/es_SV.json | 2 +- .../Component/Intl/Resources/data/currencies/es_US.json | 2 +- .../Component/Intl/Resources/data/currencies/es_UY.json | 2 +- .../Component/Intl/Resources/data/currencies/es_VE.json | 2 +- .../Component/Intl/Resources/data/currencies/et.json | 4 ++-- .../Component/Intl/Resources/data/currencies/eu.json | 4 ++-- .../Component/Intl/Resources/data/currencies/fa.json | 2 +- .../Component/Intl/Resources/data/currencies/fa_AF.json | 2 +- .../Component/Intl/Resources/data/currencies/ff.json | 2 +- .../Component/Intl/Resources/data/currencies/ff_GN.json | 2 +- .../Component/Intl/Resources/data/currencies/ff_MR.json | 2 +- .../Component/Intl/Resources/data/currencies/fi.json | 4 ++-- .../Component/Intl/Resources/data/currencies/fo.json | 4 ++-- .../Component/Intl/Resources/data/currencies/fo_DK.json | 2 +- .../Component/Intl/Resources/data/currencies/fr.json | 6 +++--- .../Component/Intl/Resources/data/currencies/fr_BI.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_CA.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_CD.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_DJ.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_DZ.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_GN.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_HT.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_KM.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_LU.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_MG.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_MR.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_MU.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_RW.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_SC.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_SY.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_TN.json | 2 +- .../Component/Intl/Resources/data/currencies/fr_VU.json | 2 +- .../Component/Intl/Resources/data/currencies/fy.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ga.json | 4 ++-- .../Component/Intl/Resources/data/currencies/gd.json | 4 ++-- .../Component/Intl/Resources/data/currencies/gl.json | 2 +- .../Component/Intl/Resources/data/currencies/gu.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ha.json | 2 +- .../Component/Intl/Resources/data/currencies/ha_GH.json | 2 +- .../Component/Intl/Resources/data/currencies/he.json | 4 ++-- .../Component/Intl/Resources/data/currencies/hi.json | 4 ++-- .../Component/Intl/Resources/data/currencies/hr.json | 6 +++--- .../Component/Intl/Resources/data/currencies/hr_BA.json | 2 +- .../Component/Intl/Resources/data/currencies/hu.json | 8 ++++---- .../Component/Intl/Resources/data/currencies/hy.json | 4 ++-- .../Component/Intl/Resources/data/currencies/id.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ig.json | 2 +- .../Component/Intl/Resources/data/currencies/ii.json | 2 +- .../Component/Intl/Resources/data/currencies/in.json | 4 ++-- .../Component/Intl/Resources/data/currencies/is.json | 2 +- .../Component/Intl/Resources/data/currencies/it.json | 6 +++--- .../Component/Intl/Resources/data/currencies/iw.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ja.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ka.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ki.json | 2 +- .../Component/Intl/Resources/data/currencies/kk.json | 4 ++-- .../Component/Intl/Resources/data/currencies/kl.json | 2 +- .../Component/Intl/Resources/data/currencies/km.json | 2 +- .../Component/Intl/Resources/data/currencies/kn.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ko.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ks.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ky.json | 4 ++-- .../Component/Intl/Resources/data/currencies/lb.json | 6 +++--- .../Component/Intl/Resources/data/currencies/lg.json | 2 +- .../Component/Intl/Resources/data/currencies/ln.json | 2 +- .../Component/Intl/Resources/data/currencies/ln_AO.json | 2 +- .../Component/Intl/Resources/data/currencies/lo.json | 4 ++-- .../Component/Intl/Resources/data/currencies/lt.json | 4 ++-- .../Component/Intl/Resources/data/currencies/lu.json | 2 +- .../Component/Intl/Resources/data/currencies/lv.json | 6 +++--- .../Component/Intl/Resources/data/currencies/meta.json | 2 +- .../Component/Intl/Resources/data/currencies/mg.json | 2 +- .../Component/Intl/Resources/data/currencies/mk.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ml.json | 6 +++--- .../Component/Intl/Resources/data/currencies/mn.json | 4 ++-- .../Component/Intl/Resources/data/currencies/mo.json | 2 +- .../Component/Intl/Resources/data/currencies/mr.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ms.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ms_BN.json | 2 +- .../Component/Intl/Resources/data/currencies/ms_SG.json | 2 +- .../Component/Intl/Resources/data/currencies/mt.json | 2 +- .../Component/Intl/Resources/data/currencies/my.json | 4 ++-- .../Component/Intl/Resources/data/currencies/nb.json | 8 ++++---- .../Component/Intl/Resources/data/currencies/nd.json | 2 +- .../Component/Intl/Resources/data/currencies/ne.json | 4 ++-- .../Component/Intl/Resources/data/currencies/nl.json | 6 +++--- .../Component/Intl/Resources/data/currencies/nl_AW.json | 2 +- .../Component/Intl/Resources/data/currencies/nl_BQ.json | 2 +- .../Component/Intl/Resources/data/currencies/nl_CW.json | 2 +- .../Component/Intl/Resources/data/currencies/nl_SR.json | 2 +- .../Component/Intl/Resources/data/currencies/nl_SX.json | 2 +- .../Component/Intl/Resources/data/currencies/nn.json | 6 +++--- .../Component/Intl/Resources/data/currencies/no.json | 8 ++++---- .../Component/Intl/Resources/data/currencies/om.json | 2 +- .../Component/Intl/Resources/data/currencies/om_KE.json | 2 +- .../Component/Intl/Resources/data/currencies/or.json | 2 +- .../Component/Intl/Resources/data/currencies/os.json | 2 +- .../Component/Intl/Resources/data/currencies/os_RU.json | 2 +- .../Component/Intl/Resources/data/currencies/pa.json | 4 ++-- .../Intl/Resources/data/currencies/pa_Arab.json | 2 +- .../Component/Intl/Resources/data/currencies/pl.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ps.json | 2 +- .../Component/Intl/Resources/data/currencies/pt.json | 4 ++-- .../Component/Intl/Resources/data/currencies/pt_AO.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_CV.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_LU.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_MO.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_MZ.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_PT.json | 2 +- .../Component/Intl/Resources/data/currencies/pt_ST.json | 2 +- .../Component/Intl/Resources/data/currencies/qu.json | 2 +- .../Component/Intl/Resources/data/currencies/qu_BO.json | 2 +- .../Component/Intl/Resources/data/currencies/qu_EC.json | 2 +- .../Component/Intl/Resources/data/currencies/rm.json | 6 +++--- .../Component/Intl/Resources/data/currencies/rn.json | 2 +- .../Component/Intl/Resources/data/currencies/ro.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ro_MD.json | 2 +- .../Component/Intl/Resources/data/currencies/root.json | 2 +- .../Component/Intl/Resources/data/currencies/ru.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ru_BY.json | 2 +- .../Component/Intl/Resources/data/currencies/ru_KG.json | 2 +- .../Component/Intl/Resources/data/currencies/ru_KZ.json | 2 +- .../Component/Intl/Resources/data/currencies/ru_MD.json | 2 +- .../Component/Intl/Resources/data/currencies/rw.json | 2 +- .../Component/Intl/Resources/data/currencies/se.json | 2 +- .../Component/Intl/Resources/data/currencies/se_SE.json | 2 +- .../Component/Intl/Resources/data/currencies/sg.json | 2 +- .../Component/Intl/Resources/data/currencies/sh.json | 6 +++--- .../Component/Intl/Resources/data/currencies/si.json | 4 ++-- .../Component/Intl/Resources/data/currencies/sk.json | 6 +++--- .../Component/Intl/Resources/data/currencies/sl.json | 6 +++--- .../Component/Intl/Resources/data/currencies/sn.json | 2 +- .../Component/Intl/Resources/data/currencies/so.json | 2 +- .../Component/Intl/Resources/data/currencies/so_DJ.json | 2 +- .../Component/Intl/Resources/data/currencies/so_ET.json | 2 +- .../Component/Intl/Resources/data/currencies/so_KE.json | 2 +- .../Component/Intl/Resources/data/currencies/sq.json | 4 ++-- .../Component/Intl/Resources/data/currencies/sq_MK.json | 2 +- .../Component/Intl/Resources/data/currencies/sr.json | 6 +++--- .../Intl/Resources/data/currencies/sr_Latn.json | 6 +++--- .../Component/Intl/Resources/data/currencies/sv.json | 4 ++-- .../Component/Intl/Resources/data/currencies/sw.json | 4 ++-- .../Component/Intl/Resources/data/currencies/sw_CD.json | 2 +- .../Component/Intl/Resources/data/currencies/sw_UG.json | 2 +- .../Component/Intl/Resources/data/currencies/ta.json | 2 +- .../Component/Intl/Resources/data/currencies/ta_LK.json | 2 +- .../Component/Intl/Resources/data/currencies/ta_MY.json | 2 +- .../Component/Intl/Resources/data/currencies/ta_SG.json | 2 +- .../Component/Intl/Resources/data/currencies/te.json | 4 ++-- .../Component/Intl/Resources/data/currencies/th.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ti.json | 2 +- .../Component/Intl/Resources/data/currencies/ti_ER.json | 2 +- .../Component/Intl/Resources/data/currencies/tl.json | 4 ++-- .../Component/Intl/Resources/data/currencies/to.json | 2 +- .../Component/Intl/Resources/data/currencies/tr.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ug.json | 4 ++-- .../Component/Intl/Resources/data/currencies/uk.json | 6 +++--- .../Component/Intl/Resources/data/currencies/ur.json | 4 ++-- .../Component/Intl/Resources/data/currencies/ur_IN.json | 2 +- .../Component/Intl/Resources/data/currencies/uz.json | 4 ++-- .../Intl/Resources/data/currencies/uz_Arab.json | 2 +- .../Intl/Resources/data/currencies/uz_Cyrl.json | 4 ++-- .../Component/Intl/Resources/data/currencies/vi.json | 4 ++-- .../Component/Intl/Resources/data/currencies/yi.json | 2 +- .../Component/Intl/Resources/data/currencies/yo.json | 2 +- .../Component/Intl/Resources/data/currencies/yo_BJ.json | 2 +- .../Component/Intl/Resources/data/currencies/zh.json | 4 ++-- .../Component/Intl/Resources/data/currencies/zh_HK.json | 2 +- .../Intl/Resources/data/currencies/zh_Hans_HK.json | 2 +- .../Intl/Resources/data/currencies/zh_Hans_MO.json | 2 +- .../Intl/Resources/data/currencies/zh_Hans_SG.json | 2 +- .../Intl/Resources/data/currencies/zh_Hant.json | 6 +++--- .../Intl/Resources/data/currencies/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/currencies/zh_Hant_MO.json | 2 +- .../Component/Intl/Resources/data/currencies/zh_MO.json | 2 +- .../Component/Intl/Resources/data/currencies/zh_SG.json | 2 +- .../Component/Intl/Resources/data/currencies/zu.json | 2 +- .../Component/Intl/Resources/data/languages/af.json | 2 +- .../Component/Intl/Resources/data/languages/ak.json | 2 +- .../Component/Intl/Resources/data/languages/am.json | 2 +- .../Component/Intl/Resources/data/languages/ar.json | 2 +- .../Component/Intl/Resources/data/languages/ar_EG.json | 2 +- .../Component/Intl/Resources/data/languages/ar_LY.json | 2 +- .../Component/Intl/Resources/data/languages/ar_SA.json | 2 +- .../Component/Intl/Resources/data/languages/as.json | 2 +- .../Component/Intl/Resources/data/languages/az.json | 2 +- .../Component/Intl/Resources/data/languages/az_Cyrl.json | 2 +- .../Component/Intl/Resources/data/languages/be.json | 2 +- .../Component/Intl/Resources/data/languages/bg.json | 2 +- .../Component/Intl/Resources/data/languages/bm.json | 2 +- .../Component/Intl/Resources/data/languages/bn.json | 2 +- .../Component/Intl/Resources/data/languages/bn_IN.json | 2 +- .../Component/Intl/Resources/data/languages/bo.json | 2 +- .../Component/Intl/Resources/data/languages/br.json | 2 +- .../Component/Intl/Resources/data/languages/bs.json | 2 +- .../Component/Intl/Resources/data/languages/bs_Cyrl.json | 2 +- .../Component/Intl/Resources/data/languages/ca.json | 2 +- .../Component/Intl/Resources/data/languages/ce.json | 2 +- .../Component/Intl/Resources/data/languages/cs.json | 2 +- .../Component/Intl/Resources/data/languages/cy.json | 2 +- .../Component/Intl/Resources/data/languages/da.json | 2 +- .../Component/Intl/Resources/data/languages/de.json | 2 +- .../Component/Intl/Resources/data/languages/de_AT.json | 2 +- .../Component/Intl/Resources/data/languages/de_CH.json | 2 +- .../Component/Intl/Resources/data/languages/de_LU.json | 2 +- .../Component/Intl/Resources/data/languages/dz.json | 2 +- .../Component/Intl/Resources/data/languages/ee.json | 2 +- .../Component/Intl/Resources/data/languages/el.json | 2 +- .../Component/Intl/Resources/data/languages/en.json | 2 +- .../Component/Intl/Resources/data/languages/en_AU.json | 2 +- .../Component/Intl/Resources/data/languages/en_IN.json | 2 +- .../Component/Intl/Resources/data/languages/en_NZ.json | 2 +- .../Component/Intl/Resources/data/languages/eo.json | 2 +- .../Component/Intl/Resources/data/languages/es.json | 2 +- .../Component/Intl/Resources/data/languages/es_419.json | 2 +- .../Component/Intl/Resources/data/languages/es_AR.json | 2 +- .../Component/Intl/Resources/data/languages/es_BO.json | 2 +- .../Component/Intl/Resources/data/languages/es_CL.json | 2 +- .../Component/Intl/Resources/data/languages/es_CO.json | 2 +- .../Component/Intl/Resources/data/languages/es_CR.json | 2 +- .../Component/Intl/Resources/data/languages/es_DO.json | 2 +- .../Component/Intl/Resources/data/languages/es_EC.json | 2 +- .../Component/Intl/Resources/data/languages/es_GT.json | 2 +- .../Component/Intl/Resources/data/languages/es_HN.json | 2 +- .../Component/Intl/Resources/data/languages/es_MX.json | 2 +- .../Component/Intl/Resources/data/languages/es_NI.json | 2 +- .../Component/Intl/Resources/data/languages/es_PA.json | 2 +- .../Component/Intl/Resources/data/languages/es_PE.json | 2 +- .../Component/Intl/Resources/data/languages/es_PR.json | 2 +- .../Component/Intl/Resources/data/languages/es_PY.json | 2 +- .../Component/Intl/Resources/data/languages/es_SV.json | 2 +- .../Component/Intl/Resources/data/languages/es_US.json | 2 +- .../Component/Intl/Resources/data/languages/es_VE.json | 2 +- .../Component/Intl/Resources/data/languages/et.json | 2 +- .../Component/Intl/Resources/data/languages/eu.json | 2 +- .../Component/Intl/Resources/data/languages/fa.json | 2 +- .../Component/Intl/Resources/data/languages/fa_AF.json | 2 +- .../Component/Intl/Resources/data/languages/ff.json | 2 +- .../Component/Intl/Resources/data/languages/fi.json | 2 +- .../Component/Intl/Resources/data/languages/fo.json | 2 +- .../Component/Intl/Resources/data/languages/fr.json | 2 +- .../Component/Intl/Resources/data/languages/fr_BE.json | 2 +- .../Component/Intl/Resources/data/languages/fr_CA.json | 2 +- .../Component/Intl/Resources/data/languages/fr_CH.json | 2 +- .../Component/Intl/Resources/data/languages/fy.json | 2 +- .../Component/Intl/Resources/data/languages/ga.json | 2 +- .../Component/Intl/Resources/data/languages/gd.json | 2 +- .../Component/Intl/Resources/data/languages/gl.json | 2 +- .../Component/Intl/Resources/data/languages/gu.json | 2 +- .../Component/Intl/Resources/data/languages/gv.json | 2 +- .../Component/Intl/Resources/data/languages/ha.json | 2 +- .../Component/Intl/Resources/data/languages/he.json | 2 +- .../Component/Intl/Resources/data/languages/hi.json | 2 +- .../Component/Intl/Resources/data/languages/hr.json | 2 +- .../Component/Intl/Resources/data/languages/hu.json | 6 +++--- .../Component/Intl/Resources/data/languages/hy.json | 2 +- .../Component/Intl/Resources/data/languages/id.json | 2 +- .../Component/Intl/Resources/data/languages/ig.json | 2 +- .../Component/Intl/Resources/data/languages/ii.json | 2 +- .../Component/Intl/Resources/data/languages/in.json | 2 +- .../Component/Intl/Resources/data/languages/is.json | 2 +- .../Component/Intl/Resources/data/languages/it.json | 2 +- .../Component/Intl/Resources/data/languages/iw.json | 2 +- .../Component/Intl/Resources/data/languages/ja.json | 2 +- .../Component/Intl/Resources/data/languages/ka.json | 2 +- .../Component/Intl/Resources/data/languages/ki.json | 2 +- .../Component/Intl/Resources/data/languages/kk.json | 2 +- .../Component/Intl/Resources/data/languages/kl.json | 2 +- .../Component/Intl/Resources/data/languages/km.json | 2 +- .../Component/Intl/Resources/data/languages/kn.json | 2 +- .../Component/Intl/Resources/data/languages/ko.json | 2 +- .../Component/Intl/Resources/data/languages/ks.json | 2 +- .../Component/Intl/Resources/data/languages/kw.json | 2 +- .../Component/Intl/Resources/data/languages/ky.json | 2 +- .../Component/Intl/Resources/data/languages/lb.json | 2 +- .../Component/Intl/Resources/data/languages/lg.json | 2 +- .../Component/Intl/Resources/data/languages/ln.json | 2 +- .../Component/Intl/Resources/data/languages/lo.json | 2 +- .../Component/Intl/Resources/data/languages/lt.json | 2 +- .../Component/Intl/Resources/data/languages/lu.json | 2 +- .../Component/Intl/Resources/data/languages/lv.json | 4 ++-- .../Component/Intl/Resources/data/languages/meta.json | 2 +- .../Component/Intl/Resources/data/languages/mg.json | 2 +- .../Component/Intl/Resources/data/languages/mk.json | 2 +- .../Component/Intl/Resources/data/languages/ml.json | 2 +- .../Component/Intl/Resources/data/languages/mn.json | 2 +- .../Component/Intl/Resources/data/languages/mo.json | 2 +- .../Component/Intl/Resources/data/languages/mr.json | 2 +- .../Component/Intl/Resources/data/languages/ms.json | 2 +- .../Component/Intl/Resources/data/languages/mt.json | 4 ++-- .../Component/Intl/Resources/data/languages/my.json | 2 +- .../Component/Intl/Resources/data/languages/nb.json | 2 +- .../Component/Intl/Resources/data/languages/nd.json | 2 +- .../Component/Intl/Resources/data/languages/ne.json | 2 +- .../Component/Intl/Resources/data/languages/nl.json | 2 +- .../Component/Intl/Resources/data/languages/nn.json | 2 +- .../Component/Intl/Resources/data/languages/no.json | 2 +- .../Component/Intl/Resources/data/languages/om.json | 2 +- .../Component/Intl/Resources/data/languages/or.json | 2 +- .../Component/Intl/Resources/data/languages/os.json | 2 +- .../Component/Intl/Resources/data/languages/pa.json | 2 +- .../Component/Intl/Resources/data/languages/pa_Arab.json | 2 +- .../Component/Intl/Resources/data/languages/pl.json | 2 +- .../Component/Intl/Resources/data/languages/ps.json | 2 +- .../Component/Intl/Resources/data/languages/pt.json | 2 +- .../Component/Intl/Resources/data/languages/pt_PT.json | 2 +- .../Component/Intl/Resources/data/languages/qu.json | 2 +- .../Component/Intl/Resources/data/languages/rm.json | 2 +- .../Component/Intl/Resources/data/languages/rn.json | 2 +- .../Component/Intl/Resources/data/languages/ro.json | 2 +- .../Component/Intl/Resources/data/languages/ro_MD.json | 2 +- .../Component/Intl/Resources/data/languages/ru.json | 2 +- .../Component/Intl/Resources/data/languages/rw.json | 2 +- .../Component/Intl/Resources/data/languages/se.json | 2 +- .../Component/Intl/Resources/data/languages/se_FI.json | 2 +- .../Component/Intl/Resources/data/languages/sg.json | 2 +- .../Component/Intl/Resources/data/languages/sh.json | 2 +- .../Component/Intl/Resources/data/languages/sh_BA.json | 2 +- .../Component/Intl/Resources/data/languages/si.json | 2 +- .../Component/Intl/Resources/data/languages/sk.json | 2 +- .../Component/Intl/Resources/data/languages/sl.json | 2 +- .../Component/Intl/Resources/data/languages/sn.json | 2 +- .../Component/Intl/Resources/data/languages/so.json | 2 +- .../Component/Intl/Resources/data/languages/sq.json | 2 +- .../Component/Intl/Resources/data/languages/sr.json | 2 +- .../Component/Intl/Resources/data/languages/sr_BA.json | 2 +- .../Intl/Resources/data/languages/sr_Cyrl_BA.json | 2 +- .../Intl/Resources/data/languages/sr_Cyrl_ME.json | 2 +- .../Intl/Resources/data/languages/sr_Cyrl_XK.json | 2 +- .../Component/Intl/Resources/data/languages/sr_Latn.json | 2 +- .../Intl/Resources/data/languages/sr_Latn_BA.json | 2 +- .../Intl/Resources/data/languages/sr_Latn_ME.json | 2 +- .../Intl/Resources/data/languages/sr_Latn_XK.json | 2 +- .../Component/Intl/Resources/data/languages/sr_ME.json | 2 +- .../Component/Intl/Resources/data/languages/sr_XK.json | 2 +- .../Component/Intl/Resources/data/languages/sv.json | 2 +- .../Component/Intl/Resources/data/languages/sv_FI.json | 2 +- .../Component/Intl/Resources/data/languages/sw.json | 2 +- .../Component/Intl/Resources/data/languages/sw_CD.json | 2 +- .../Component/Intl/Resources/data/languages/sw_KE.json | 2 +- .../Component/Intl/Resources/data/languages/ta.json | 2 +- .../Component/Intl/Resources/data/languages/te.json | 2 +- .../Component/Intl/Resources/data/languages/th.json | 2 +- .../Component/Intl/Resources/data/languages/ti.json | 2 +- .../Component/Intl/Resources/data/languages/tl.json | 2 +- .../Component/Intl/Resources/data/languages/to.json | 2 +- .../Component/Intl/Resources/data/languages/tr.json | 2 +- .../Component/Intl/Resources/data/languages/ug.json | 2 +- .../Component/Intl/Resources/data/languages/uk.json | 2 +- .../Component/Intl/Resources/data/languages/ur.json | 2 +- .../Component/Intl/Resources/data/languages/ur_IN.json | 2 +- .../Component/Intl/Resources/data/languages/uz.json | 2 +- .../Component/Intl/Resources/data/languages/uz_Arab.json | 2 +- .../Component/Intl/Resources/data/languages/uz_Cyrl.json | 2 +- .../Component/Intl/Resources/data/languages/vi.json | 2 +- .../Component/Intl/Resources/data/languages/yi.json | 2 +- .../Component/Intl/Resources/data/languages/yo.json | 2 +- .../Component/Intl/Resources/data/languages/yo_BJ.json | 2 +- .../Component/Intl/Resources/data/languages/zh.json | 2 +- .../Component/Intl/Resources/data/languages/zh_HK.json | 2 +- .../Component/Intl/Resources/data/languages/zh_Hant.json | 2 +- .../Intl/Resources/data/languages/zh_Hant_HK.json | 2 +- .../Component/Intl/Resources/data/languages/zu.json | 2 +- .../Component/Intl/Resources/data/locales/af.json | 4 +++- .../Component/Intl/Resources/data/locales/ak.json | 2 ++ .../Component/Intl/Resources/data/locales/am.json | 4 +++- .../Component/Intl/Resources/data/locales/ar.json | 4 +++- .../Component/Intl/Resources/data/locales/az.json | 4 +++- .../Component/Intl/Resources/data/locales/az_Cyrl.json | 4 +++- .../Component/Intl/Resources/data/locales/be.json | 2 ++ .../Component/Intl/Resources/data/locales/bg.json | 4 +++- .../Component/Intl/Resources/data/locales/bm.json | 2 ++ .../Component/Intl/Resources/data/locales/bn.json | 4 +++- .../Component/Intl/Resources/data/locales/br.json | 2 ++ .../Component/Intl/Resources/data/locales/bs.json | 4 +++- .../Component/Intl/Resources/data/locales/bs_Cyrl.json | 2 ++ .../Component/Intl/Resources/data/locales/ca.json | 4 +++- .../Component/Intl/Resources/data/locales/ce.json | 2 ++ .../Component/Intl/Resources/data/locales/cs.json | 4 +++- .../Component/Intl/Resources/data/locales/cy.json | 4 +++- .../Component/Intl/Resources/data/locales/da.json | 2 ++ .../Component/Intl/Resources/data/locales/de.json | 4 +++- .../Component/Intl/Resources/data/locales/dz.json | 2 ++ .../Component/Intl/Resources/data/locales/ee.json | 2 ++ .../Component/Intl/Resources/data/locales/el.json | 4 +++- .../Component/Intl/Resources/data/locales/en.json | 4 +++- .../Component/Intl/Resources/data/locales/eo.json | 2 ++ .../Component/Intl/Resources/data/locales/es.json | 4 +++- .../Component/Intl/Resources/data/locales/et.json | 4 +++- .../Component/Intl/Resources/data/locales/eu.json | 4 +++- .../Component/Intl/Resources/data/locales/fa.json | 2 ++ .../Component/Intl/Resources/data/locales/fa_AF.json | 2 ++ .../Component/Intl/Resources/data/locales/ff.json | 2 ++ .../Component/Intl/Resources/data/locales/fi.json | 4 +++- .../Component/Intl/Resources/data/locales/fo.json | 2 ++ .../Component/Intl/Resources/data/locales/fr.json | 4 +++- .../Component/Intl/Resources/data/locales/fr_CA.json | 1 + .../Component/Intl/Resources/data/locales/fy.json | 2 ++ .../Component/Intl/Resources/data/locales/ga.json | 2 ++ .../Component/Intl/Resources/data/locales/gd.json | 4 +++- .../Component/Intl/Resources/data/locales/gl.json | 4 +++- .../Component/Intl/Resources/data/locales/gu.json | 4 +++- .../Component/Intl/Resources/data/locales/ha.json | 2 ++ .../Component/Intl/Resources/data/locales/he.json | 4 +++- .../Component/Intl/Resources/data/locales/hi.json | 4 +++- .../Component/Intl/Resources/data/locales/hr.json | 4 +++- .../Component/Intl/Resources/data/locales/hu.json | 6 ++++-- .../Component/Intl/Resources/data/locales/hy.json | 2 ++ .../Component/Intl/Resources/data/locales/id.json | 4 +++- .../Component/Intl/Resources/data/locales/is.json | 2 ++ .../Component/Intl/Resources/data/locales/it.json | 6 ++++-- .../Component/Intl/Resources/data/locales/ja.json | 4 +++- .../Component/Intl/Resources/data/locales/ka.json | 4 +++- .../Component/Intl/Resources/data/locales/ki.json | 2 ++ .../Component/Intl/Resources/data/locales/kk.json | 4 +++- .../Component/Intl/Resources/data/locales/km.json | 4 +++- .../Component/Intl/Resources/data/locales/kn.json | 4 +++- .../Component/Intl/Resources/data/locales/ko.json | 2 ++ .../Component/Intl/Resources/data/locales/ks.json | 2 ++ .../Component/Intl/Resources/data/locales/ky.json | 4 +++- .../Component/Intl/Resources/data/locales/lb.json | 2 ++ .../Component/Intl/Resources/data/locales/lg.json | 2 ++ .../Component/Intl/Resources/data/locales/ln.json | 4 +++- .../Component/Intl/Resources/data/locales/lo.json | 4 +++- .../Component/Intl/Resources/data/locales/lt.json | 2 ++ .../Component/Intl/Resources/data/locales/lu.json | 2 ++ .../Component/Intl/Resources/data/locales/lv.json | 8 +++++--- .../Component/Intl/Resources/data/locales/meta.json | 2 ++ .../Component/Intl/Resources/data/locales/mg.json | 2 ++ .../Component/Intl/Resources/data/locales/mk.json | 4 +++- .../Component/Intl/Resources/data/locales/ml.json | 4 +++- .../Component/Intl/Resources/data/locales/mn.json | 4 +++- .../Component/Intl/Resources/data/locales/mr.json | 4 +++- .../Component/Intl/Resources/data/locales/ms.json | 4 +++- .../Component/Intl/Resources/data/locales/mt.json | 8 +++++--- .../Component/Intl/Resources/data/locales/my.json | 4 +++- .../Component/Intl/Resources/data/locales/nb.json | 4 +++- .../Component/Intl/Resources/data/locales/nd.json | 2 ++ .../Component/Intl/Resources/data/locales/ne.json | 4 +++- .../Component/Intl/Resources/data/locales/nl.json | 4 +++- .../Component/Intl/Resources/data/locales/nn.json | 2 ++ .../Component/Intl/Resources/data/locales/or.json | 2 ++ .../Component/Intl/Resources/data/locales/pa.json | 4 +++- .../Component/Intl/Resources/data/locales/pl.json | 2 ++ .../Component/Intl/Resources/data/locales/pt.json | 4 +++- .../Component/Intl/Resources/data/locales/qu.json | 1 + .../Component/Intl/Resources/data/locales/rm.json | 2 ++ .../Component/Intl/Resources/data/locales/rn.json | 2 ++ .../Component/Intl/Resources/data/locales/ro.json | 4 +++- .../Component/Intl/Resources/data/locales/ru.json | 2 ++ .../Component/Intl/Resources/data/locales/se.json | 2 ++ .../Component/Intl/Resources/data/locales/sg.json | 2 ++ .../Component/Intl/Resources/data/locales/si.json | 4 +++- .../Component/Intl/Resources/data/locales/sk.json | 4 +++- .../Component/Intl/Resources/data/locales/sl.json | 2 ++ .../Component/Intl/Resources/data/locales/sn.json | 2 ++ .../Component/Intl/Resources/data/locales/so.json | 2 ++ .../Component/Intl/Resources/data/locales/sq.json | 4 +++- .../Component/Intl/Resources/data/locales/sr.json | 2 ++ .../Component/Intl/Resources/data/locales/sr_Latn.json | 2 ++ .../Component/Intl/Resources/data/locales/sv.json | 2 ++ .../Component/Intl/Resources/data/locales/sw.json | 4 +++- .../Component/Intl/Resources/data/locales/ta.json | 4 +++- .../Component/Intl/Resources/data/locales/te.json | 4 +++- .../Component/Intl/Resources/data/locales/th.json | 4 +++- .../Component/Intl/Resources/data/locales/to.json | 4 +++- .../Component/Intl/Resources/data/locales/tr.json | 4 +++- .../Component/Intl/Resources/data/locales/ug.json | 2 ++ .../Component/Intl/Resources/data/locales/uk.json | 4 +++- .../Component/Intl/Resources/data/locales/ur.json | 4 +++- .../Component/Intl/Resources/data/locales/uz.json | 4 +++- .../Component/Intl/Resources/data/locales/uz_Cyrl.json | 4 +++- .../Component/Intl/Resources/data/locales/vi.json | 4 +++- .../Component/Intl/Resources/data/locales/yi.json | 2 ++ .../Component/Intl/Resources/data/locales/yo.json | 2 ++ .../Component/Intl/Resources/data/locales/yo_BJ.json | 2 ++ .../Component/Intl/Resources/data/locales/zh.json | 4 +++- .../Component/Intl/Resources/data/locales/zh_Hant.json | 4 +++- .../Intl/Resources/data/locales/zh_Hant_HK.json | 2 ++ .../Component/Intl/Resources/data/locales/zu.json | 4 +++- .../Component/Intl/Resources/data/regions/af.json | 4 ++-- .../Component/Intl/Resources/data/regions/ak.json | 2 +- .../Component/Intl/Resources/data/regions/am.json | 4 ++-- .../Component/Intl/Resources/data/regions/ar.json | 4 ++-- .../Component/Intl/Resources/data/regions/ar_LY.json | 2 +- .../Component/Intl/Resources/data/regions/ar_SA.json | 2 +- .../Component/Intl/Resources/data/regions/as.json | 2 +- .../Component/Intl/Resources/data/regions/az.json | 4 ++-- .../Component/Intl/Resources/data/regions/az_Cyrl.json | 4 ++-- .../Component/Intl/Resources/data/regions/be.json | 2 +- .../Component/Intl/Resources/data/regions/bg.json | 4 ++-- .../Component/Intl/Resources/data/regions/bm.json | 2 +- .../Component/Intl/Resources/data/regions/bn.json | 4 ++-- .../Component/Intl/Resources/data/regions/bn_IN.json | 2 +- .../Component/Intl/Resources/data/regions/bo.json | 2 +- .../Component/Intl/Resources/data/regions/bo_IN.json | 2 +- .../Component/Intl/Resources/data/regions/br.json | 2 +- .../Component/Intl/Resources/data/regions/bs.json | 4 ++-- .../Component/Intl/Resources/data/regions/bs_Cyrl.json | 2 +- .../Component/Intl/Resources/data/regions/ca.json | 4 ++-- .../Component/Intl/Resources/data/regions/ce.json | 2 +- .../Component/Intl/Resources/data/regions/cs.json | 4 ++-- .../Component/Intl/Resources/data/regions/cy.json | 4 ++-- .../Component/Intl/Resources/data/regions/da.json | 2 +- .../Component/Intl/Resources/data/regions/de.json | 4 ++-- .../Component/Intl/Resources/data/regions/de_AT.json | 2 +- .../Component/Intl/Resources/data/regions/de_CH.json | 2 +- .../Component/Intl/Resources/data/regions/dz.json | 2 +- .../Component/Intl/Resources/data/regions/ee.json | 2 +- .../Component/Intl/Resources/data/regions/el.json | 4 ++-- .../Component/Intl/Resources/data/regions/en.json | 4 ++-- .../Component/Intl/Resources/data/regions/eo.json | 2 +- .../Component/Intl/Resources/data/regions/es.json | 4 ++-- .../Component/Intl/Resources/data/regions/es_419.json | 2 +- .../Component/Intl/Resources/data/regions/es_AR.json | 2 +- .../Component/Intl/Resources/data/regions/es_BO.json | 2 +- .../Component/Intl/Resources/data/regions/es_CL.json | 2 +- .../Component/Intl/Resources/data/regions/es_CO.json | 2 +- .../Component/Intl/Resources/data/regions/es_CR.json | 2 +- .../Component/Intl/Resources/data/regions/es_DO.json | 2 +- .../Component/Intl/Resources/data/regions/es_EC.json | 2 +- .../Component/Intl/Resources/data/regions/es_GT.json | 2 +- .../Component/Intl/Resources/data/regions/es_HN.json | 2 +- .../Component/Intl/Resources/data/regions/es_MX.json | 2 +- .../Component/Intl/Resources/data/regions/es_NI.json | 2 +- .../Component/Intl/Resources/data/regions/es_PA.json | 2 +- .../Component/Intl/Resources/data/regions/es_PE.json | 2 +- .../Component/Intl/Resources/data/regions/es_PR.json | 2 +- .../Component/Intl/Resources/data/regions/es_PY.json | 2 +- .../Component/Intl/Resources/data/regions/es_SV.json | 2 +- .../Component/Intl/Resources/data/regions/es_US.json | 2 +- .../Component/Intl/Resources/data/regions/es_VE.json | 2 +- .../Component/Intl/Resources/data/regions/et.json | 4 ++-- .../Component/Intl/Resources/data/regions/eu.json | 4 ++-- .../Component/Intl/Resources/data/regions/fa.json | 2 +- .../Component/Intl/Resources/data/regions/fa_AF.json | 2 +- .../Component/Intl/Resources/data/regions/ff.json | 2 +- .../Component/Intl/Resources/data/regions/fi.json | 4 ++-- .../Component/Intl/Resources/data/regions/fo.json | 2 +- .../Component/Intl/Resources/data/regions/fr.json | 4 ++-- .../Component/Intl/Resources/data/regions/fr_BE.json | 2 +- .../Component/Intl/Resources/data/regions/fr_CA.json | 2 +- .../Component/Intl/Resources/data/regions/fy.json | 2 +- .../Component/Intl/Resources/data/regions/ga.json | 2 +- .../Component/Intl/Resources/data/regions/gd.json | 4 ++-- .../Component/Intl/Resources/data/regions/gl.json | 4 ++-- .../Component/Intl/Resources/data/regions/gu.json | 4 ++-- .../Component/Intl/Resources/data/regions/gv.json | 2 +- .../Component/Intl/Resources/data/regions/ha.json | 2 +- .../Component/Intl/Resources/data/regions/he.json | 4 ++-- .../Component/Intl/Resources/data/regions/hi.json | 4 ++-- .../Component/Intl/Resources/data/regions/hr.json | 4 ++-- .../Component/Intl/Resources/data/regions/hu.json | 2 +- .../Component/Intl/Resources/data/regions/hy.json | 2 +- .../Component/Intl/Resources/data/regions/id.json | 4 ++-- .../Component/Intl/Resources/data/regions/ig.json | 2 +- .../Component/Intl/Resources/data/regions/ii.json | 2 +- .../Component/Intl/Resources/data/regions/in.json | 4 ++-- .../Component/Intl/Resources/data/regions/is.json | 2 +- .../Component/Intl/Resources/data/regions/it.json | 6 +++--- .../Component/Intl/Resources/data/regions/iw.json | 4 ++-- .../Component/Intl/Resources/data/regions/ja.json | 4 ++-- .../Component/Intl/Resources/data/regions/ka.json | 4 ++-- .../Component/Intl/Resources/data/regions/ki.json | 2 +- .../Component/Intl/Resources/data/regions/kk.json | 4 ++-- .../Component/Intl/Resources/data/regions/kl.json | 2 +- .../Component/Intl/Resources/data/regions/km.json | 4 ++-- .../Component/Intl/Resources/data/regions/kn.json | 4 ++-- .../Component/Intl/Resources/data/regions/ko.json | 2 +- .../Component/Intl/Resources/data/regions/ko_KP.json | 2 +- .../Component/Intl/Resources/data/regions/ks.json | 2 +- .../Component/Intl/Resources/data/regions/kw.json | 2 +- .../Component/Intl/Resources/data/regions/ky.json | 4 ++-- .../Component/Intl/Resources/data/regions/lb.json | 2 +- .../Component/Intl/Resources/data/regions/lg.json | 2 +- .../Component/Intl/Resources/data/regions/ln.json | 4 ++-- .../Component/Intl/Resources/data/regions/lo.json | 4 ++-- .../Component/Intl/Resources/data/regions/lt.json | 2 +- .../Component/Intl/Resources/data/regions/lu.json | 2 +- .../Component/Intl/Resources/data/regions/lv.json | 6 +++--- .../Component/Intl/Resources/data/regions/meta.json | 2 +- .../Component/Intl/Resources/data/regions/mg.json | 2 +- .../Component/Intl/Resources/data/regions/mk.json | 4 ++-- .../Component/Intl/Resources/data/regions/ml.json | 4 ++-- .../Component/Intl/Resources/data/regions/mn.json | 4 ++-- .../Component/Intl/Resources/data/regions/mo.json | 2 +- .../Component/Intl/Resources/data/regions/mr.json | 4 ++-- .../Component/Intl/Resources/data/regions/ms.json | 4 ++-- .../Component/Intl/Resources/data/regions/mt.json | 2 +- .../Component/Intl/Resources/data/regions/my.json | 4 ++-- .../Component/Intl/Resources/data/regions/nb.json | 4 ++-- .../Component/Intl/Resources/data/regions/nd.json | 2 +- .../Component/Intl/Resources/data/regions/ne.json | 4 ++-- .../Component/Intl/Resources/data/regions/nl.json | 4 ++-- .../Component/Intl/Resources/data/regions/nn.json | 2 +- .../Component/Intl/Resources/data/regions/no.json | 4 ++-- .../Component/Intl/Resources/data/regions/om.json | 2 +- .../Component/Intl/Resources/data/regions/or.json | 2 +- .../Component/Intl/Resources/data/regions/os.json | 2 +- .../Component/Intl/Resources/data/regions/pa.json | 4 ++-- .../Component/Intl/Resources/data/regions/pa_Arab.json | 2 +- .../Component/Intl/Resources/data/regions/pl.json | 2 +- .../Component/Intl/Resources/data/regions/ps.json | 2 +- .../Component/Intl/Resources/data/regions/pt.json | 4 ++-- .../Component/Intl/Resources/data/regions/pt_PT.json | 2 +- .../Component/Intl/Resources/data/regions/qu.json | 2 +- .../Component/Intl/Resources/data/regions/rm.json | 2 +- .../Component/Intl/Resources/data/regions/rn.json | 2 +- .../Component/Intl/Resources/data/regions/ro.json | 4 ++-- .../Component/Intl/Resources/data/regions/ro_MD.json | 2 +- .../Component/Intl/Resources/data/regions/ru.json | 2 +- .../Component/Intl/Resources/data/regions/ru_UA.json | 2 +- .../Component/Intl/Resources/data/regions/rw.json | 2 +- .../Component/Intl/Resources/data/regions/se.json | 2 +- .../Component/Intl/Resources/data/regions/se_FI.json | 2 +- .../Component/Intl/Resources/data/regions/sg.json | 2 +- .../Component/Intl/Resources/data/regions/sh.json | 2 +- .../Component/Intl/Resources/data/regions/sh_BA.json | 2 +- .../Component/Intl/Resources/data/regions/si.json | 4 ++-- .../Component/Intl/Resources/data/regions/sk.json | 4 ++-- .../Component/Intl/Resources/data/regions/sl.json | 2 +- .../Component/Intl/Resources/data/regions/sn.json | 2 +- .../Component/Intl/Resources/data/regions/so.json | 2 +- .../Component/Intl/Resources/data/regions/sq.json | 4 ++-- .../Component/Intl/Resources/data/regions/sr.json | 2 +- .../Component/Intl/Resources/data/regions/sr_BA.json | 2 +- .../Intl/Resources/data/regions/sr_Cyrl_BA.json | 2 +- .../Intl/Resources/data/regions/sr_Cyrl_ME.json | 2 +- .../Intl/Resources/data/regions/sr_Cyrl_XK.json | 2 +- .../Component/Intl/Resources/data/regions/sr_Latn.json | 2 +- .../Intl/Resources/data/regions/sr_Latn_BA.json | 2 +- .../Intl/Resources/data/regions/sr_Latn_ME.json | 2 +- .../Intl/Resources/data/regions/sr_Latn_XK.json | 2 +- .../Component/Intl/Resources/data/regions/sr_ME.json | 2 +- .../Component/Intl/Resources/data/regions/sr_XK.json | 2 +- .../Component/Intl/Resources/data/regions/sv.json | 2 +- .../Component/Intl/Resources/data/regions/sw.json | 4 ++-- .../Component/Intl/Resources/data/regions/sw_CD.json | 2 +- .../Component/Intl/Resources/data/regions/sw_KE.json | 2 +- .../Component/Intl/Resources/data/regions/ta.json | 4 ++-- .../Component/Intl/Resources/data/regions/te.json | 4 ++-- .../Component/Intl/Resources/data/regions/th.json | 4 ++-- .../Component/Intl/Resources/data/regions/tl.json | 4 ++-- .../Component/Intl/Resources/data/regions/to.json | 4 ++-- .../Component/Intl/Resources/data/regions/tr.json | 4 ++-- .../Component/Intl/Resources/data/regions/ug.json | 2 +- .../Component/Intl/Resources/data/regions/uk.json | 4 ++-- .../Component/Intl/Resources/data/regions/ur.json | 4 ++-- .../Component/Intl/Resources/data/regions/ur_IN.json | 2 +- .../Component/Intl/Resources/data/regions/uz.json | 4 ++-- .../Component/Intl/Resources/data/regions/uz_Arab.json | 2 +- .../Component/Intl/Resources/data/regions/uz_Cyrl.json | 4 ++-- .../Component/Intl/Resources/data/regions/vi.json | 4 ++-- .../Component/Intl/Resources/data/regions/yi.json | 2 +- .../Component/Intl/Resources/data/regions/yo.json | 2 +- .../Component/Intl/Resources/data/regions/yo_BJ.json | 2 +- .../Component/Intl/Resources/data/regions/zh.json | 4 ++-- .../Component/Intl/Resources/data/regions/zh_HK.json | 2 +- .../Component/Intl/Resources/data/regions/zh_Hant.json | 4 ++-- .../Intl/Resources/data/regions/zh_Hant_HK.json | 2 +- .../Component/Intl/Resources/data/regions/zu.json | 4 ++-- .../Component/Intl/Resources/data/scripts/af.json | 2 +- .../Component/Intl/Resources/data/scripts/am.json | 2 +- .../Component/Intl/Resources/data/scripts/ar.json | 2 +- .../Component/Intl/Resources/data/scripts/as.json | 2 +- .../Component/Intl/Resources/data/scripts/az.json | 2 +- .../Component/Intl/Resources/data/scripts/az_Cyrl.json | 2 +- .../Component/Intl/Resources/data/scripts/be.json | 2 +- .../Component/Intl/Resources/data/scripts/bg.json | 2 +- .../Component/Intl/Resources/data/scripts/bn.json | 2 +- .../Component/Intl/Resources/data/scripts/bo.json | 2 +- .../Component/Intl/Resources/data/scripts/br.json | 2 +- .../Component/Intl/Resources/data/scripts/bs.json | 2 +- .../Component/Intl/Resources/data/scripts/bs_Cyrl.json | 2 +- .../Component/Intl/Resources/data/scripts/ca.json | 2 +- .../Component/Intl/Resources/data/scripts/ce.json | 2 +- .../Component/Intl/Resources/data/scripts/cs.json | 2 +- .../Component/Intl/Resources/data/scripts/cy.json | 2 +- .../Component/Intl/Resources/data/scripts/da.json | 2 +- .../Component/Intl/Resources/data/scripts/de.json | 2 +- .../Component/Intl/Resources/data/scripts/dz.json | 2 +- .../Component/Intl/Resources/data/scripts/ee.json | 2 +- .../Component/Intl/Resources/data/scripts/el.json | 2 +- .../Component/Intl/Resources/data/scripts/en.json | 2 +- .../Component/Intl/Resources/data/scripts/en_IN.json | 2 +- .../Component/Intl/Resources/data/scripts/es.json | 2 +- .../Component/Intl/Resources/data/scripts/es_419.json | 2 +- .../Component/Intl/Resources/data/scripts/es_MX.json | 2 +- .../Component/Intl/Resources/data/scripts/et.json | 2 +- .../Component/Intl/Resources/data/scripts/eu.json | 2 +- .../Component/Intl/Resources/data/scripts/fa.json | 2 +- .../Component/Intl/Resources/data/scripts/fa_AF.json | 2 +- .../Component/Intl/Resources/data/scripts/fi.json | 2 +- .../Component/Intl/Resources/data/scripts/fo.json | 2 +- .../Component/Intl/Resources/data/scripts/fr.json | 2 +- .../Component/Intl/Resources/data/scripts/fr_CA.json | 2 +- .../Component/Intl/Resources/data/scripts/fy.json | 2 +- .../Component/Intl/Resources/data/scripts/ga.json | 2 +- .../Component/Intl/Resources/data/scripts/gd.json | 2 +- .../Component/Intl/Resources/data/scripts/gl.json | 2 +- .../Component/Intl/Resources/data/scripts/gu.json | 2 +- .../Component/Intl/Resources/data/scripts/he.json | 2 +- .../Component/Intl/Resources/data/scripts/hi.json | 2 +- .../Component/Intl/Resources/data/scripts/hr.json | 2 +- .../Component/Intl/Resources/data/scripts/hu.json | 2 +- .../Component/Intl/Resources/data/scripts/hy.json | 2 +- .../Component/Intl/Resources/data/scripts/id.json | 2 +- .../Component/Intl/Resources/data/scripts/ii.json | 2 +- .../Component/Intl/Resources/data/scripts/in.json | 2 +- .../Component/Intl/Resources/data/scripts/is.json | 2 +- .../Component/Intl/Resources/data/scripts/it.json | 2 +- .../Component/Intl/Resources/data/scripts/iw.json | 2 +- .../Component/Intl/Resources/data/scripts/ja.json | 2 +- .../Component/Intl/Resources/data/scripts/ka.json | 2 +- .../Component/Intl/Resources/data/scripts/kk.json | 2 +- .../Component/Intl/Resources/data/scripts/km.json | 2 +- .../Component/Intl/Resources/data/scripts/kn.json | 2 +- .../Component/Intl/Resources/data/scripts/ko.json | 2 +- .../Component/Intl/Resources/data/scripts/ks.json | 2 +- .../Component/Intl/Resources/data/scripts/ky.json | 2 +- .../Component/Intl/Resources/data/scripts/lb.json | 2 +- .../Component/Intl/Resources/data/scripts/lo.json | 2 +- .../Component/Intl/Resources/data/scripts/lt.json | 2 +- .../Component/Intl/Resources/data/scripts/lv.json | 2 +- .../Component/Intl/Resources/data/scripts/meta.json | 2 +- .../Component/Intl/Resources/data/scripts/mk.json | 2 +- .../Component/Intl/Resources/data/scripts/ml.json | 2 +- .../Component/Intl/Resources/data/scripts/mn.json | 2 +- .../Component/Intl/Resources/data/scripts/mr.json | 2 +- .../Component/Intl/Resources/data/scripts/ms.json | 2 +- .../Component/Intl/Resources/data/scripts/mt.json | 2 +- .../Component/Intl/Resources/data/scripts/my.json | 2 +- .../Component/Intl/Resources/data/scripts/nb.json | 2 +- .../Component/Intl/Resources/data/scripts/ne.json | 2 +- .../Component/Intl/Resources/data/scripts/nl.json | 2 +- .../Component/Intl/Resources/data/scripts/nn.json | 2 +- .../Component/Intl/Resources/data/scripts/no.json | 2 +- .../Component/Intl/Resources/data/scripts/om.json | 2 +- .../Component/Intl/Resources/data/scripts/or.json | 2 +- .../Component/Intl/Resources/data/scripts/os.json | 2 +- .../Component/Intl/Resources/data/scripts/pa.json | 2 +- .../Component/Intl/Resources/data/scripts/pa_Arab.json | 2 +- .../Component/Intl/Resources/data/scripts/pl.json | 2 +- .../Component/Intl/Resources/data/scripts/ps.json | 2 +- .../Component/Intl/Resources/data/scripts/pt.json | 2 +- .../Component/Intl/Resources/data/scripts/pt_PT.json | 2 +- .../Component/Intl/Resources/data/scripts/rm.json | 2 +- .../Component/Intl/Resources/data/scripts/ro.json | 2 +- .../Component/Intl/Resources/data/scripts/ru.json | 2 +- .../Component/Intl/Resources/data/scripts/se.json | 2 +- .../Component/Intl/Resources/data/scripts/se_FI.json | 2 +- .../Component/Intl/Resources/data/scripts/sh.json | 2 +- .../Component/Intl/Resources/data/scripts/si.json | 2 +- .../Component/Intl/Resources/data/scripts/sk.json | 2 +- .../Component/Intl/Resources/data/scripts/sl.json | 2 +- .../Component/Intl/Resources/data/scripts/so.json | 2 +- .../Component/Intl/Resources/data/scripts/sq.json | 2 +- .../Component/Intl/Resources/data/scripts/sr.json | 2 +- .../Component/Intl/Resources/data/scripts/sr_Latn.json | 2 +- .../Component/Intl/Resources/data/scripts/sv.json | 2 +- .../Component/Intl/Resources/data/scripts/sw.json | 2 +- .../Component/Intl/Resources/data/scripts/ta.json | 2 +- .../Component/Intl/Resources/data/scripts/te.json | 2 +- .../Component/Intl/Resources/data/scripts/th.json | 2 +- .../Component/Intl/Resources/data/scripts/ti.json | 2 +- .../Component/Intl/Resources/data/scripts/tl.json | 2 +- .../Component/Intl/Resources/data/scripts/to.json | 2 +- .../Component/Intl/Resources/data/scripts/tr.json | 2 +- .../Component/Intl/Resources/data/scripts/ug.json | 2 +- .../Component/Intl/Resources/data/scripts/uk.json | 2 +- .../Component/Intl/Resources/data/scripts/ur.json | 2 +- .../Component/Intl/Resources/data/scripts/uz.json | 2 +- .../Component/Intl/Resources/data/scripts/uz_Arab.json | 2 +- .../Component/Intl/Resources/data/scripts/uz_Cyrl.json | 2 +- .../Component/Intl/Resources/data/scripts/vi.json | 2 +- .../Component/Intl/Resources/data/scripts/yi.json | 2 +- .../Component/Intl/Resources/data/scripts/zh.json | 2 +- .../Component/Intl/Resources/data/scripts/zh_HK.json | 2 +- .../Component/Intl/Resources/data/scripts/zh_Hant.json | 2 +- .../Intl/Resources/data/scripts/zh_Hant_HK.json | 2 +- .../Component/Intl/Resources/data/scripts/zu.json | 2 +- src/Symfony/Component/Intl/Resources/data/svn-info.txt | 6 +++--- src/Symfony/Component/Intl/Resources/data/version.txt | 2 +- 916 files changed, 1316 insertions(+), 1074 deletions(-) create mode 100644 src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json diff --git a/src/Symfony/Component/Intl/Resources/bin/icu.ini b/src/Symfony/Component/Intl/Resources/bin/icu.ini index df78504d51a89..3b288a55f20a5 100644 --- a/src/Symfony/Component/Intl/Resources/bin/icu.ini +++ b/src/Symfony/Component/Intl/Resources/bin/icu.ini @@ -14,3 +14,4 @@ 55 = http://source.icu-project.org/repos/icu/icu/tags/release-55-1/source 57 = http://source.icu-project.org/repos/icu/icu/tags/release-57-1/source 58 = http://source.icu-project.org/repos/icu/tags/release-58-2/icu4c/source +59 = http://source.icu-project.org/repos/icu/tags/release-59-1/icu4c/source diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af.json b/src/Symfony/Component/Intl/Resources/data/currencies/af.json index 7123daf3a642d..a5badcd67af9d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -451,7 +451,7 @@ ], "PEN": [ "PEN", - "Peruaanse nuwe sol" + "Peruaanse sol" ], "PGK": [ "PGK", 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 7f76eeefa7e1a..9dd49f7e6c2f7 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.27.40", + "Version": "2.1.31.33", "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 cf259fe2e8bcb..7db0d8786dd3a 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.27.40", + "Version": "2.1.31.33", "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 abfaa8b2d5888..00d1bdb682cb9 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -439,7 +439,7 @@ ], "PEN": [ "PEN", - "የፔሩቪያ ኑኤቮ ሶል" + "የፔሩቪያ ሶል" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index 95e3c98b368e9..767e81f24f753 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.28.79", + "Version": "2.1.32.86", "Names": { "ADP": [ "ADP", @@ -647,7 +647,7 @@ ], "PEN": [ "PEN", - "سول جديد البيرو" + "سول البيرو" ], "PGK": [ "PGK", 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 a0cccc6e86644..26804e714d7f6 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.27.40", + "Version": "2.1.31.33", "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 4c3df3603c1f5..75679c039d979 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.27.40", + "Version": "2.1.31.33", "Names": { "ERN": [ "Nfk", 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 f7c67d5e727b3..c5da238b68a46 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.27.40", + "Version": "2.1.31.33", "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 e47d8f9610e93..8f25c0e5a2ad0 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.27.40", + "Version": "2.1.31.33", "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 859b6b198dd8d..a273c2b4243d5 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.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az.json b/src/Symfony/Component/Intl/Resources/data/currencies/az.json index aeea149027454..40b0848681f98 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -703,11 +703,11 @@ ], "PEN": [ "PEN", - "Peru Nuevo Solu" + "Peru Solu" ], "PES": [ "PES", - "Peru Solu" + "Peru Solu (1863–1965)" ], "PGK": [ "PGK", 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 a70c089be71ce..d1b2d1ab8b24f 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.27.40", + "Version": "2.1.31.74", "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 2ff2cb58c7ede..456d91cf3c168 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/be.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.66", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "перуанскі новы соль" + "перуанскі соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 7f0e91965eab7..95b0df2e9920a 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.30.6", + "Version": "2.1.33.75", "Names": { "ADP": [ "ADP", @@ -687,11 +687,11 @@ ], "PEN": [ "PEN", - "Перуански нов сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index a87eda05b252a..8beb7ec703f90 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.27.40", + "Version": "2.1.31.33", "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 83f4bb6ff49cc..8772c431ee7aa 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.29.44", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "পেরুভিয়ান সোল নুয়েভো" + "পেরুভিয়ান সোল" ], "PES": [ "PES", - "পেরুভিয়ান সোল" + "পেরুভিয়ান সোল (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json index 0603c9bdf5a8c..1abadab5497e6 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.27.40", + "Version": "2.1.31.33", "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 efe4ce0b22299..295efd14ebe27 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.27.40", + "Version": "2.1.31.33", "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 ce8e0e5dd564c..8b59f8eda1b0c 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "nuevo sol Perou" + "sol Perou" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index a4a5c21f77b5b..0234bfc205769 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.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -739,7 +739,7 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", 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 ed5a99d0d4fab..9adf2177dd956 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.28.76", + "Version": "2.1.32.72", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Перуански нуево сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 502630f92f37f..da37dc859ff74 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -772,11 +772,11 @@ ], "PEN": [ "PEN", - "nou sol peruà" + "sol peruà" ], "PES": [ "PES", - "sol peruà" + "sol peruà (1863–1965)" ], "PGK": [ "PGK", 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 2556405f6e97d..279ca881cbee6 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.27.40", + "Version": "2.1.31.33", "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 a39d9d927d216..3ec80c4ce5d22 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.28.76", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "Перун керла соль" + "Перун соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json index 9acce92b21062..eeeec5e3c1fdd 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "peruánský nový sol" + "peruánský sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json index 9139ec372be0f..acea2745be362 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.30.6", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -727,7 +727,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Periw" + "Sol Periw" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index ba210ddb2f8fb..0c2bd45b574c1 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -687,15 +687,15 @@ ], "PEI": [ "PEI", - "Peruviansk inti" + "peruviansk inti" ], "PEN": [ "PEN", - "peruviansk nuevo sol" + "peruviansk sol" ], "PES": [ "PES", - "Peruviansk sol (1863–1965)" + "peruviansk sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index e7460ec3831a4..59325953aa1d1 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.28.79", + "Version": "2.1.32.59", "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 86916be5d6e49..1e6a09a7e3868 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.29.33", + "Version": "2.1.31.33", "Names": { "BYN": [ "BYN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json index a6556312c9a52..6010b24058f09 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.27.40", + "Version": "2.1.31.33", "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 0056e3e61d966..56ef080168807 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.27.99", + "Version": "2.1.31.33", "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 9cc1226728522..68e2567befbae 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.29.61", + "Version": "2.1.31.34", "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 09bbb10f6a3b6..0e557ea72665c 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -747,11 +747,11 @@ ], "PEN": [ "PEN", - "peruga nuevo sol" + "peruga sol" ], "PES": [ "PES", - "peruga nuevo sol (1863–1965)" + "peruga sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/el.json b/src/Symfony/Component/Intl/Resources/data/currencies/el.json index 21339ee0c3ad9..3c13aa97226ac 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -700,11 +700,11 @@ ], "PEN": [ "PEN", - "Νέο Σολ Περού" + "Σολ Περού" ], "PES": [ "PES", - "Σολ Περού" + "Σολ Περού (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en.json b/src/Symfony/Component/Intl/Resources/data/currencies/en.json index 2b92604232a34..b3c2c319bed22 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.30.50", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -307,7 +307,7 @@ ], "CZK": [ "CZK", - "Czech Republic Koruna" + "Czech Koruna" ], "DDM": [ "DDM", 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 383bec0dd4302..a65efeb65d3d9 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.29.54", + "Version": "2.1.31.33", "Names": { "BYB": [ "BYB", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json index aaa978c699d54..f0d85c1a9eaa3 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.27.40", + "Version": "2.1.31.33", "Names": { "EUR": [ "€", 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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 90005dac4ea0a..e0a4f41dafb0b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.62", "Names": { "AUD": [ "$", 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 e7504e1987161..36f0ae6e69a6f 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.27.40", + "Version": "2.1.31.33", "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 c636cfa64ebfa..e93c048d7b987 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.27.40", + "Version": "2.1.31.33", "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 bfd06409e5665..e745ac4ce83f3 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.27.40", + "Version": "2.1.31.33", "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 a6f081f1d0bf2..45a39b620bcfe 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.27.40", + "Version": "2.1.31.33", "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 79f2b161af575..e268bbaecb356 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.27.65", + "Version": "2.1.31.33", "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 24863a34b6232..84a46ec1bf8a9 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.27.40", + "Version": "2.1.31.33", "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 7600970fba5a5..db54b7a898923 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "CAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json index f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 db55329e58a35..6b0d8164269eb 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.27.40", + "Version": "2.1.31.33", "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 f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 f90fcb13d6e44..4e545e98c946e 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 10fb31aab03d6..35207b7c96ebe 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.27.40", + "Version": "2.1.31.33", "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 204c7daa02422..ec0114f740088 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.27.40", + "Version": "2.1.31.33", "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 882f3755ce499..b9e1b291c43d7 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.27.40", + "Version": "2.1.31.33", "Names": { "FKP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json index 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 67841c1b1e9bd..42a66bda99c2f 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.27.40", + "Version": "2.1.31.33", "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 9de2f541c513a..e36a8c8e74e07 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.27.40", + "Version": "2.1.31.33", "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 bd274821787cf..f65557c22413e 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.27.40", + "Version": "2.1.31.33", "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 1bb59cb7d2128..ee84873589ada 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.27.40", + "Version": "2.1.31.33", "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 8d52977729bf1..373fbdabd214c 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.27.40", + "Version": "2.1.31.33", "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 67841c1b1e9bd..42a66bda99c2f 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.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "£", 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 67841c1b1e9bd..42a66bda99c2f 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.27.40", + "Version": "2.1.31.33", "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 fa6d0c13b945e..6a1f6160a67f2 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.27.40", + "Version": "2.1.31.33", "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 710f37837d400..a776544b0f241 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.27.40", + "Version": "2.1.31.33", "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 f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 eae7f2b2fb1b1..281870573824b 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 8cafa65047869..15bdbf7b64d76 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.27.40", + "Version": "2.1.31.33", "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 19966d0715fda..15556478575a0 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.27.40", + "Version": "2.1.31.33", "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 cd23e7522282c..f2d917681fe97 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.27.40", + "Version": "2.1.31.33", "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 6f3d5afb53426..21d185eb5afd9 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 97e7554922044..7f302b2b85e0c 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.27.40", + "Version": "2.1.31.33", "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 0e9cd08c28dbc..fd95a116b078b 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.27.40", + "Version": "2.1.31.33", "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 496b75db8a32c..06040fe524020 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.27.40", + "Version": "2.1.31.33", "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 fd4998eacf411..ff346bdae1a3e 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.27.40", + "Version": "2.1.31.33", "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 ca517971a7d44..7de7db3e06721 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.27.40", + "Version": "2.1.31.33", "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 f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 b61270d84c036..be462c4175d89 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.27.40", + "Version": "2.1.31.33", "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 4a64e4e1ff554..00831e2d9f293 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.27.40", + "Version": "2.1.31.33", "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 f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 db55329e58a35..6b0d8164269eb 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.27.40", + "Version": "2.1.31.33", "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 db55329e58a35..6b0d8164269eb 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.27.40", + "Version": "2.1.31.33", "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 8647b20b3e02b..e7396608ae89a 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.27.40", + "Version": "2.1.31.33", "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 7d1a41586a0c8..8e3c186f8419c 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.27.40", + "Version": "2.1.31.33", "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 99c4235a2d63c..201cebdfdd0a3 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.27.40", + "Version": "2.1.31.33", "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 db55329e58a35..6b0d8164269eb 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.27.40", + "Version": "2.1.31.33", "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 c46230dd4a526..bc57edd383fd8 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.27.40", + "Version": "2.1.31.33", "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 a344e1cdfd869..d2771bb79d3dd 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.27.40", + "Version": "2.1.31.33", "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 3451c073556b3..d8a1118405dc3 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.27.40", + "Version": "2.1.31.33", "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 f15c55cc918f3..a22f8f6722a36 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.27.40", + "Version": "2.1.31.33", "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 3145fcec62493..2214928f25cf4 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.29.54", + "Version": "2.1.31.33", "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 cdd3dd0902791..04744532a47be 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.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json index 33502fa2172b0..36f870b81c8fb 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.27.40", + "Version": "2.1.31.33", "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 bf7bb3768eade..734c386e2d6d6 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.27.40", + "Version": "2.1.31.33", "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 874938b5fd5b6..9f06b8d6a991a 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.27.40", + "Version": "2.1.31.33", "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 1dbee9b29007d..433f1d9876211 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.27.40", + "Version": "2.1.31.33", "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 db55329e58a35..6b0d8164269eb 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.27.40", + "Version": "2.1.31.33", "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 5d23a66641aa5..59a09c70d6cab 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.27.40", + "Version": "2.1.31.33", "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 10586b530bb49..64fea7b6bca20 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.27.40", + "Version": "2.1.31.33", "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 f2a61228e27fc..e1534fc422d0e 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.27.40", + "Version": "2.1.31.33", "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 af6a02d05c799..d78476f68c566 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.27.40", + "Version": "2.1.31.33", "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 c9ad30c2ced67..db7243d7da4d7 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.27.40", + "Version": "2.1.31.33", "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 32edaa85a276a..f551a2dd31cf5 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.27.40", + "Version": "2.1.31.33", "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 4a64e4e1ff554..00831e2d9f293 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.27.40", + "Version": "2.1.31.33", "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 a551f913ed6f6..f74a36f66a954 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.27.40", + "Version": "2.1.31.33", "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 95791ea6a4132..15556478575a0 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.27.64", + "Version": "2.1.31.33", "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 b18306f345e15..a878011396583 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.27.40", + "Version": "2.1.31.33", "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 818b43ec87e61..c036a3122eaa3 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.28.80", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,7 +707,7 @@ ], "PEN": [ "PEN", - "nuevo sol peruano" + "sol peruano" ], "PES": [ "PES", 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 680c2b688228b..7f5346037b692 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AMD": [ "AMD", 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 d36c2b64feb13..e049111ee8f48 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.27.99", + "Version": "2.1.31.33", "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 657c269e1b626..34d7187674ce4 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.27.99", + "Version": "2.1.31.33", "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 8159520375146..fed2a133aa1d4 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.27.40", + "Version": "2.1.31.33", "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 new file mode 100644 index 0000000000000..b228fddd8eebd --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json @@ -0,0 +1,9 @@ +{ + "Version": "2.1.32.37", + "Names": { + "BZD": [ + "$", + "dólar beliceño" + ] + } +} 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 cd6c1a9dd68a1..25bac0c3b75a3 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.27.99", + "Version": "2.1.31.33", "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 0bf0dc8b13104..399a5cf828cee 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.27.99", + "Version": "2.1.31.33", "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 d5ab35788cc62..6b94c74045f8e 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.27.99", + "Version": "2.1.31.33", "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 0bfa8154ce483..2aa410eba4553 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.27.40", + "Version": "2.1.31.33", "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 a871eab0ff9fd..fce925ac290b6 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.27.99", + "Version": "2.1.31.33", "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 b61fca480df01..6ec4e485e868a 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.27.99", + "Version": "2.1.31.33", "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 214a1a95e2ade..dd83bf9ed93d2 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.27.40", + "Version": "2.1.31.33", "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 95288e4eba565..d14b522bbe3be 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.27.99", + "Version": "2.1.31.33", "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 6d244ad41bacb..490f43ba0ab1f 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.27.99", + "Version": "2.1.31.33", "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 8c891fef63347..fff01fa78fb36 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.28.76", + "Version": "2.1.31.33", "Names": { "AFN": [ "Af", 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 a498dc3b706ac..66a430c937e51 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.27.99", + "Version": "2.1.31.33", "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 c982a720f7cfa..45dbe193b1cd9 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.27.99", + "Version": "2.1.31.33", "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 784c7067043dd..14748ada17ec1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json @@ -1,9 +1,9 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "PEN": [ "S\/", - "nuevo sol peruano" + "sol peruano" ] } } 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 c0c06e8a6a3e0..e1484871ad34c 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.27.40", + "Version": "2.1.31.33", "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 b61fca480df01..6ec4e485e868a 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.27.99", + "Version": "2.1.31.33", "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 4e955dda8a956..cae8b320d4a68 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.27.99", + "Version": "2.1.31.33", "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 b61fca480df01..6ec4e485e868a 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.27.99", + "Version": "2.1.31.33", "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 44a2947238e16..8bf94dfbd9633 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.74", "Names": { "JPY": [ "¥", 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 a68a3e7518263..e4d2adba7dc73 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.27.40", + "Version": "2.1.31.33", "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 76b744670c390..21f914112f3b3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "VEF": [ "Bs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/et.json b/src/Symfony/Component/Intl/Resources/data/currencies/et.json index 4b68ffc34842e..5199aad542535 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -700,7 +700,7 @@ ], "PEN": [ "PEN", - "Peruu uus soll" + "Peruu soll" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json index 1b1bad29ff256..6260d253f957e 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.29.20", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -440,7 +440,7 @@ ], "PEN": [ "PEN", - "Peruko sol berria" + "Peruko sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index 65cdaee88bf3a..4223aef956eb6 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.29.44", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", 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 64b372dee9702..08ed65d1c26c8 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.29.44", + "Version": "2.1.31.33", "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 ae3107455f1b0..af67b59ab85df 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.27.40", + "Version": "2.1.31.33", "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 5bcca9826b601..fa181650fa892 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.27.40", + "Version": "2.1.31.33", "Names": { "GNF": [ "FG", 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 1785988ce25f9..df8b8a6c13a60 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.27.40", + "Version": "2.1.31.33", "Names": { "MRO": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json index c7c146fd88849..9a5ffdd13ca0f 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.29.88", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Perun uusi sol" + "Perun sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index 3cb3fd594879a..4aebc1323911b 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.28.76", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "Peru nuevo sol" + "Peru sol" ], "PGK": [ "PGK", 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 ae82859e2e9e1..d5222d47ae5c8 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.27.40", + "Version": "2.1.31.33", "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 39801477043a6..8ccd773a90b1f 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -711,11 +711,11 @@ ], "PEN": [ "PEN", - "nouveau sol péruvien" + "sol péruvien" ], "PES": [ "PES", - "sol péruvien" + "sol péruvien (1863–1985)" ], "PGK": [ "PGK", 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 071b4a82fcbbd..a3b074beadbd7 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.27.40", + "Version": "2.1.31.33", "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 b2c2b3289c3aa..57356f7688058 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ARS": [ "ARS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json index 9989b8adde134..ea857694c1cf1 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.27.99", + "Version": "2.1.31.33", "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 658bdb8f0f666..e61ac0a6bfbf6 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.27.40", + "Version": "2.1.31.33", "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 2a15feebe8c2b..8a5a3b53081be 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.27.40", + "Version": "2.1.31.33", "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 07766e28c9829..cc3ce23bc2478 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.27.40", + "Version": "2.1.31.33", "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 f8ce809cbe6ca..27b11c70d5b4f 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.27.63", + "Version": "2.1.31.33", "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 9658d53518a3f..989f5fc5fd216 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.27.40", + "Version": "2.1.31.33", "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 0fe75282c4017..ccde779b863eb 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.27.99", + "Version": "2.1.31.33", "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 bc36db8a9b0cc..e71b0d0f4d0d9 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.27.40", + "Version": "2.1.31.33", "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 289e33d74ef9d..39f160e3d63cd 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.27.40", + "Version": "2.1.31.33", "Names": { "MRO": [ "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 3010d330bda10..4dd8ce23384d9 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.27.40", + "Version": "2.1.31.33", "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 bc47b9562b1b1..ee80ae59594b0 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.27.40", + "Version": "2.1.31.33", "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 4f82e936f11ef..6baded7d7b2e7 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.27.40", + "Version": "2.1.31.33", "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 dcd413fa7f160..572b54cf2843b 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.27.40", + "Version": "2.1.31.33", "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 bc09e05a93335..13fa79823fff1 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.27.40", + "Version": "2.1.31.33", "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 51570db5c24c8..6cd281775417c 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.27.40", + "Version": "2.1.31.33", "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 53b58a2743d9a..814eae20abbe9 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.29.44", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -759,11 +759,11 @@ ], "PEN": [ "PEN", - "Peruaanske nieuwe sol" + "Peruaanske sol" ], "PES": [ "PES", - "Peruaanske sol" + "Peruaanske sol (1863–1985)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json index 224c9386cf0c7..0a0604f64e8d1 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.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -739,7 +739,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Pheiriú" + "Sol Pheiriú" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index 27d857091a7b4..0cbb37c07ecc9 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Sol ùr Pearùthach" + "Sol Pearùthach" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index 5512ab882cfbd..95a14f8d1fcb3 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index 507810727d10a..b1cd2f1d7d102 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "પેરુવિયન ન્યુવો સોલ" + "પેરુવિયન સોલ" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json index e09a54b5d36ca..47f4ace5de610 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.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", 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 8bebcc500b06e..f00bc8de4a0b4 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.27.40", + "Version": "2.1.31.33", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/he.json b/src/Symfony/Component/Intl/Resources/data/currencies/he.json index 114ae41592c11..d96cdde587bf2 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.29.27", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -575,7 +575,7 @@ ], "PEN": [ "PEN", - "סול פרואני חדש" + "סול פרואני" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index 9675026e72b84..507cdf5b59df1 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -471,7 +471,7 @@ ], "PEN": [ "PEN", - "पेरूवियन नुएवो सोल" + "पेरूवियन सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index b96209e5f9584..e43dbcc250e88 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "peruanski novi sol" + "peruanski sol" ], "PES": [ "PES", - "peruanski sol" + "peruanski sol (1863–1965)" ], "PGK": [ "PGK", 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 488f91f824dc8..cc041904caeec 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.27.99", + "Version": "2.1.31.33", "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 ca40323ac2099..1924a821a56b5 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -703,15 +703,15 @@ ], "PEI": [ "PEI", - "Perui inti" + "perui inti" ], "PEN": [ "PEN", - "perui sol nuevo" + "perui sol" ], "PES": [ "PES", - "Perui sol" + "perui sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index d3adee83c020e..0658e8cb13124 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Պերուի նոր սոլ" + "Պերուի սոլ" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/id.json b/src/Symfony/Component/Intl/Resources/data/currencies/id.json index ff47301b346c2..0fd799627f4c9 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -771,7 +771,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json index 39575432be3ea..8565262ae5388 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "CVE": [ "CVE", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json index af456c3fc41e5..44a5dc1659301 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.27.40", + "Version": "2.1.31.33", "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 ff47301b346c2..0fd799627f4c9 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -771,7 +771,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/is.json b/src/Symfony/Component/Intl/Resources/data/currencies/is.json index bd89c39e519ee..d508caa339fc3 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.29.65", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index a5fda55f9e323..07547f98ebd3c 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.28.79", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -692,11 +692,11 @@ ], "PEN": [ "PEN", - "nuovo sol peruviano" + "sol peruviano" ], "PES": [ "PES", - "sol peruviano" + "sol peruviano (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index 114ae41592c11..d96cdde587bf2 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.29.27", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -575,7 +575,7 @@ ], "PEN": [ "PEN", - "סול פרואני חדש" + "סול פרואני" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index 2fc36a74c838b..8079fc9d28d1e 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "ペルー 新ソル" + "ペルー ソル" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index 4c54c0bd40fd0..ff5185ea8c96a 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.29.20", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -639,11 +639,11 @@ ], "PEN": [ "PEN", - "პერუს ახალი სოლი" + "პერუს სოლი" ], "PES": [ "PES", - "პერუს სოლი" + "პერუს სოლი (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json index ac99bdc302080..c30ee2c6d4f6b 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.27.40", + "Version": "2.1.31.33", "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 dfd63ff8ce5c3..392aed692132e 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Перу жаңа солі" + "Перу солі" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json index d52d7254eb2b7..b50c7c2c063de 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.27.40", + "Version": "2.1.31.34", "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 1a9778b6f1e4e..2efd8e0631e14 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.28.79", + "Version": "2.1.31.74", "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 435d3a9ad96a7..b2bcaf4d83c54 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "ಪೆರುವಿಯನ್ ನುಯೆವೊ ಸೊಲ್" + "ಪೆರುವಿಯನ್ ಸೊಲ್" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index 106809aef5a3e..4f5ba3c902620 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.29.22", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -751,11 +751,11 @@ ], "PEN": [ "PEN", - "페루 누에보 솔" + "페루 솔" ], "PES": [ "PES", - "페루 솔" + "페루 솔 (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json index 4d09d7e273d66..d93978851dd8b 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.30.6", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -643,11 +643,11 @@ ], "PEN": [ "PEN", - "پٔریوٗوِیَن نیوٗاوز سولٕز" + "پٔریوٗوِیَن سولٕز" ], "PES": [ "PES", - "پٔریوٗوِیَن سول" + "پٔریوٗوِیَن سول (۱۸۶۳–۱۹۶۵)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json index 6b8b302942d7e..e0f56f2ef2ac1 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "перу нуэво солу" + "перу солу" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index 80795b95a12bf..1b0344cbd92d6 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "Peruaneschen Neie Sol" + "Peruaneschen Sol" ], "PES": [ "PES", - "Peruanesche Sol (1863–1965)" + "Peruaneschen Sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json index b7e1b87d7da85..efbf806e6b426 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.27.40", + "Version": "2.1.31.33", "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 5c353313e5890..e9dbc189f6d1c 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.28.76", + "Version": "2.1.31.74", "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 506f805620ed8..ed012a2e851db 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.27.40", + "Version": "2.1.31.33", "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 e1c88cd5755f4..b6fa542783e3a 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.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -759,7 +759,7 @@ ], "PEN": [ "PEN", - "ເປ​ຣູ​ວຽນ ນູ​ໂວ ໂຊ​ລ໌" + "ເປ​ຣູ​ວຽນ ໂຊ​ລ໌" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index 410c93029b8f5..fd9fcc86067d0 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Peru naujasis solis" + "Peru solis" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json index 1218f8250db71..7018ccecaa234 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.27.40", + "Version": "2.1.31.33", "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 33f5bdb022f01..55de57f6a5626 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -311,7 +311,7 @@ ], "ISK": [ "ISK", - "Īslandes krona" + "Islandes krona" ], "ITL": [ "ITL", @@ -519,7 +519,7 @@ ], "PEN": [ "PEN", - "Peru jaunais sols" + "Peru sols" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json index c2e67c6ad9793..4fd187f90cd6b 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.30.58", + "Version": "2.1.32.59", "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 492db6cdb7c9d..6d4e36f0140fa 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.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index 7d6233fdc208c..de5c698c6316a 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -583,11 +583,11 @@ ], "PEN": [ "PEN", - "Перуански нов сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index eb7dbdb3b0c79..e223352aef725 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "പെറുവിയൻ ന്യൂവോ സോൾ" + "പെറുവിയൻ സോൾ" ], "PES": [ "PES", - "പെറൂവിയൻ സോൾ" + "പെറൂവിയൻ സോൾ (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json index 7276cfe7a16d0..39f345dfe3669 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "перугийн невосоль" + "перугийн соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json index 115ae26c95496..dd1765b4d8e54 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.27.99", + "Version": "2.1.31.33", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json index 3508c60cd667e..66eed58281b88 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "पेरुवियन नुइव्हो सोल" + "पेरुवियन सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json index 9ef5603a4f14e..26f8abf91762f 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PGK": [ "PGK", 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 e4888cca29b37..3f8055c107ba7 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.27.40", + "Version": "2.1.31.33", "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 43167291ea248..27ef127fc7ef8 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.27.40", + "Version": "2.1.31.33", "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 15f9dec491184..7c3d3e56b683a 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.28.76", + "Version": "2.1.32.59", "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 3a734f8df9257..ae65ba21425d1 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.30.50", + "Version": "2.1.33.28", "Names": { "AED": [ "AED", @@ -471,7 +471,7 @@ ], "PEN": [ "PEN", - "ပီရူး နူအီဗိုဆိုးလ်" + "ပီရူး ဆိုးလ်" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json index 86295846587bc..4ce141f94c09c 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.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,15 +775,15 @@ ], "PEI": [ "PEI", - "peruvianske inti" + "peruanske inti" ], "PEN": [ "PEN", - "peruanske nuevo sol" + "peruanske sol" ], "PES": [ "PES", - "peruvianske sol (1863–1965)" + "peruanske sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json index c0f77d708d0f0..e811c7c72f63b 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.27.65", + "Version": "2.1.31.33", "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 3126b42730ee5..981dc50b15cdc 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.29.20", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "पेरूभियाली न्यूभो सोल" + "पेरूभियाली सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json index bd030b9bff83b..4576deb6f986c 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "Peruaanse nieuwe sol" + "Peruaanse sol" ], "PES": [ "PES", - "Peruaanse sol" + "Peruaanse sol (1863–1965)" ], "PGK": [ "PGK", 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 4c726ec0393b9..21fa88b966e6c 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.27.40", + "Version": "2.1.31.33", "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 181f0f2639778..b1c3e571e1bfd 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.27.40", + "Version": "2.1.31.33", "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 0fa1277d7912a..a0c53278f5c79 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.27.40", + "Version": "2.1.31.33", "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 8867f13f220af..fb670110bb265 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.27.40", + "Version": "2.1.31.33", "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 0fa1277d7912a..a0c53278f5c79 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.27.40", + "Version": "2.1.31.33", "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 929be73d0d36b..374e8f87f46a8 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -703,11 +703,11 @@ ], "PEN": [ "PEN", - "peruansk nuevo sol" + "peruansk sol" ], "PES": [ "PES", - "peruansk sol" + "peruansk sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/no.json b/src/Symfony/Component/Intl/Resources/data/currencies/no.json index 86295846587bc..4ce141f94c09c 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.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,15 +775,15 @@ ], "PEI": [ "PEI", - "peruvianske inti" + "peruanske inti" ], "PEN": [ "PEN", - "peruanske nuevo sol" + "peruanske sol" ], "PES": [ "PES", - "peruvianske sol (1863–1965)" + "peruanske sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index 73a1dd4501fd2..b309246d3d0e9 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.27.98", + "Version": "2.1.31.33", "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 21ba3e6d4046f..0a4e2bde6b4e2 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.27.99", + "Version": "2.1.31.33", "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 b7412c4f2f1e3..02638f6d07f14 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.27.78", + "Version": "2.1.31.33", "Names": { "INR": [ "₹", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os.json b/src/Symfony/Component/Intl/Resources/data/currencies/os.json index adb9aa7978154..3df990a9e2a86 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.27.40", + "Version": "2.1.31.33", "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 7fe630ad11808..948f46351eea8 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.27.40", + "Version": "2.1.31.33", "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 e825e3f7f4aa1..7db583d5c465f 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -495,7 +495,7 @@ ], "PEN": [ "PEN", - "ਪੇਰੂਵੀਅਨ ਨਿਊਵੋ ਸੋਲ" + "ਪੇਰੂਵੀਅਨ ਸੋਲ" ], "PGK": [ "PGK", 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 616d4692f19a7..4c529eb08062b 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.27.40", + "Version": "2.1.31.33", "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 3c8ccd7fa4e97..c9de32446a949 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -683,11 +683,11 @@ ], "PEN": [ "PEN", - "nowy sol peruwiański" + "sol peruwiański" ], "PES": [ "PES", - "sol peruwiański" + "sol peruwiański (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json index 60bb7f06f4cee..f0ee1e3188551 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AFN": [ "؋", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json index 851140363ca68..59628b9ccef75 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "Novo sol peruano" + "Sol peruano" ], "PES": [ "PES", 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 7c4bc51a4de9d..b90f0928e65b9 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.27.40", + "Version": "2.1.31.33", "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 8b073d6b23508..bc3677a863473 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.27.40", + "Version": "2.1.31.33", "Names": { "CVE": [ "​", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json index f725c1758e39b..22930077f8447 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.27.40", + "Version": "2.1.31.33", "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 42612416d5e50..46b59e0dfa81c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json index 0573e45752271..756583cf9cc7f 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.27.40", + "Version": "2.1.31.33", "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 335fe3a11b267..b8ec8cac3db27 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json index 439bef558dbc5..f06bdee5b03f5 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.27.40", + "Version": "2.1.31.33", "Names": { "STD": [ "Db", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json index 84b814eb75cd0..313a70bef9c1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "PEN": [ "S\/", 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 bc2d907dd7ee9..51f06f135b0c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BOB": [ "Bs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json index 2d1b810504122..53315a63ed3cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PEN": [ "PEN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json index 88d5ca726efac..c97a076c66e89 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -771,11 +771,11 @@ ], "PEN": [ "PEN", - "nov sol peruan" + "sol peruan" ], "PES": [ "PES", - "sol peruan" + "sol peruan (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json index a7ea2cf6f6f86..a1d4191fca5be 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.27.40", + "Version": "2.1.31.33", "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 b855540f34bee..cb66bd7400e47 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.28.79", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -615,7 +615,7 @@ ], "PEN": [ "PEN", - "sol nou peruvian" + "sol peruvian" ], "PES": [ "PES", 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 115ae26c95496..dd1765b4d8e54 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.27.99", + "Version": "2.1.31.33", "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 3926cb92c34ae..fcc2c67db3df7 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.30.58", + "Version": "2.1.32.59", "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 7a7df0ab6e271..68a7a2b20ca7c 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.29.20", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "Перуанский новый соль" + "Перуанский соль" ], "PES": [ "PES", - "Перуанский соль" + "Перуанский соль (1863–1965)" ], "PGK": [ "PGK", 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 65b017c6825bf..891d7d5080ad1 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.30.5", + "Version": "2.1.31.33", "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 54e54e74172e1..a02f9ad4ab168 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.27.40", + "Version": "2.1.31.33", "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 5d720118ef864..c717725d44be4 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.27.40", + "Version": "2.1.31.33", "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 2cd15cd937a56..d0defa0197f03 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.27.40", + "Version": "2.1.31.33", "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 1b039aa646103..90b7f9b8eb23c 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.27.98", + "Version": "2.1.31.33", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se.json b/src/Symfony/Component/Intl/Resources/data/currencies/se.json index e06f39421ce0a..5d1c1eced42c6 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.27.98", + "Version": "2.1.31.33", "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 0852adfe7f481..bc82881d1e3ba 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.27.40", + "Version": "2.1.31.33", "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 4c19365614838..a9868e816f4df 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.27.40", + "Version": "2.1.31.33", "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 87a460f3a1477..08b31ed67136c 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.29.33", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", - "Peruanski sol" + "Peruanski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index 60676655d206a..28da55f7079d7 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.28.79", + "Version": "2.1.33.28", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "පේරු නියුවෝ සොල්" + "පේරු සොල්" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json index 2d3ba80641586..9e328721035b1 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -671,11 +671,11 @@ ], "PEN": [ "PEN", - "peruánsky nový sol" + "peruánsky sol" ], "PES": [ "PES", - "Peruvský sol" + "peruánsky sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json index c4acd0c16ca33..b1dc180e6ae41 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "perujski novi sol" + "perujski sol" ], "PES": [ "PES", - "perujski sol" + "perujski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json index 97f0c60d983e8..6ba5d7d14ceaa 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.27.98", + "Version": "2.1.31.33", "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 360d5e155d6da..a07daca21535b 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.27.78", + "Version": "2.1.33.76", "Names": { "DJF": [ "DJF", 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 77cd44900c3cc..5348ddead2c23 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.27.40", + "Version": "2.1.31.33", "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 ba1429aa0584c..e4c98ff117869 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.27.40", + "Version": "2.1.31.33", "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 b27b577bbe670..0a4e2bde6b4e2 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.27.40", + "Version": "2.1.31.33", "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 83f075c975d6b..20af1b47a2176 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Sola nuevo-peruane" + "Sola peruane" ], "PGK": [ "PGK", 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 45a167e4209bd..aeb51f388500b 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.27.40", + "Version": "2.1.31.33", "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 5186f98d56454..4d05621cbbcf1 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.28.79", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Перуански нови сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", 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 87a460f3a1477..08b31ed67136c 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.29.33", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", - "Peruanski sol" + "Peruanski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index 1b00d12e9ba0f..a13537bbeea79 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.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "peruansk nuevo sol" + "peruansk sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index 8b89a907fa318..5b27b4d61dd0c 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.28.79", + "Version": "2.1.33.73", "Names": { "AED": [ "AED", @@ -447,7 +447,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol ya Peru" + "Sol ya Peru" ], "PGK": [ "PGK", 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 89e99e13b2df6..3add3fc4c04d6 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.27.99", + "Version": "2.1.31.33", "Names": { "CDF": [ "FC", 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 5c4ab4a1d8bba..423821937904f 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.27.40", + "Version": "2.1.31.33", "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 fc6ee675ea847..17fc215384fed 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.28.79", + "Version": "2.1.32.4", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json index efd56a650e72b..54b5d567dd335 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.27.40", + "Version": "2.1.31.33", "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 979a587ed500f..f8f9a3bd1f891 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.27.40", + "Version": "2.1.31.33", "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 f77daea527e63..1ac4693ff3a90 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.27.40", + "Version": "2.1.31.33", "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 422b85c0ea8c3..3578cc5f6616a 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "పెరువియన్ న్యూవో సోల్" + "పెరువియన్ సోల్" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/th.json b/src/Symfony/Component/Intl/Resources/data/currencies/th.json index e171cf2da4ea0..29a82dce9e584 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -759,11 +759,11 @@ ], "PEN": [ "PEN", - "นูโวซอลเปรู" + "ซอลเปรู" ], "PES": [ "PES", - "ซอลเปรู" + "ซอลเปรู (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json index 07084b93cc186..7e4d938ea753c 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.27.40", + "Version": "2.1.31.33", "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 ab0a8eeabcc6b..1b54832706f72 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.27.99", + "Version": "2.1.31.33", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json index 764db79ba63e1..0b578d6064b99 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.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -447,7 +447,7 @@ ], "PEN": [ "PEN", - "Peruvian Nuevo Sol" + "Peruvian Sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index ae02bcc9713f2..18ab1b744d253 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/to.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.74", "Names": { "AUD": [ "AUD$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json index b82a5ec5a368f..410b322cc3946 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "Peru Nuevo Solü" + "Peru Solü" ], "PES": [ "PES", - "Peru Solu" + "Peru Solü (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json index ae1455ac93303..9bf96fce65e69 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.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "پېرۇ يېڭى سولى" + "پېرۇ سولى" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json index 7b27577f68f44..19a49211eb706 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.29.38", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "перуанський новий сол" + "перуанський сол" ], "PES": [ "PES", - "перуанський сол" + "перуанський сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json index 17d4e257df2a6..207bdd6472541 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.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -443,7 +443,7 @@ ], "PEN": [ "PEN", - "پیروین نیووسول" + "پیرو نیووسول" ], "PGK": [ "PGK", 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 c8d41f8d3d1b7..4a77c41cbba23 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.27.79", + "Version": "2.1.31.33", "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 4deddb9762774..71e2c65329557 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.29.44", + "Version": "2.1.32.60", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Peru yangi soli" + "Peru soli" ], "PGK": [ "PGK", 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 5e5e2aea1cf81..eedceddf658dd 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.27.40", + "Version": "2.1.31.33", "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 7c732b614d48a..8a2a641009a86 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.27.98", + "Version": "2.1.31.86", "Names": { "ANG": [ "ANG", @@ -163,7 +163,7 @@ ], "PEN": [ "PEN", - "Перу нуево сол" + "Перу сол" ], "PYG": [ "PYG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json index 650b131761905..c118fd31e7980 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.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -759,7 +759,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json index 29c645d0c5ffa..2f359e0ba9712 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.27.97", + "Version": "2.1.31.33", "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 6255d054b1c9d..1dcf85530662e 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.27.40", + "Version": "2.1.31.33", "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 0a7177cfa0473..6492e1830d3e8 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.29.54", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index cb70f59e4a8b6..3e7cf35dd1b1a 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.29.84", + "Version": "2.1.33.94", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "秘鲁新索尔" + "秘鲁索尔" ], "PES": [ "PES", 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 8d1392dd36e5b..729ddeec1cffd 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.27.99", + "Version": "2.1.31.33", "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 b5e8f8743dc52..1e66f0f7b68b5 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.27.99", + "Version": "2.1.31.33", "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 b6e2805fea556..55d26cdcdbe5e 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.27.99", + "Version": "2.1.31.33", "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 a30758e677cf0..820cc3d79ed5b 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.27.99", + "Version": "2.1.31.33", "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 13dfe0172797d..444cb328cdc3b 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.28.79", + "Version": "2.1.33.94", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "秘魯新太陽幣" + "秘魯太陽幣" ], "PES": [ "PES", - "秘魯索爾 (1863–1965)" + "秘魯太陽幣 (1863–1965)" ], "PGK": [ "PGK", 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 8d1392dd36e5b..729ddeec1cffd 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.27.99", + "Version": "2.1.31.33", "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 2beaf4c3959d9..74e891449719d 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.27.40", + "Version": "2.1.31.33", "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 2beaf4c3959d9..74e891449719d 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.27.40", + "Version": "2.1.31.33", "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 a30758e677cf0..820cc3d79ed5b 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.27.99", + "Version": "2.1.31.33", "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 607fb136be4f6..d521c949d4b19 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.29.22", + "Version": "2.1.31.74", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index 086768c60a3ef..8d2db7788da0d 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.29.44", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkasies", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ak.json b/src/Symfony/Component/Intl/Resources/data/languages/ak.json index 9f6d5ce2b9ec8..ad106f6edf9b7 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.27.40", + "Version": "2.1.31.33", "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 24dccaaee9206..98b17340c7055 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "አፋርኛ", "ab": "አብሐዚኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar.json b/src/Symfony/Component/Intl/Resources/data/languages/ar.json index 0dee4ffea8271..74979c6bc01ae 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.28.79", + "Version": "2.1.32.86", "Names": { "aa": "الأفارية", "ab": "الأبخازية", 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 6ce492dc16f86..82d0565925051 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.27.40", + "Version": "2.1.31.33", "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 11e849cac8299..02f4cb622add2 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.27.99", + "Version": "2.1.31.33", "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 c683ab735cc45..5bf94a92a107f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "المابودونجونية", "gn": "الغورانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index ec884a5b4730b..1e41e0a97cc77 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.27.40", + "Version": "2.1.31.33", "Names": { "as": "অসমীয়া" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index d151c8b84af61..0b4ebd84d4fc5 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abxaz", 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 d1c274640d466..0eefc58d0b48a 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.27.40", + "Version": "2.1.31.74", "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 7666d419ca93f..1f1e3ee1435f2 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.29.66", + "Version": "2.1.31.86", "Names": { "aa": "афарская", "ab": "абхазская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index 54da08cb87289..d428d2b07d3aa 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.30.6", + "Version": "2.1.33.75", "Names": { "aa": "афар", "ab": "абхазки", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bm.json b/src/Symfony/Component/Intl/Resources/data/languages/bm.json index c696388371eea..8ede2e444b708 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.27.40", + "Version": "2.1.31.33", "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 8acbc3a9c0d20..bf37c5d775249 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.29.44", + "Version": "2.1.32.59", "Names": { "aa": "আফার", "ab": "আবখাজিয়ান", 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 1a2cc3e311158..1ff59d3471dca 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.29.54", + "Version": "2.1.31.33", "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 eae5e9b57c24f..cbf78ad53bf04 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.27.40", + "Version": "2.1.31.33", "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 84c5a55fb7c00..bab1ad52bff06 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.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abkhazeg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index 639a5fecde449..bc6ef1131157c 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "afarski", "ab": "abhaski", 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 170e9ce1ed482..bdd5dff1ac29d 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.28.76", + "Version": "2.1.32.72", "Names": { "aa": "афарски", "ab": "абказијски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ca.json b/src/Symfony/Component/Intl/Resources/data/languages/ca.json index 2d5c92e70acf8..fe141b6a42bcc 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.28.79", + "Version": "2.1.32.59", "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 865d2c4ea66ec..ddbdc6a417316 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.28.76", + "Version": "2.1.31.86", "Names": { "ab": "абхазхойн", "af": "африкаанс", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index dd6a35f6c55de..499aa9441faab 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.28.79", + "Version": "2.1.32.59", "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 b68fbb5c83914..acab563f3eb39 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.30.6", + "Version": "2.1.31.86", "Names": { "aa": "Affareg", "ab": "Abchaseg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/da.json b/src/Symfony/Component/Intl/Resources/data/languages/da.json index aa161584b86c5..a6503c98ee919 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index d030ca22bf536..2660636429c57 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abchasisch", 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 03a8f7d17c660..1e098c3129ca2 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.28.73", + "Version": "2.1.31.33", "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 a3556e398ed02..831515c7f7c8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "ace": "Aceh-Sprache", "ach": "Acholi-Sprache", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json b/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json index 062eb0bcc8bbd..3da27050ccab6 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.27.99", + "Version": "2.1.31.33", "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 0ea5c2aef194b..0eb258e3074a6 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.29.61", + "Version": "2.1.31.34", "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 c901b192dafd3..cfe59ef2ad270 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.28.76", + "Version": "2.1.31.86", "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 aa3d7e1447a4c..a1a7c9602a080 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.28.79", + "Version": "2.1.32.59", "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 abb1d892c18f4..d069c91fa7665 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.30.50", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkhazian", 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 a7b137689fbc9..f5b99c2f5585c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.62", "Names": { "en_US": "United States English", "ro_MD": "Moldovan" 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 f5e58a7d5a284..46b80d548bc70 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "bn": "Bengali", "or": "Oriya" 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 e2a40b0c76a63..4fa11f1a0db24 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.27.40", + "Version": "2.1.31.33", "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 cceb705e89ac3..26f9871d1fa8a 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.27.40", + "Version": "2.1.31.33", "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 9ca4cea58a3f0..6919c3450b0b9 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.28.80", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abjasio", 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 6ac93d2912d0d..8f00375ce4f4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "achenés", "ady": "adigeo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json index 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 e64f710c96bf8..aea2a74554720 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", 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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 12e6a0ef526ad..90879567d13a5 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.27.99", + "Version": "2.1.31.33", "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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 12e6a0ef526ad..90879567d13a5 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.27.99", + "Version": "2.1.31.33", "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 e9ff9dbc3b5b9..84a573c1d4e54 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.27.99", + "Version": "2.1.31.74", "Names": { "ace": "acehnés", "arp": "arapaho", 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 0e0d965f5a289..197517b58b722 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.27.99", + "Version": "2.1.31.33", "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 925b616e27d20..e43ed11f4f5af 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afari", "ab": "abhaasi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index b9c9486b65a11..bddcaedd084ce 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.29.20", + "Version": "2.1.32.59", "Names": { "aa": "afarera", "ab": "abkhazera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index 0446ec74d6b5a..4d5ad095d8d19 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.29.44", + "Version": "2.1.32.59", "Names": { "aa": "آفاری", "ab": "آبخازی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json index 505dd2bf98043..29fe330c6945b 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.29.44", + "Version": "2.1.31.33", "Names": { "ab": "افریکانس", "as": "اسامی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff.json b/src/Symfony/Component/Intl/Resources/data/languages/ff.json index 605f829c246de..ba748b4b041fa 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.27.40", + "Version": "2.1.31.33", "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 cf39b44c81c64..14469b1a29d25 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.29.88", + "Version": "2.1.32.59", "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 af84846b1457c..96ce2d693d970 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.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abkhasiskt", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 9d0f184f88fd9..0223e947712cc 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.28.79", + "Version": "2.1.32.59", "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 6ec770c4b71f9..63733eab3cf7a 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.27.40", + "Version": "2.1.31.33", "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 6d987ac30068f..958c71ced3df5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ady": "adygué", "ang": "vieil anglais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json index 7a98f48b07ba2..5d3416b877b6a 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.27.96", + "Version": "2.1.32.48", "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 e13ecce5a1033..9633fb2570e65 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.29.44", + "Version": "2.1.31.86", "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 221745625d8a5..b18170b0510fa 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "Afáiris", "ab": "Abcáisis", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index b12ad19274d55..680d09d476781 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.28.76", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abchasais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gl.json b/src/Symfony/Component/Intl/Resources/data/languages/gl.json index 047eff3c5f595..ab0e42e7a538e 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhazo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index 17ce96e8a143a..4cc442655915a 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "અફાર", "ab": "અબખાજિયન", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gv.json b/src/Symfony/Component/Intl/Resources/data/languages/gv.json index d273e28e43fc6..b03613b0eb179 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.27.40", + "Version": "2.1.31.34", "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 1728e5c584134..9ab48c09ba3ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amharik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 66cfacc7b06ab..471c68fa514e9 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.29.27", + "Version": "2.1.32.59", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 9ba864904de11..52f0bac67277b 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index 4ef69f857ad54..71f83b09bc3b9 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.28.79", + "Version": "2.1.32.59", "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 74317019b49ee..73bf0d5b71270 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abház", @@ -329,7 +329,7 @@ "nan": "min nan kínai", "nap": "nápolyi", "naq": "nama", - "nb": "norvég (bokmál)", + "nb": "norvég (bokmål)", "nd": "északi ndebele", "nds": "alsónémet", "nds_NL": "alsószász", @@ -341,7 +341,7 @@ "nl": "holland", "nl_BE": "flamand", "nmg": "ngumba", - "nn": "norvég (nynrosk)", + "nn": "norvég (nynorsk)", "nnh": "ngiemboon", "no": "norvég", "nog": "nogaj", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index b89bb266cb97a..6217545392fa5 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "աֆարերեն", "ab": "աբխազերեն", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/id.json b/src/Symfony/Component/Intl/Resources/data/languages/id.json index e289c0af4488d..361985033eaaf 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.28.79", + "Version": "2.1.32.59", "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 7cf0a6fbfecb4..a24fbf9ac6648 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amariikị", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ii.json b/src/Symfony/Component/Intl/Resources/data/languages/ii.json index 2d50558f6009d..729aecf425d53 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.27.40", + "Version": "2.1.31.33", "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 e289c0af4488d..361985033eaaf 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.28.79", + "Version": "2.1.32.59", "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 14b2714c91da5..b6e9135b16f75 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.29.65", + "Version": "2.1.32.59", "Names": { "aa": "afár", "ab": "abkasíska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index 095e153b56768..0f6e9202f458b 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.28.79", + "Version": "2.1.32.60", "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 66cfacc7b06ab..471c68fa514e9 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.29.27", + "Version": "2.1.32.59", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index 95a2ff27d36b6..473b3cf86c025 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "アファル語", "ab": "アブハズ語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 6c83bebe2fba0..e86244f61bcc3 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.29.20", + "Version": "2.1.32.59", "Names": { "aa": "აფარი", "ab": "აფხაზური", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ki.json b/src/Symfony/Component/Intl/Resources/data/languages/ki.json index ea54607c124c5..3f5d74cf7d1c7 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.27.40", + "Version": "2.1.31.33", "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 6bab52fe5b4c1..8f04a1b389e44 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "афар тілі", "ab": "абхаз тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kl.json b/src/Symfony/Component/Intl/Resources/data/languages/kl.json index bfc65cc587081..b566d648bab7f 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.27.40", + "Version": "2.1.31.34", "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 6a111324f7fa5..d028f580d5491 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.28.79", + "Version": "2.1.31.74", "Names": { "aa": "អាហ្វារ", "ab": "អាប់ខាហ៊្សាន", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kn.json b/src/Symfony/Component/Intl/Resources/data/languages/kn.json index 6ef0288f70e4d..e123c78e706d6 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "ಅಫಾರ್", "ab": "ಅಬ್ಖಾಜಿಯನ್", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ko.json b/src/Symfony/Component/Intl/Resources/data/languages/ko.json index 1a884d7b2d1af..6d03a8fb02a2e 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.29.22", + "Version": "2.1.32.59", "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 63a8efc8a0ab8..0fb9d6c62b53a 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.30.6", + "Version": "2.1.31.86", "Names": { "aa": "اَفار", "ab": "اَبخازِیان", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kw.json b/src/Symfony/Component/Intl/Resources/data/languages/kw.json index 8609e7b909fc6..5a21f76f32508 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.27.40", + "Version": "2.1.31.33", "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 088335056d852..3ceebcde0dae9 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "афарча", "ab": "абхазча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index c4d69e05f533e..c2921f1ad9071 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.28.76", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abchasesch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lg.json b/src/Symfony/Component/Intl/Resources/data/languages/lg.json index a2eaa292549a7..4a151629706bd 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.27.40", + "Version": "2.1.31.33", "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 fa76aafb4dcd9..ea76e41087e18 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.28.76", + "Version": "2.1.31.74", "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 2f04593244677..7cc478c468c6f 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.28.79", + "Version": "2.1.31.86", "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 0f65d5c533c77..7843c7ddac482 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.28.79", + "Version": "2.1.32.59", "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 e79b5d76b1328..dc6bca17821bd 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.27.40", + "Version": "2.1.31.33", "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 2b164efa5d34b..95a9d133e8af5 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afāru", "ab": "abhāzu", @@ -204,7 +204,7 @@ "ilo": "iloku", "inh": "ingušu", "io": "ido", - "is": "īslandiešu", + "is": "islandiešu", "it": "itāļu", "iu": "inuītu", "ja": "japāņu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/meta.json b/src/Symfony/Component/Intl/Resources/data/languages/meta.json index 3cba1f2dbda60..5fa96ae47fd2a 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.30.58", + "Version": "2.1.32.59", "Languages": [ "aa", "ab", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mg.json b/src/Symfony/Component/Intl/Resources/data/languages/mg.json index 0b7544c733a53..5ec922ef5f8d8 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.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amharika", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index 09907f9fc8ace..7d1cd8032d63a 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.28.79", + "Version": "2.1.32.59", "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 4ee9b6b7f4b38..57d5e250c3573 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "അഫാർ", "ab": "അബ്‌ഖാസിയൻ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mn.json b/src/Symfony/Component/Intl/Resources/data/languages/mn.json index f7ce200ffe2af..75e86f0eb4440 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "афар", "ab": "абхаз", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index 0d4636b584dc1..5e9e66fe04b70 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.27.99", + "Version": "2.1.31.33", "Names": { "sw_CD": "swahili (R. D. Congo)", "wal": "wolaytta" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index 56a003c30b779..211568c3a3163 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "अफार", "ab": "अबखेजियन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ms.json b/src/Symfony/Component/Intl/Resources/data/languages/ms.json index f0f98a73de80c..9a591b35503bb 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "aa", "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 6cc0838692832..121778ad2cc74 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.28.76", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkażjan", @@ -467,7 +467,7 @@ "uk": "Ukren", "umb": "Umbundu", "und": "Lingwa Mhix Magħrufa", - "ur": "ur", + "ur": "Urdu", "uz": "Uzbek", "vai": "Vai", "ve": "Venda", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/my.json b/src/Symfony/Component/Intl/Resources/data/languages/my.json index cfa1930542ce9..ba92b5951729b 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.30.50", + "Version": "2.1.33.28", "Names": { "aa": "အာဖာ", "ab": "အဘ်ခါဇီရာ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index c634ee84e37d0..a35dcc3f705e7 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.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nd.json b/src/Symfony/Component/Intl/Resources/data/languages/nd.json index 0231de649a3c9..bd952b48c1dc6 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.27.65", + "Version": "2.1.31.33", "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 2ebb04a5f6d3b..87f567ca6c1e3 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.29.20", + "Version": "2.1.32.59", "Names": { "aa": "अफार", "ab": "अब्खाजियाली", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 742830f83b0aa..2fc0c86130cbc 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.28.79", + "Version": "2.1.32.59", "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 d33c2de1d4f6d..3cf8d939144f2 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.28.76", + "Version": "2.1.31.86", "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 c634ee84e37d0..a35dcc3f705e7 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.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index a2e7bea5d4349..a3e99b7071fc9 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.27.98", + "Version": "2.1.31.33", "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 8ce434f750a2d..ae839e43f3f7f 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.27.78", + "Version": "2.1.31.33", "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 a3332c1dcecc4..aad819e420369 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.27.40", + "Version": "2.1.31.33", "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 516095e57d500..c404ba0dfb6e0 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "ਅਫ਼ਾਰ", "ab": "ਅਬਖਾਜ਼ੀਅਨ", 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 1d8593b3c9df4..ae9815ff7e5c3 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.27.40", + "Version": "2.1.31.33", "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 82fc08f1402fa..2b28c05462953 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.28.79", + "Version": "2.1.32.59", "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 08197bb78a89b..d45cf6ddea551 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.27.40", + "Version": "2.1.31.33", "Names": { "am": "امهاري", "ar": "عربي", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index cb35e181ce76c..8d83a8794aa26 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abcázio", 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 352d0f52dcff5..de8bcfee0c978 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.29.54", + "Version": "2.1.31.86", "Names": { "af": "africanês", "ang": "inglês antigo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index 17b384463b8ae..5ef4d43ea09cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "af": "Afrikaans Simi", "am": "Amarico Simi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rm.json b/src/Symfony/Component/Intl/Resources/data/languages/rm.json index 19e8366bab68f..cf112488801e1 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.28.76", + "Version": "2.1.31.86", "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 dbed02f9660a8..268f8fae38136 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.27.40", + "Version": "2.1.31.33", "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 2bd979f0aec1d..73c9bd7b6cf06 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.28.79", + "Version": "2.1.32.60", "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 0d4636b584dc1..5e9e66fe04b70 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.27.99", + "Version": "2.1.31.33", "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 d4d64076a0db2..c36ad831b4f3d 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.29.20", + "Version": "2.1.32.59", "Names": { "aa": "афарский", "ab": "абхазский", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rw.json b/src/Symfony/Component/Intl/Resources/data/languages/rw.json index 2c6d75d06d046..6b0b3fa0dcc75 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.27.98", + "Version": "2.1.31.33", "Names": { "af": "Ikinyafurikaneri", "am": "Inyamuhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se.json b/src/Symfony/Component/Intl/Resources/data/languages/se.json index 3b475b85413a8..c68daf92ac58a 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.27.98", + "Version": "2.1.31.33", "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 6cd2a41f577f5..cd498de8aebb2 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.27.78", + "Version": "2.1.31.33", "Names": { "ace": "ačehgiella", "ar_001": "standárda arábagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sg.json b/src/Symfony/Component/Intl/Resources/data/languages/sg.json index a003e9c89b28a..746e275c96207 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.27.40", + "Version": "2.1.31.33", "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 7ee03cd9195fd..bea1b28b6d0e5 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.29.33", + "Version": "2.1.32.73", "Names": { "aa": "afarski", "ab": "abhaski", 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 825f2b84340b4..394d47783c42e 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.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index d533dbac3c5b6..b093295e4d9ec 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.28.79", + "Version": "2.1.33.28", "Names": { "aa": "අෆාර්", "ab": "ඇබ්කාසියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index 928b241c0e3ff..0f11fbeb50fdb 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarčina", "ab": "abcházčina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index e056e3154187a..014888e52d4e5 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.28.79", + "Version": "2.1.32.59", "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 f22310e3b129f..656d3d1312e52 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.27.98", + "Version": "2.1.31.33", "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 2649b046a0f03..c5166f963a4d4 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.27.78", + "Version": "2.1.33.76", "Names": { "ak": "Akan", "am": "Axmaari", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index 3f938b335d63e..261a8f6be2697 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.28.79", + "Version": "2.1.32.59", "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 764d853d5c82f..ffd906d11ab1c 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.28.79", + "Version": "2.1.32.73", "Names": { "aa": "афарски", "ab": "абхаски", 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 8949e45179a21..6f3416b15afd0 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.27.99", + "Version": "2.1.31.33", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json index 8949e45179a21..6f3416b15afd0 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.27.99", + "Version": "2.1.31.33", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json index 5519983d021a0..c4883442ed0fb 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.27.99", + "Version": "2.1.31.33", "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 62cc878970c77..f34685057f834 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.27.99", + "Version": "2.1.31.33", "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 7ee03cd9195fd..bea1b28b6d0e5 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.29.33", + "Version": "2.1.32.73", "Names": { "aa": "afarski", "ab": "abhaski", 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 825f2b84340b4..394d47783c42e 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.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json index d31b2eed57054..da8f6ebd4c701 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.29.33", + "Version": "2.1.31.33", "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 27a8d96517ae3..c4bab0605dd84 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.29.33", + "Version": "2.1.31.33", "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 d31b2eed57054..da8f6ebd4c701 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.29.33", + "Version": "2.1.31.33", "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 62cc878970c77..f34685057f834 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.27.99", + "Version": "2.1.31.33", "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 87961720fa663..34d9a36ec2d28 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.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abchaziska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json index 8eab93efde8dc..67aa9a3dfd839 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "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 1eed0dc1f65b6..65bcc190ce6b2 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.28.79", + "Version": "2.1.33.73", "Names": { "aa": "Kiafar", "ab": "Kiabkhazi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json index e11d34e5d1077..359bace3ef78e 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.27.99", + "Version": "2.1.31.33", "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 3a4912794a5cf..8975ae912c8db 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ain": "ain", "ar_001": "Kiarabu cha Sasa Kilichosanifishwa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index f2879d29f23d0..3e428d2f596b9 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.28.79", + "Version": "2.1.32.4", "Names": { "aa": "அஃபார்", "ab": "அப்காஜியான்", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/te.json b/src/Symfony/Component/Intl/Resources/data/languages/te.json index 2b6f7ff027bcf..b72e22a7843a2 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.28.79", + "Version": "2.1.31.86", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 605f511152614..4167755d166ab 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "อะฟาร์", "ab": "อับคาซ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ti.json b/src/Symfony/Component/Intl/Resources/data/languages/ti.json index a731b83f19c04..952822520b3c8 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.27.40", + "Version": "2.1.31.33", "Names": { "af": "አፍሪቃንሰኛ", "am": "አምሐረኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index fb616654e5b2e..4a47eb80f5026 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.28.79", + "Version": "2.1.31.86", "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 6f25aee683399..4cd9e92e39648 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.27.98", + "Version": "2.1.31.74", "Names": { "aa": "lea fakaʻafāla", "ab": "lea fakaʻapakasia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tr.json b/src/Symfony/Component/Intl/Resources/data/languages/tr.json index 27c4d3dfd863a..90cbaf05068e1 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abhazca", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ug.json b/src/Symfony/Component/Intl/Resources/data/languages/ug.json index 2fe1313901290..736c3f10cbdf5 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.28.76", + "Version": "2.1.31.86", "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 25f6fe6dc1d69..2733f4f966c69 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.29.38", + "Version": "2.1.32.60", "Names": { "aa": "афарська", "ab": "абхазька", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index 13c5a59f451de..d04f1a79aa339 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "افار", "ab": "ابقازیان", 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 4eca2e13cff88..22c95d160ba66 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.27.79", + "Version": "2.1.31.33", "Names": { "af": "افریقی", "ar_001": "جدید معیاری عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index ae94c1b105baa..dded4b3eba58a 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.29.44", + "Version": "2.1.32.60", "Names": { "ab": "abxaz", "ace": "achin", 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 5cdb32c2314cf..bf91ecabc3669 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.27.40", + "Version": "2.1.31.33", "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 d8e7999a5b351..e6f44f99ef2fe 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.27.98", + "Version": "2.1.31.86", "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 a00caa7d30aa4..4606db303bde8 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.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yi.json b/src/Symfony/Component/Intl/Resources/data/languages/yi.json index 5d6ceb561d890..24122929c5c73 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.27.97", + "Version": "2.1.31.33", "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 56764681b200e..95d5e1f6408b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "af": "Èdè Afrikani", "ak": "Èdè Akani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json index 60eaa605654a2..ab5b6bcd53089 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "da": "Èdè Ilɛ̀ Denmark", "de": "Èdè Ilɛ̀ Gemani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index 5c3c12bbf8d67..b5d13c0b7ca7c 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.29.84", + "Version": "2.1.33.94", "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 d8074a1c5f82f..11039290dcac2 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.27.99", + "Version": "2.1.31.33", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json index de0da4fe85a8e..c675d365d6fc6 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.28.79", + "Version": "2.1.33.94", "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 d8074a1c5f82f..11039290dcac2 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.27.99", + "Version": "2.1.31.33", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 3099d5f142d93..758eba6aa2711 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.29.22", + "Version": "2.1.31.74", "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 770073ca4b41c..062f26c9ed51f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -71,7 +71,7 @@ "ce": "Tsjetsjen", "ce_RU": "Tsjetsjen (Rusland)", "cs": "Tsjeggies", - "cs_CZ": "Tsjeggies (Tjeggiese Republiek)", + "cs_CZ": "Tsjeggies (Tjeggië)", "cy": "Wallies", "cy_GB": "Wallies (Verenigde Koninkryk)", "da": "Deens", @@ -201,6 +201,7 @@ "es_AR": "Spaans (Argentinië)", "es_BO": "Spaans (Bolivië)", "es_BR": "Spaans (Brasilië)", + "es_BZ": "Spaans (Belize)", "es_CL": "Spaans (Chili)", "es_CO": "Spaans (Colombië)", "es_CR": "Spaans (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaans (Switserland)", "it_IT": "Italiaans (Italië)", "it_SM": "Italiaans (San Marino)", + "it_VA": "Italiaans (Vatikaanstad)", "ja": "Japannees", "ja_JP": "Japannees (Japan)", "ka": "Georgies", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ak.json b/src/Symfony/Component/Intl/Resources/data/locales/ak.json index 17b3e131f94ba..432958bb45f30 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ak.json @@ -146,6 +146,7 @@ "es_AR": "Spain kasa (Agyɛntina)", "es_BO": "Spain kasa (Bolivia)", "es_BR": "Spain kasa (Brazil)", + "es_BZ": "Spain kasa (Beliz)", "es_CL": "Spain kasa (Kyili)", "es_CO": "Spain kasa (Kolombia)", "es_CR": "Spain kasa (Kɔsta Rika)", @@ -231,6 +232,7 @@ "it_CH": "Italy kasa (Swetzaland)", "it_IT": "Italy kasa (Itali)", "it_SM": "Italy kasa (San Marino)", + "it_VA": "Italy kasa (Vatican Man)", "ja": "Gyapan kasa", "ja_JP": "Gyapan kasa (Gyapan)", "km": "Kambodia kasa", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index 08f00de6f6828..cf6748575d056 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -71,7 +71,7 @@ "ce": "ችችን", "ce_RU": "ችችን (ራሽያ)", "cs": "ቼክኛ", - "cs_CZ": "ቼክኛ (ቼክ ሪፑብሊክ)", + "cs_CZ": "ቼክኛ (ቼቺያ)", "cy": "ወልሽ", "cy_GB": "ወልሽ (እንግሊዝ)", "da": "ዴኒሽ", @@ -201,6 +201,7 @@ "es_AR": "ስፓንሽኛ (አርጀንቲና)", "es_BO": "ስፓንሽኛ (ቦሊቪያ)", "es_BR": "ስፓንሽኛ (ብራዚል)", + "es_BZ": "ስፓንሽኛ (ቤሊዘ)", "es_CL": "ስፓንሽኛ (ቺሊ)", "es_CO": "ስፓንሽኛ (ኮሎምቢያ)", "es_CR": "ስፓንሽኛ (ኮስታ ሪካ)", @@ -327,6 +328,7 @@ "it_CH": "ጣሊያንኛ (ስዊዘርላንድ)", "it_IT": "ጣሊያንኛ (ጣሊያን)", "it_SM": "ጣሊያንኛ (ሳን ማሪኖ)", + "it_VA": "ጣሊያንኛ (ቫቲካን ከተማ)", "ja": "ጃፓንኛ", "ja_JP": "ጃፓንኛ (ጃፓን)", "ka": "ጆርጂያን", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index 7776b8c547f19..a3abce9de4085 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -71,7 +71,7 @@ "ce": "الشيشانية", "ce_RU": "الشيشانية (روسيا)", "cs": "التشيكية", - "cs_CZ": "التشيكية (جمهورية التشيك)", + "cs_CZ": "التشيكية (التشيك)", "cy": "الويلزية", "cy_GB": "الويلزية (المملكة المتحدة)", "da": "الدانماركية", @@ -201,6 +201,7 @@ "es_AR": "الإسبانية (الأرجنتين)", "es_BO": "الإسبانية (بوليفيا)", "es_BR": "الإسبانية (البرازيل)", + "es_BZ": "الإسبانية (بليز)", "es_CL": "الإسبانية (تشيلي)", "es_CO": "الإسبانية (كولومبيا)", "es_CR": "الإسبانية (كوستاريكا)", @@ -327,6 +328,7 @@ "it_CH": "الإيطالية (سويسرا)", "it_IT": "الإيطالية (إيطاليا)", "it_SM": "الإيطالية (سان مارينو)", + "it_VA": "الإيطالية (الفاتيكان)", "ja": "اليابانية", "ja_JP": "اليابانية (اليابان)", "ka": "الجورجية", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 7545e126790e0..31113ff440738 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -71,7 +71,7 @@ "ce": "çeçen", "ce_RU": "çeçen (Rusiya)", "cs": "çex", - "cs_CZ": "çex (Çex Respublikası)", + "cs_CZ": "çex (Çexiya)", "cy": "uels", "cy_GB": "uels (Birləşmiş Krallıq)", "da": "danimarka", @@ -201,6 +201,7 @@ "es_AR": "ispan (Argentina)", "es_BO": "ispan (Boliviya)", "es_BR": "ispan (Braziliya)", + "es_BZ": "ispan (Beliz)", "es_CL": "ispan (Çili)", "es_CO": "ispan (Kolumbiya)", "es_CR": "ispan (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italyan (İsveçrə)", "it_IT": "italyan (İtaliya)", "it_SM": "italyan (San-Marino)", + "it_VA": "italyan (Vatikan)", "ja": "yapon", "ja_JP": "yapon (Yaponiya)", "ka": "gürcü", 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 f66cd23b36666..2519e5de3fd47 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -71,7 +71,7 @@ "ce": "чечен", "ce_RU": "чечен (Русија)", "cs": "чех", - "cs_CZ": "чех (Чех Республикасы)", + "cs_CZ": "чех (Чехија)", "cy": "уелс", "cy_GB": "уелс (Бирләшмиш Краллыг)", "da": "данимарка", @@ -201,6 +201,7 @@ "es_AR": "испан (Арҝентина)", "es_BO": "испан (Боливија)", "es_BR": "испан (Бразилија)", + "es_BZ": "испан (Белиз)", "es_CL": "испан (Чили)", "es_CO": "испан (Колумбија)", "es_CR": "испан (Коста Рика)", @@ -326,6 +327,7 @@ "it_CH": "италјан (Исвечрә)", "it_IT": "италјан (Италија)", "it_SM": "италјан (Сан-Марино)", + "it_VA": "италјан (Ватикан)", "ja": "јапон", "ja_JP": "јапон (Јапонија)", "ka": "ҝүрҹү", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/be.json b/src/Symfony/Component/Intl/Resources/data/locales/be.json index 547b830d53562..fdb7430596e88 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -201,6 +201,7 @@ "es_AR": "іспанская (Аргенціна)", "es_BO": "іспанская (Балівія)", "es_BR": "іспанская (Бразілія)", + "es_BZ": "іспанская (Беліз)", "es_CL": "іспанская (Чылі)", "es_CO": "іспанская (Калумбія)", "es_CR": "іспанская (Коста-Рыка)", @@ -327,6 +328,7 @@ "it_CH": "італьянская (Швейцарыя)", "it_IT": "італьянская (Італія)", "it_SM": "італьянская (Сан-Марына)", + "it_VA": "італьянская (Ватыкан)", "ja": "японская", "ja_JP": "японская (Японія)", "ka": "грузінская", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index 77d00aac3428e..c5ad75a2418a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -71,7 +71,7 @@ "ce": "чеченски", "ce_RU": "чеченски (Русия)", "cs": "чешки", - "cs_CZ": "чешки (Чешка република)", + "cs_CZ": "чешки (Чехия)", "cy": "уелски", "cy_GB": "уелски (Обединеното кралство)", "da": "датски", @@ -201,6 +201,7 @@ "es_AR": "испански (Аржентина)", "es_BO": "испански (Боливия)", "es_BR": "испански (Бразилия)", + "es_BZ": "испански (Белиз)", "es_CL": "испански (Чили)", "es_CO": "испански (Колумбия)", "es_CR": "испански (Коста Рика)", @@ -327,6 +328,7 @@ "it_CH": "италиански (Швейцария)", "it_IT": "италиански (Италия)", "it_SM": "италиански (Сан Марино)", + "it_VA": "италиански (Ватикан)", "ja": "японски", "ja_JP": "японски (Япония)", "ka": "грузински", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bm.json b/src/Symfony/Component/Intl/Resources/data/locales/bm.json index 259198f81bdd9..d96acf0512900 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bm.json @@ -148,6 +148,7 @@ "es_AR": "esipaɲolkan (Arizantin)", "es_BO": "esipaɲolkan (Bolivi)", "es_BR": "esipaɲolkan (Berezili)", + "es_BZ": "esipaɲolkan (Belizi)", "es_CL": "esipaɲolkan (Sili)", "es_CO": "esipaɲolkan (Kolombi)", "es_CR": "esipaɲolkan (Kɔsitarika)", @@ -233,6 +234,7 @@ "it_CH": "italikan (Suwisi)", "it_IT": "italikan (Itali)", "it_SM": "italikan (Marini-Senu)", + "it_VA": "italikan (Vatikaŋ)", "ja": "zapɔnekan", "ja_JP": "zapɔnekan (Zapɔn)", "km": "kambojikan", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index 9f5fdd4e739a0..c7575e8be7d72 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -71,7 +71,7 @@ "ce": "চেচেন", "ce_RU": "চেচেন (রাশিয়া)", "cs": "চেক", - "cs_CZ": "চেক (চেক প্রজাতন্ত্র)", + "cs_CZ": "চেক (চেচিয়া)", "cy": "ওয়েলশ", "cy_GB": "ওয়েলশ (যুক্তরাজ্য)", "da": "ডেনিশ", @@ -201,6 +201,7 @@ "es_AR": "স্প্যানিশ (আর্জেন্টিনা)", "es_BO": "স্প্যানিশ (বলিভিয়া)", "es_BR": "স্প্যানিশ (ব্রাজিল)", + "es_BZ": "স্প্যানিশ (বেলিজ)", "es_CL": "স্প্যানিশ (চিলি)", "es_CO": "স্প্যানিশ (কলম্বিয়া)", "es_CR": "স্প্যানিশ (কোস্টারিকা)", @@ -327,6 +328,7 @@ "it_CH": "ইতালিয় (সুইজারল্যান্ড)", "it_IT": "ইতালিয় (ইতালি)", "it_SM": "ইতালিয় (সান মারিনো)", + "it_VA": "ইতালিয় (ভ্যাটিকান সিটি)", "ja": "জাপানি", "ja_JP": "জাপানি (জাপান)", "ka": "জর্জিয়ান", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index a6acea20c266d..6f27c171101f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -201,6 +201,7 @@ "es_AR": "spagnoleg (Arcʼhantina)", "es_BO": "spagnoleg (Bolivia)", "es_BR": "spagnoleg (Brazil)", + "es_BZ": "spagnoleg (Belize)", "es_CL": "spagnoleg (Chile)", "es_CO": "spagnoleg (Kolombia)", "es_CR": "spagnoleg (Costa Rica)", @@ -322,6 +323,7 @@ "it_CH": "italianeg (Suis)", "it_IT": "italianeg (Italia)", "it_SM": "italianeg (San Marino)", + "it_VA": "italianeg (Vatikan)", "ja": "japaneg", "ja_JP": "japaneg (Japan)", "ka": "jorjianeg", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs.json b/src/Symfony/Component/Intl/Resources/data/locales/bs.json index e51d94b7a6086..d4b8fc85f5302 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -71,7 +71,7 @@ "ce": "čečenski", "ce_RU": "čečenski (Rusija)", "cs": "češki", - "cs_CZ": "češki (Češka Republika)", + "cs_CZ": "češki (Češka)", "cy": "velški", "cy_GB": "velški (Velika Britanija)", "da": "danski", @@ -201,6 +201,7 @@ "es_AR": "španski (Argentina)", "es_BO": "španski (Bolivija)", "es_BR": "španski (Brazil)", + "es_BZ": "španski (Belize)", "es_CL": "španski (Čile)", "es_CO": "španski (Kolumbija)", "es_CR": "španski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "talijanski (Švicarska)", "it_IT": "talijanski (Italija)", "it_SM": "talijanski (San Marino)", + "it_VA": "talijanski (Vatikan)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", 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 1f6527bc197ad..a240fe77bda56 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарска)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапански", "ja_JP": "јапански (Јапан)", "ka": "грузијски", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index 48c89ac262b94..28f4fa80a5d4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -71,7 +71,7 @@ "ce": "txetxè", "ce_RU": "txetxè (Rússia)", "cs": "txec", - "cs_CZ": "txec (República Txeca)", + "cs_CZ": "txec (Txèquia)", "cy": "gal·lès", "cy_GB": "gal·lès (Regne Unit)", "da": "danès", @@ -201,6 +201,7 @@ "es_AR": "espanyol (Argentina)", "es_BO": "espanyol (Bolívia)", "es_BR": "espanyol (Brasil)", + "es_BZ": "espanyol (Belize)", "es_CL": "espanyol (Xile)", "es_CO": "espanyol (Colòmbia)", "es_CR": "espanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italià (Suïssa)", "it_IT": "italià (Itàlia)", "it_SM": "italià (San Marino)", + "it_VA": "italià (Ciutat del Vaticà)", "ja": "japonès", "ja_JP": "japonès (Japó)", "ka": "georgià", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ce.json b/src/Symfony/Component/Intl/Resources/data/locales/ce.json index dcaf490a4f521..19cf5626ce6b2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ce.json @@ -201,6 +201,7 @@ "es_AR": "испанхойн (Аргентина)", "es_BO": "испанхойн (Боливи)", "es_BR": "испанхойн (Бразили)", + "es_BZ": "испанхойн (Белиз)", "es_CL": "испанхойн (Чили)", "es_CO": "испанхойн (Колумби)", "es_CR": "испанхойн (Коста-Рика)", @@ -320,6 +321,7 @@ "it_CH": "итальянийн (Швейцари)", "it_IT": "итальянийн (Итали)", "it_SM": "итальянийн (Сан-Марино)", + "it_VA": "итальянийн (Ватикан)", "ja": "японийн", "ja_JP": "японийн (Япони)", "ka": "гуьржийн", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index e067c33130ee4..e67b6d54a6020 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -71,7 +71,7 @@ "ce": "čečenština", "ce_RU": "čečenština (Rusko)", "cs": "čeština", - "cs_CZ": "čeština (Česká republika)", + "cs_CZ": "čeština (Česko)", "cy": "velština", "cy_GB": "velština (Spojené království)", "da": "dánština", @@ -201,6 +201,7 @@ "es_AR": "španělština (Argentina)", "es_BO": "španělština (Bolívie)", "es_BR": "španělština (Brazílie)", + "es_BZ": "španělština (Belize)", "es_CL": "španělština (Chile)", "es_CO": "španělština (Kolumbie)", "es_CR": "španělština (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italština (Švýcarsko)", "it_IT": "italština (Itálie)", "it_SM": "italština (San Marino)", + "it_VA": "italština (Vatikán)", "ja": "japonština", "ja_JP": "japonština (Japonsko)", "ka": "gruzínština", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index aee2d0676e705..5970c5932d929 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -71,7 +71,7 @@ "ce": "Tsietsieneg", "ce_RU": "Tsietsieneg (Rwsia)", "cs": "Tsieceg", - "cs_CZ": "Tsieceg (Gweriniaeth Tsiec)", + "cs_CZ": "Tsieceg (Tsiecia)", "cy": "Cymraeg", "cy_GB": "Cymraeg (Y Deyrnas Unedig)", "da": "Daneg", @@ -201,6 +201,7 @@ "es_AR": "Sbaeneg (Yr Ariannin)", "es_BO": "Sbaeneg (Bolifia)", "es_BR": "Sbaeneg (Brasil)", + "es_BZ": "Sbaeneg (Belize)", "es_CL": "Sbaeneg (Chile)", "es_CO": "Sbaeneg (Colombia)", "es_CR": "Sbaeneg (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Eidaleg (Y Swistir)", "it_IT": "Eidaleg (Yr Eidal)", "it_SM": "Eidaleg (San Marino)", + "it_VA": "Eidaleg (Y Fatican)", "ja": "Japaneeg", "ja_JP": "Japaneeg (Japan)", "ka": "Georgeg", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/da.json b/src/Symfony/Component/Intl/Resources/data/locales/da.json index 67056cbbf0280..93feab6ff7f7f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasilien)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Schweiz)", "it_IT": "italiensk (Italien)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de.json b/src/Symfony/Component/Intl/Resources/data/locales/de.json index 6c7f54faff7ac..621bd8a0d1f4e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -71,7 +71,7 @@ "ce": "Tschetschenisch", "ce_RU": "Tschetschenisch (Russland)", "cs": "Tschechisch", - "cs_CZ": "Tschechisch (Tschechische Republik)", + "cs_CZ": "Tschechisch (Tschechien)", "cy": "Walisisch", "cy_GB": "Walisisch (Vereinigtes Königreich)", "da": "Dänisch", @@ -201,6 +201,7 @@ "es_AR": "Spanisch (Argentinien)", "es_BO": "Spanisch (Bolivien)", "es_BR": "Spanisch (Brasilien)", + "es_BZ": "Spanisch (Belize)", "es_CL": "Spanisch (Chile)", "es_CO": "Spanisch (Kolumbien)", "es_CR": "Spanisch (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italienisch (Schweiz)", "it_IT": "Italienisch (Italien)", "it_SM": "Italienisch (San Marino)", + "it_VA": "Italienisch (Vatikanstadt)", "ja": "Japanisch", "ja_JP": "Japanisch (Japan)", "ka": "Georgisch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index 9c83d9f1616f4..8a4fe9f95bb4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -190,6 +190,7 @@ "es_AR": "ཨིས་པེ་ནིཤ་ཁ (ཨར་ཇེན་ཊི་ན)", "es_BO": "ཨིས་པེ་ནིཤ་ཁ (བྷེ་ལི་བི་ཡ)", "es_BR": "ཨིས་པེ་ནིཤ་ཁ (བྲ་ཛིལ)", + "es_BZ": "ཨིས་པེ་ནིཤ་ཁ (བྷེ་ལིཛ)", "es_CL": "ཨིས་པེ་ནིཤ་ཁ (ཅི་ལི)", "es_CO": "ཨིས་པེ་ནིཤ་ཁ (ཀོ་ལོམ་བྷི་ཡ)", "es_CR": "ཨིས་པེ་ནིཤ་ཁ (ཀོས་ཊ་རི་ཀ)", @@ -305,6 +306,7 @@ "it_CH": "ཨི་ཊ་ལི་ཡཱན་ཁ (སུ་ཝིཊ་ཛར་ལེནཌ)", "it_IT": "ཨི་ཊ་ལི་ཡཱན་ཁ (ཨི་ཊ་ལི)", "it_SM": "ཨི་ཊ་ལི་ཡཱན་ཁ (སཱན་མ་རི་ནོ)", + "it_VA": "ཨི་ཊ་ལི་ཡཱན་ཁ (བ་ཊི་ཀཱན་ སི་ཊི)", "ja": "ཇཱ་པཱ་ནིས་ཁ", "ja_JP": "ཇཱ་པཱ་ནིས་ཁ (ཇ་པཱན)", "ka": "ཇཽ་ཇི་ཡཱན་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ee.json b/src/Symfony/Component/Intl/Resources/data/locales/ee.json index 4e9f337209033..9c54da8b92d8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -196,6 +196,7 @@ "es_AR": "Spanishgbe (Argentina nutome)", "es_BO": "Spanishgbe (Bolivia nutome)", "es_BR": "Spanishgbe (Brazil nutome)", + "es_BZ": "Spanishgbe (Belize nutome)", "es_CL": "Spanishgbe (Tsile nutome)", "es_CO": "Spanishgbe (Kolombia nutome)", "es_CR": "Spanishgbe (Kosta Rika nutome)", @@ -306,6 +307,7 @@ "it_CH": "Italiagbe (Switzerland nutome)", "it_IT": "Italiagbe (Italia nutome)", "it_SM": "Italiagbe (San Marino nutome)", + "it_VA": "Italiagbe (Vatikandu nutome)", "ja": "Japangbe", "ja_JP": "Japangbe (Dzapan nutome)", "ka": "gɔgiagbe", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index 7beb36ed99b2e..a250bb11606a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -71,7 +71,7 @@ "ce": "Τσετσενικά", "ce_RU": "Τσετσενικά (Ρωσία)", "cs": "Τσεχικά", - "cs_CZ": "Τσεχικά (Τσεχική Δημοκρατία)", + "cs_CZ": "Τσεχικά (Τσεχία)", "cy": "Ουαλικά", "cy_GB": "Ουαλικά (Ηνωμένο Βασίλειο)", "da": "Δανικά", @@ -201,6 +201,7 @@ "es_AR": "Ισπανικά (Αργεντινή)", "es_BO": "Ισπανικά (Βολιβία)", "es_BR": "Ισπανικά (Βραζιλία)", + "es_BZ": "Ισπανικά (Μπελίζ)", "es_CL": "Ισπανικά (Χιλή)", "es_CO": "Ισπανικά (Κολομβία)", "es_CR": "Ισπανικά (Κόστα Ρίκα)", @@ -327,6 +328,7 @@ "it_CH": "Ιταλικά (Ελβετία)", "it_IT": "Ιταλικά (Ιταλία)", "it_SM": "Ιταλικά (Άγιος Μαρίνος)", + "it_VA": "Ιταλικά (Βατικανό)", "ja": "Ιαπωνικά", "ja_JP": "Ιαπωνικά (Ιαπωνία)", "ka": "Γεωργιανά", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index 61e91a432108c..514021253b41a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Russia)", "cs": "Czech", - "cs_CZ": "Czech (Czech Republic)", + "cs_CZ": "Czech (Czechia)", "cy": "Welsh", "cy_GB": "Welsh (United Kingdom)", "da": "Danish", @@ -201,6 +201,7 @@ "es_AR": "Spanish (Argentina)", "es_BO": "Spanish (Bolivia)", "es_BR": "Spanish (Brazil)", + "es_BZ": "Spanish (Belize)", "es_CL": "Spanish (Chile)", "es_CO": "Spanish (Colombia)", "es_CR": "Spanish (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italian (Switzerland)", "it_IT": "Italian (Italy)", "it_SM": "Italian (San Marino)", + "it_VA": "Italian (Vatican City)", "ja": "Japanese", "ja_JP": "Japanese (Japan)", "ka": "Georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eo.json b/src/Symfony/Component/Intl/Resources/data/locales/eo.json index 5b5e1acc481a0..04930bd31ce68 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eo.json @@ -167,6 +167,7 @@ "es_AR": "hispana (Argentino)", "es_BO": "hispana (Bolivio)", "es_BR": "hispana (Brazilo)", + "es_BZ": "hispana (Belizo)", "es_CL": "hispana (Ĉilio)", "es_CO": "hispana (Kolombio)", "es_CR": "hispana (Kostariko)", @@ -277,6 +278,7 @@ "it_CH": "itala (Svisujo)", "it_IT": "itala (Italujo)", "it_SM": "itala (San-Marino)", + "it_VA": "itala (Vatikano)", "ja": "japana", "ja_JP": "japana (Japanujo)", "ka": "kartvela", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index fd1adb88417d0..49f4e5524f224 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rusia)", "cs": "checo", - "cs_CZ": "checo (República Checa)", + "cs_CZ": "checo (Chequia)", "cy": "galés", "cy_GB": "galés (Reino Unido)", "da": "danés", @@ -201,6 +201,7 @@ "es_AR": "español (Argentina)", "es_BO": "español (Bolivia)", "es_BR": "español (Brasil)", + "es_BZ": "español (Belice)", "es_CL": "español (Chile)", "es_CO": "español (Colombia)", "es_CR": "español (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suiza)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Ciudad del Vaticano)", "ja": "japonés", "ja_JP": "japonés (Japón)", "ka": "georgiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/et.json b/src/Symfony/Component/Intl/Resources/data/locales/et.json index 7d691b6fa00f1..aaccbce6dbbf5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -71,7 +71,7 @@ "ce": "tšetšeeni", "ce_RU": "tšetšeeni (Venemaa)", "cs": "tšehhi", - "cs_CZ": "tšehhi (Tšehhi)", + "cs_CZ": "tšehhi (Tšehhia)", "cy": "kõmri", "cy_GB": "kõmri (Suurbritannia)", "da": "taani", @@ -201,6 +201,7 @@ "es_AR": "hispaania (Argentina)", "es_BO": "hispaania (Boliivia)", "es_BR": "hispaania (Brasiilia)", + "es_BZ": "hispaania (Belize)", "es_CL": "hispaania (Tšiili)", "es_CO": "hispaania (Colombia)", "es_CR": "hispaania (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "itaalia (Šveits)", "it_IT": "itaalia (Itaalia)", "it_SM": "itaalia (San Marino)", + "it_VA": "itaalia (Vatikan)", "ja": "jaapani", "ja_JP": "jaapani (Jaapan)", "ka": "gruusia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eu.json b/src/Symfony/Component/Intl/Resources/data/locales/eu.json index 595e479513675..b563146fe5458 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -71,7 +71,7 @@ "ce": "txetxeniera", "ce_RU": "txetxeniera (Errusia)", "cs": "txekiera", - "cs_CZ": "txekiera (Txekiar Errepublika)", + "cs_CZ": "txekiera (Txekia)", "cy": "galesera", "cy_GB": "galesera (Erresuma Batua)", "da": "daniera", @@ -201,6 +201,7 @@ "es_AR": "espainiera (Argentina)", "es_BO": "espainiera (Bolivia)", "es_BR": "espainiera (Brasil)", + "es_BZ": "espainiera (Belize)", "es_CL": "espainiera (Txile)", "es_CO": "espainiera (Kolonbia)", "es_CR": "espainiera (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiera (Suitza)", "it_IT": "italiera (Italia)", "it_SM": "italiera (San Marino)", + "it_VA": "italiera (Vatikano Hiria)", "ja": "japoniera", "ja_JP": "japoniera (Japonia)", "ka": "georgiera", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa.json b/src/Symfony/Component/Intl/Resources/data/locales/fa.json index 13cf37b569c9d..f6c61e1b36597 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -201,6 +201,7 @@ "es_AR": "اسپانیایی (آرژانتین)", "es_BO": "اسپانیایی (بولیوی)", "es_BR": "اسپانیایی (برزیل)", + "es_BZ": "اسپانیایی (بلیز)", "es_CL": "اسپانیایی (شیلی)", "es_CO": "اسپانیایی (کلمبیا)", "es_CR": "اسپانیایی (کاستاریکا)", @@ -327,6 +328,7 @@ "it_CH": "ایتالیایی (سوئیس)", "it_IT": "ایتالیایی (ایتالیا)", "it_SM": "ایتالیایی (سان‌مارینو)", + "it_VA": "ایتالیایی (واتیکان)", "ja": "ژاپنی", "ja_JP": "ژاپنی (ژاپن)", "ka": "گرجی", 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 3895deed89f8f..d0018552a42d2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -60,6 +60,7 @@ "es_AR": "هسپانوی (ارجنتاین)", "es_BO": "هسپانوی (بولیویا)", "es_BR": "هسپانوی (برازیل)", + "es_BZ": "هسپانوی (بلیز)", "es_CL": "هسپانوی (چلی)", "es_CO": "هسپانوی (کولمبیا)", "es_CR": "هسپانوی (کاستریکا)", @@ -122,6 +123,7 @@ "it_CH": "ایتالوی (سویس)", "it_IT": "ایتالوی (ایتالیا)", "it_SM": "ایتالوی (سان‌مارینو)", + "it_VA": "ایتالوی (واتیکان)", "ja": "جاپانی", "ja_JP": "جاپانی (جاپان)", "ki_KE": "کیکویویی (کینیا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff.json b/src/Symfony/Component/Intl/Resources/data/locales/ff.json index f9a1507ce1281..3fa5ac5985aac 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ff.json @@ -146,6 +146,7 @@ "es_AR": "Español (Arjantiin)", "es_BO": "Español (Boliwii)", "es_BR": "Español (Beresiil)", + "es_BZ": "Español (Beliise)", "es_CL": "Español (Cilii)", "es_CO": "Español (Kolombiya)", "es_CR": "Español (Kosta Rikaa)", @@ -236,6 +237,7 @@ "it_CH": "Italiyeere (Suwiis)", "it_IT": "Italiyeere (Itali)", "it_SM": "Italiyeere (See Maree)", + "it_VA": "Italiyeere (Dowla Waticaan)", "ja": "Saponeere", "ja_JP": "Saponeere (Sapoo)", "km": "Kemeere", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index 4f78e3d7a90ad..2d604a3a50bbf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -71,7 +71,7 @@ "ce": "tšetšeeni", "ce_RU": "tšetšeeni (Venäjä)", "cs": "tšekki", - "cs_CZ": "tšekki (Tšekki)", + "cs_CZ": "tšekki (Tšekinmaa)", "cy": "kymri", "cy_GB": "kymri (Iso-Britannia)", "da": "tanska", @@ -201,6 +201,7 @@ "es_AR": "espanja (Argentiina)", "es_BO": "espanja (Bolivia)", "es_BR": "espanja (Brasilia)", + "es_BZ": "espanja (Belize)", "es_CL": "espanja (Chile)", "es_CO": "espanja (Kolumbia)", "es_CR": "espanja (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italia (Sveitsi)", "it_IT": "italia (Italia)", "it_SM": "italia (San Marino)", + "it_VA": "italia (Vatikaani)", "ja": "japani", "ja_JP": "japani (Japani)", "ka": "georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index bf30d9e83239f..f95422128999c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -201,6 +201,7 @@ "es_AR": "spanskt (Argentina)", "es_BO": "spanskt (Bolivia)", "es_BR": "spanskt (Brasil)", + "es_BZ": "spanskt (Belis)", "es_CL": "spanskt (Kili)", "es_CO": "spanskt (Kolombia)", "es_CR": "spanskt (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italskt (Sveis)", "it_IT": "italskt (Italia)", "it_SM": "italskt (San Marino)", + "it_VA": "italskt (Vatikanbýur)", "ja": "japanskt", "ja_JP": "japanskt (Japan)", "ka": "georgiskt", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr.json b/src/Symfony/Component/Intl/Resources/data/locales/fr.json index 9dd7d01349988..3fa02ed00140e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -71,7 +71,7 @@ "ce": "tchétchène", "ce_RU": "tchétchène (Russie)", "cs": "tchèque", - "cs_CZ": "tchèque (République tchèque)", + "cs_CZ": "tchèque (Tchéquie)", "cy": "gallois", "cy_GB": "gallois (Royaume-Uni)", "da": "danois", @@ -201,6 +201,7 @@ "es_AR": "espagnol (Argentine)", "es_BO": "espagnol (Bolivie)", "es_BR": "espagnol (Brésil)", + "es_BZ": "espagnol (Belize)", "es_CL": "espagnol (Chili)", "es_CO": "espagnol (Colombie)", "es_CR": "espagnol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italien (Suisse)", "it_IT": "italien (Italie)", "it_SM": "italien (Saint-Marin)", + "it_VA": "italien (État de la Cité du Vatican)", "ja": "japonais", "ja_JP": "japonais (Japon)", "ka": "géorgien", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json index 34d27e38979c4..5d3e85cb62cae 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json @@ -29,6 +29,7 @@ "gu": "gujarati", "gu_IN": "gujarati (Inde)", "gv_IM": "mannois (île de Man)", + "it_VA": "italien (Cité du Vatican)", "kl": "kalaallisut", "kl_GL": "kalaallisut (Groenland)", "ms_BN": "malais (Brunei)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index 9bec67e25c39c..0ee0bdd79bf4b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -201,6 +201,7 @@ "es_AR": "Spaansk (Argentinië)", "es_BO": "Spaansk (Bolivia)", "es_BR": "Spaansk (Brazilië)", + "es_BZ": "Spaansk (Belize)", "es_CL": "Spaansk (Chili)", "es_CO": "Spaansk (Kolombia)", "es_CR": "Spaansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaansk (Switserlân)", "it_IT": "Italiaansk (Italië)", "it_SM": "Italiaansk (San Marino)", + "it_VA": "Italiaansk (Vaticaanstêd)", "ja": "Japans", "ja_JP": "Japans (Japan)", "ka": "Georgysk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ga.json b/src/Symfony/Component/Intl/Resources/data/locales/ga.json index a550977b21d5e..f413a576a135b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -196,6 +196,7 @@ "es_AR": "Spáinnis (An Airgintín)", "es_BO": "Spáinnis (An Bholaiv)", "es_BR": "Spáinnis (An Bhrasaíl)", + "es_BZ": "Spáinnis (An Bheilís)", "es_CL": "Spáinnis (An tSile)", "es_CO": "Spáinnis (An Cholóim)", "es_CR": "Spáinnis (Cósta Ríce)", @@ -320,6 +321,7 @@ "it_CH": "Iodáilis (An Eilvéis)", "it_IT": "Iodáilis (An Iodáil)", "it_SM": "Iodáilis (San Mairíne)", + "it_VA": "Iodáilis (An Vatacáin)", "ja": "Seapáinis", "ja_JP": "Seapáinis (An tSeapáin)", "ka": "Seoirsis", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gd.json b/src/Symfony/Component/Intl/Resources/data/locales/gd.json index 4b77e05a2e01f..df571960843ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -71,7 +71,7 @@ "ce": "Deideanais", "ce_RU": "Deideanais (An Ruis)", "cs": "Seicis", - "cs_CZ": "Seicis (Poblachd na Seice)", + "cs_CZ": "Seicis (An t-Seic)", "cy": "Cuimris", "cy_GB": "Cuimris (An Rìoghachd Aonaichte)", "da": "Danmhairgis", @@ -201,6 +201,7 @@ "es_AR": "Spàinntis (An Argantain)", "es_BO": "Spàinntis (Boilibhia)", "es_BR": "Spàinntis (Braisil)", + "es_BZ": "Spàinntis (A’ Bheilìs)", "es_CL": "Spàinntis (An t-Sile)", "es_CO": "Spàinntis (Coloimbia)", "es_CR": "Spàinntis (Costa Rìcea)", @@ -327,6 +328,7 @@ "it_CH": "Eadailtis (An Eilbheis)", "it_IT": "Eadailtis (An Eadailt)", "it_SM": "Eadailtis (San Marino)", + "it_VA": "Eadailtis (Cathair na Bhatacain)", "ja": "Seapanais", "ja_JP": "Seapanais (An t-Seapan)", "ka": "Cairtbheilis", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gl.json b/src/Symfony/Component/Intl/Resources/data/locales/gl.json index 5bc41ff9adeea..74261fb29818c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rusia)", "cs": "checo", - "cs_CZ": "checo (República Checa)", + "cs_CZ": "checo (Chequia)", "cy": "galés", "cy_GB": "galés (Reino Unido)", "da": "dinamarqués", @@ -201,6 +201,7 @@ "es_AR": "español (Arxentina)", "es_BO": "español (Bolivia)", "es_BR": "español (Brasil)", + "es_BZ": "español (Belice)", "es_CL": "español (Chile)", "es_CO": "español (Colombia)", "es_CR": "español (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suíza)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Cidade do Vaticano)", "ja": "xaponés", "ja_JP": "xaponés (O Xapón)", "ka": "xeorxiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gu.json b/src/Symfony/Component/Intl/Resources/data/locales/gu.json index bd4a500d031ae..7a1166b6c178c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -71,7 +71,7 @@ "ce": "ચેચન", "ce_RU": "ચેચન (રશિયા)", "cs": "ચેક", - "cs_CZ": "ચેક (ચેક રીપબ્લિક)", + "cs_CZ": "ચેક (ચેકીયા)", "cy": "વેલ્શ", "cy_GB": "વેલ્શ (યુનાઇટેડ કિંગડમ)", "da": "ડેનિશ", @@ -201,6 +201,7 @@ "es_AR": "સ્પેનિશ (આર્જેન્ટીના)", "es_BO": "સ્પેનિશ (બોલિવિયા)", "es_BR": "સ્પેનિશ (બ્રાઝિલ)", + "es_BZ": "સ્પેનિશ (બેલીઝ)", "es_CL": "સ્પેનિશ (ચિલી)", "es_CO": "સ્પેનિશ (કોલમ્બિયા)", "es_CR": "સ્પેનિશ (કોસ્ટા રિકા)", @@ -327,6 +328,7 @@ "it_CH": "ઇટાલિયન (સ્વિટ્ઝર્લૅન્ડ)", "it_IT": "ઇટાલિયન (ઇટાલી)", "it_SM": "ઇટાલિયન (સૅન મેરિનો)", + "it_VA": "ઇટાલિયન (વેટિકન સિટી)", "ja": "જાપાનીઝ", "ja_JP": "જાપાનીઝ (જાપાન)", "ka": "જ્યોર્જિઅન", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index 4b3378057e741..88549916c7a39 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -146,6 +146,7 @@ "es_AR": "Ispaniyanci (Arjantiniya)", "es_BO": "Ispaniyanci (Bolibiya)", "es_BR": "Ispaniyanci (Birazil)", + "es_BZ": "Ispaniyanci (Beliz)", "es_CL": "Ispaniyanci (Cayile)", "es_CO": "Ispaniyanci (Kolambiya)", "es_CR": "Ispaniyanci (Kwasta Rika)", @@ -231,6 +232,7 @@ "it_CH": "Italiyanci (Suwizalan)", "it_IT": "Italiyanci (Italiya)", "it_SM": "Italiyanci (San Marino)", + "it_VA": "Italiyanci (Batikan)", "ja": "Japananci", "ja_JP": "Japananci (Japan)", "km": "Harshen Kimar", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index e867e3a4a727f..ebb41db80a1f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -71,7 +71,7 @@ "ce": "צ׳צ׳נית", "ce_RU": "צ׳צ׳נית (רוסיה)", "cs": "צ׳כית", - "cs_CZ": "צ׳כית (הרפובליקה הצ׳כית)", + "cs_CZ": "צ׳כית (צ׳כיה)", "cy": "וולשית", "cy_GB": "וולשית (הממלכה המאוחדת)", "da": "דנית", @@ -201,6 +201,7 @@ "es_AR": "ספרדית (ארגנטינה)", "es_BO": "ספרדית (בוליביה)", "es_BR": "ספרדית (ברזיל)", + "es_BZ": "ספרדית (בליז)", "es_CL": "ספרדית (צ׳ילה)", "es_CO": "ספרדית (קולומביה)", "es_CR": "ספרדית (קוסטה ריקה)", @@ -327,6 +328,7 @@ "it_CH": "איטלקית (שווייץ)", "it_IT": "איטלקית (איטליה)", "it_SM": "איטלקית (סן מרינו)", + "it_VA": "איטלקית (הוותיקן)", "ja": "יפנית", "ja_JP": "יפנית (יפן)", "ka": "גאורגית", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index c6bd20be0925f..a7989ec705802 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -71,7 +71,7 @@ "ce": "चेचन", "ce_RU": "चेचन (रूस)", "cs": "चेक", - "cs_CZ": "चेक (चेक गणराज्य)", + "cs_CZ": "चेक (चेकिया)", "cy": "वेल्श", "cy_GB": "वेल्श (यूनाइटेड किंगडम)", "da": "डेनिश", @@ -201,6 +201,7 @@ "es_AR": "स्पेनी (अर्जेंटीना)", "es_BO": "स्पेनी (बोलीविया)", "es_BR": "स्पेनी (ब्राज़ील)", + "es_BZ": "स्पेनी (बेलीज़)", "es_CL": "स्पेनी (चिली)", "es_CO": "स्पेनी (कोलंबिया)", "es_CR": "स्पेनी (कोस्टारिका)", @@ -327,6 +328,7 @@ "it_CH": "इतालवी (स्विट्ज़रलैंड)", "it_IT": "इतालवी (इटली)", "it_SM": "इतालवी (सैन मेरीनो)", + "it_VA": "इतालवी (वेटिकन सिटी)", "ja": "जापानी", "ja_JP": "जापानी (जापान)", "ka": "जॉर्जियाई", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index 9c4ea9d734666..59efe39e252d0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -71,7 +71,7 @@ "ce": "čečenski", "ce_RU": "čečenski (Rusija)", "cs": "češki", - "cs_CZ": "češki (Češka Republika)", + "cs_CZ": "češki (Češka)", "cy": "velški", "cy_GB": "velški (Ujedinjeno Kraljevstvo)", "da": "danski", @@ -201,6 +201,7 @@ "es_AR": "španjolski (Argentina)", "es_BO": "španjolski (Bolivija)", "es_BR": "španjolski (Brazil)", + "es_BZ": "španjolski (Belize)", "es_CL": "španjolski (Čile)", "es_CO": "španjolski (Kolumbija)", "es_CR": "španjolski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "talijanski (Švicarska)", "it_IT": "talijanski (Italija)", "it_SM": "talijanski (San Marino)", + "it_VA": "talijanski (Vatikanski Grad)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hu.json b/src/Symfony/Component/Intl/Resources/data/locales/hu.json index b6eb047cf9c39..af6b40929d9be 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -201,6 +201,7 @@ "es_AR": "spanyol (Argentína)", "es_BO": "spanyol (Bolívia)", "es_BR": "spanyol (Brazília)", + "es_BZ": "spanyol (Belize)", "es_CL": "spanyol (Chile)", "es_CO": "spanyol (Kolumbia)", "es_CR": "spanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "olasz (Svájc)", "it_IT": "olasz (Olaszország)", "it_SM": "olasz (San Marino)", + "it_VA": "olasz (Vatikán)", "ja": "japán", "ja_JP": "japán (Japán)", "ka": "grúz", @@ -385,7 +387,7 @@ "mt_MT": "máltai (Málta)", "my": "burmai", "my_MM": "burmai (Mianmar (Burma))", - "nb": "norvég (bokmál)", + "nb": "norvég (bokmål)", "nb_NO": "norvég (Norvégia)", "nb_SJ": "norvég (Svalbard és Jan Mayen)", "nd": "északi ndebele", @@ -401,7 +403,7 @@ "nl_NL": "holland (Hollandia)", "nl_SR": "holland (Suriname)", "nl_SX": "holland (Sint Maarten)", - "nn": "norvég (nynrosk)", + "nn": "norvég (nynorsk)", "nn_NO": "norvég (Norvégia)", "no": "norvég", "no_NO": "norvég (Norvégia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hy.json b/src/Symfony/Component/Intl/Resources/data/locales/hy.json index 8466eae792d20..d42b5e162071e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -201,6 +201,7 @@ "es_AR": "իսպաներեն (Արգենտինա)", "es_BO": "իսպաներեն (Բոլիվիա)", "es_BR": "իսպաներեն (Բրազիլիա)", + "es_BZ": "իսպաներեն (Բելիզ)", "es_CL": "իսպաներեն (Չիլի)", "es_CO": "իսպաներեն (Կոլումբիա)", "es_CR": "իսպաներեն (Կոստա Ռիկա)", @@ -327,6 +328,7 @@ "it_CH": "իտալերեն (Շվեյցարիա)", "it_IT": "իտալերեն (Իտալիա)", "it_SM": "իտալերեն (Սան Մարինո)", + "it_VA": "իտալերեն (Վատիկան)", "ja": "ճապոներեն", "ja_JP": "ճապոներեն (Ճապոնիա)", "ka": "վրացերեն", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/id.json b/src/Symfony/Component/Intl/Resources/data/locales/id.json index 363a022b42ce6..91c1ea0e0876d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Rusia)", "cs": "Cheska", - "cs_CZ": "Cheska (Republik Cheska)", + "cs_CZ": "Cheska (Cheska)", "cy": "Welsh", "cy_GB": "Welsh (Inggris Raya)", "da": "Dansk", @@ -201,6 +201,7 @@ "es_AR": "Spanyol (Argentina)", "es_BO": "Spanyol (Bolivia)", "es_BR": "Spanyol (Brasil)", + "es_BZ": "Spanyol (Belize)", "es_CL": "Spanyol (Cile)", "es_CO": "Spanyol (Kolombia)", "es_CR": "Spanyol (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "Italia (Swiss)", "it_IT": "Italia (Italia)", "it_SM": "Italia (San Marino)", + "it_VA": "Italia (Vatikan)", "ja": "Jepang", "ja_JP": "Jepang (Jepang)", "ka": "Georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/is.json b/src/Symfony/Component/Intl/Resources/data/locales/is.json index 222290aeec12a..e258b38afeb64 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -201,6 +201,7 @@ "es_AR": "spænska (Argentína)", "es_BO": "spænska (Bólivía)", "es_BR": "spænska (Brasilía)", + "es_BZ": "spænska (Belís)", "es_CL": "spænska (Síle)", "es_CO": "spænska (Kólumbía)", "es_CR": "spænska (Kostaríka)", @@ -327,6 +328,7 @@ "it_CH": "ítalska (Sviss)", "it_IT": "ítalska (Ítalía)", "it_SM": "ítalska (San Marínó)", + "it_VA": "ítalska (Vatíkanið)", "ja": "japanska", "ja_JP": "japanska (Japan)", "ka": "georgíska", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/it.json b/src/Symfony/Component/Intl/Resources/data/locales/it.json index 983f189d65b8d..eac3b51d1229c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -71,7 +71,7 @@ "ce": "ceceno", "ce_RU": "ceceno (Russia)", "cs": "ceco", - "cs_CZ": "ceco (Repubblica Ceca)", + "cs_CZ": "ceco (Cèchia)", "cy": "gallese", "cy_GB": "gallese (Regno Unito)", "da": "danese", @@ -201,6 +201,7 @@ "es_AR": "spagnolo (Argentina)", "es_BO": "spagnolo (Bolivia)", "es_BR": "spagnolo (Brasile)", + "es_BZ": "spagnolo (Belize)", "es_CL": "spagnolo (Cile)", "es_CO": "spagnolo (Colombia)", "es_CR": "spagnolo (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Svizzera)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Città del Vaticano)", "ja": "giapponese", "ja_JP": "giapponese (Giappone)", "ka": "georgiano", @@ -436,7 +438,7 @@ "pt_MZ": "portoghese (Mozambico)", "pt_PT": "portoghese (Portogallo)", "pt_ST": "portoghese (São Tomé e Príncipe)", - "pt_TL": "portoghese (Timor Leste)", + "pt_TL": "portoghese (Timor Est)", "qu": "quechua", "qu_BO": "quechua (Bolivia)", "qu_EC": "quechua (Ecuador)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ja.json b/src/Symfony/Component/Intl/Resources/data/locales/ja.json index ba15c614186f2..51aa1024c6d54 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -71,7 +71,7 @@ "ce": "チェチェン語", "ce_RU": "チェチェン語 (ロシア)", "cs": "チェコ語", - "cs_CZ": "チェコ語 (チェコ共和国)", + "cs_CZ": "チェコ語 (チェコ)", "cy": "ウェールズ語", "cy_GB": "ウェールズ語 (イギリス)", "da": "デンマーク語", @@ -201,6 +201,7 @@ "es_AR": "スペイン語 (アルゼンチン)", "es_BO": "スペイン語 (ボリビア)", "es_BR": "スペイン語 (ブラジル)", + "es_BZ": "スペイン語 (ベリーズ)", "es_CL": "スペイン語 (チリ)", "es_CO": "スペイン語 (コロンビア)", "es_CR": "スペイン語 (コスタリカ)", @@ -327,6 +328,7 @@ "it_CH": "イタリア語 (スイス)", "it_IT": "イタリア語 (イタリア)", "it_SM": "イタリア語 (サンマリノ)", + "it_VA": "イタリア語 (バチカン市国)", "ja": "日本語", "ja_JP": "日本語 (日本)", "ka": "ジョージア語", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ka.json b/src/Symfony/Component/Intl/Resources/data/locales/ka.json index 782db63adb4dc..bdf8a66e81dc5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -71,7 +71,7 @@ "ce": "ჩეჩნური", "ce_RU": "ჩეჩნური (რუსეთი)", "cs": "ჩეხური", - "cs_CZ": "ჩეხური (ჩეხეთის რესპუბლიკა)", + "cs_CZ": "ჩეხური (ჩეხეთი)", "cy": "უელსური", "cy_GB": "უელსური (გაერთიანებული სამეფო)", "da": "დანიური", @@ -201,6 +201,7 @@ "es_AR": "ესპანური (არგენტინა)", "es_BO": "ესპანური (ბოლივია)", "es_BR": "ესპანური (ბრაზილია)", + "es_BZ": "ესპანური (ბელიზი)", "es_CL": "ესპანური (ჩილე)", "es_CO": "ესპანური (კოლუმბია)", "es_CR": "ესპანური (კოსტა-რიკა)", @@ -327,6 +328,7 @@ "it_CH": "იტალიური (შვეიცარია)", "it_IT": "იტალიური (იტალია)", "it_SM": "იტალიური (სან-მარინო)", + "it_VA": "იტალიური (ქალაქი ვატიკანი)", "ja": "იაპონური", "ja_JP": "იაპონური (იაპონია)", "ka": "ქართული", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ki.json b/src/Symfony/Component/Intl/Resources/data/locales/ki.json index 2fee439dd1dd0..414eed372a1a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ki.json @@ -146,6 +146,7 @@ "es_AR": "Kihispania (Ajentina)", "es_BO": "Kihispania (Bolivia)", "es_BR": "Kihispania (Brazili)", + "es_BZ": "Kihispania (Belize)", "es_CL": "Kihispania (Chile)", "es_CO": "Kihispania (Kolombia)", "es_CR": "Kihispania (Kostarika)", @@ -231,6 +232,7 @@ "it_CH": "Kĩtaliano (Uswisi)", "it_IT": "Kĩtaliano (Italia)", "it_SM": "Kĩtaliano (Samarino)", + "it_VA": "Kĩtaliano (Vatikani)", "ja": "Kĩnjabani", "ja_JP": "Kĩnjabani (Njabani)", "ki": "Gikuyu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 5f4ccec6b8413..9bcb6b3034b1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -71,7 +71,7 @@ "ce": "шешен тілі", "ce_RU": "шешен тілі (Ресей)", "cs": "чех тілі", - "cs_CZ": "чех тілі (Чех Республикасы)", + "cs_CZ": "чех тілі (Чехия)", "cy": "валлий тілі", "cy_GB": "валлий тілі (Ұлыбритания)", "da": "дат тілі", @@ -201,6 +201,7 @@ "es_AR": "испан тілі (Аргентина)", "es_BO": "испан тілі (Боливия)", "es_BR": "испан тілі (Бразилия)", + "es_BZ": "испан тілі (Белиз)", "es_CL": "испан тілі (Чили)", "es_CO": "испан тілі (Колумбия)", "es_CR": "испан тілі (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "итальян тілі (Швейцария)", "it_IT": "итальян тілі (Италия)", "it_SM": "итальян тілі (Сан-Марино)", + "it_VA": "итальян тілі (Ватикан)", "ja": "жапон тілі", "ja_JP": "жапон тілі (Жапония)", "ka": "грузин тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index 31a1572898762..7b1a18d1d8e04 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -71,7 +71,7 @@ "ce": "ឈីឆេន", "ce_RU": "ឈីឆេន (រុស្ស៊ី)", "cs": "ឆេក", - "cs_CZ": "ឆេក (សាធារណរដ្ឋឆេក)", + "cs_CZ": "ឆេក (ឆេគា)", "cy": "វេល", "cy_GB": "វេល (ចក្រភព​អង់គ្លេស)", "da": "ដាណឺម៉ាក", @@ -201,6 +201,7 @@ "es_AR": "អេស្ប៉ាញ (អាហ្សង់ទីន)", "es_BO": "អេស្ប៉ាញ (បូលីវី)", "es_BR": "អេស្ប៉ាញ (ប្រេស៊ីល)", + "es_BZ": "អេស្ប៉ាញ (បេលីហ្ស)", "es_CL": "អេស្ប៉ាញ (ស៊ីលី)", "es_CO": "អេស្ប៉ាញ (កូឡុំប៊ី)", "es_CR": "អេស្ប៉ាញ (កូស្តារីកា)", @@ -327,6 +328,7 @@ "it_CH": "អ៊ីតាលី (ស្វីស)", "it_IT": "អ៊ីតាលី (អ៊ីតាលី)", "it_SM": "អ៊ីតាលី (សាន​ម៉ារីណូ)", + "it_VA": "អ៊ីតាលី (បុរី​វ៉ាទីកង់)", "ja": "ជប៉ុន", "ja_JP": "ជប៉ុន (ជប៉ុន)", "ka": "ហ្សក​ហ្ស៊ី", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index 4bd1a6281c88e..1f47360551a87 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -71,7 +71,7 @@ "ce": "ಚೆಚನ್", "ce_RU": "ಚೆಚನ್ (ರಷ್ಯಾ)", "cs": "ಜೆಕ್", - "cs_CZ": "ಜೆಕ್ (ಝೆಕ್ ರಿಪಬ್ಲಿಕ್)", + "cs_CZ": "ಜೆಕ್ (ಝೆಕಿಯಾ)", "cy": "ವೆಲ್ಶ್", "cy_GB": "ವೆಲ್ಶ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", "da": "ಡ್ಯಾನಿಶ್", @@ -201,6 +201,7 @@ "es_AR": "ಸ್ಪ್ಯಾನಿಷ್ (ಅರ್ಜೆಂಟಿನಾ)", "es_BO": "ಸ್ಪ್ಯಾನಿಷ್ (ಬೊಲಿವಿಯಾ)", "es_BR": "ಸ್ಪ್ಯಾನಿಷ್ (ಬ್ರೆಜಿಲ್)", + "es_BZ": "ಸ್ಪ್ಯಾನಿಷ್ (ಬೆಲಿಜ್)", "es_CL": "ಸ್ಪ್ಯಾನಿಷ್ (ಚಿಲಿ)", "es_CO": "ಸ್ಪ್ಯಾನಿಷ್ (ಕೊಲಂಬಿಯಾ)", "es_CR": "ಸ್ಪ್ಯಾನಿಷ್ (ಕೊಸ್ಟಾ ರಿಕಾ)", @@ -327,6 +328,7 @@ "it_CH": "ಇಟಾಲಿಯನ್ (ಸ್ವಿಟ್ಜರ್ಲ್ಯಾಂಡ್)", "it_IT": "ಇಟಾಲಿಯನ್ (ಇಟಲಿ)", "it_SM": "ಇಟಾಲಿಯನ್ (ಸ್ಯಾನ್ ಮೆರಿನೋ)", + "it_VA": "ಇಟಾಲಿಯನ್ (ವ್ಯಾಟಿಕನ್)", "ja": "ಜಾಪನೀಸ್", "ja_JP": "ಜಾಪನೀಸ್ (ಜಪಾನ್)", "ka": "ಜಾರ್ಜಿಯನ್", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index ea526c0488a61..b1898f7fe767a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -201,6 +201,7 @@ "es_AR": "스페인어 (아르헨티나)", "es_BO": "스페인어 (볼리비아)", "es_BR": "스페인어 (브라질)", + "es_BZ": "스페인어 (벨리즈)", "es_CL": "스페인어 (칠레)", "es_CO": "스페인어 (콜롬비아)", "es_CR": "스페인어 (코스타리카)", @@ -327,6 +328,7 @@ "it_CH": "이탈리아어 (스위스)", "it_IT": "이탈리아어 (이탈리아)", "it_SM": "이탈리아어 (산마리노)", + "it_VA": "이탈리아어 (바티칸 시국)", "ja": "일본어", "ja_JP": "일본어 (일본)", "ka": "조지아어", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index cd1f45a69f26e..f898c93a27ae4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -195,6 +195,7 @@ "es_AR": "سپینِش (أرجَنٹینا)", "es_BO": "سپینِش (بولِوِیا)", "es_BR": "سپینِش (برٛازِل)", + "es_BZ": "سپینِش (بیلِج)", "es_CL": "سپینِش (چِلی)", "es_CO": "سپینِش (کولَمبِیا)", "es_CR": "سپینِش (کوسٹا رِکا)", @@ -318,6 +319,7 @@ "it_CH": "اِٹیلیَن (سُوِزَرلینٛڑ)", "it_IT": "اِٹیلیَن (اِٹلی)", "it_SM": "اِٹیلیَن (سین میرِنو)", + "it_VA": "اِٹیلیَن (ویٹِکَن سِٹی)", "ja": "جاپٲنۍ", "ja_JP": "جاپٲنۍ (جاپان)", "ka": "جارجِیَن", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ky.json b/src/Symfony/Component/Intl/Resources/data/locales/ky.json index a2ae156d8c744..b88c66c4fd935 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -71,7 +71,7 @@ "ce": "чеченче", "ce_RU": "чеченче (Россия)", "cs": "чехче", - "cs_CZ": "чехче (Чех Республикасы)", + "cs_CZ": "чехче (Чехия)", "cy": "уелшче", "cy_GB": "уелшче (Улуу Британия)", "da": "датча", @@ -201,6 +201,7 @@ "es_AR": "испанча (Аргентина)", "es_BO": "испанча (Боливия)", "es_BR": "испанча (Бразилия)", + "es_BZ": "испанча (Белиз)", "es_CL": "испанча (Чили)", "es_CO": "испанча (Колумбия)", "es_CR": "испанча (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "италиянча (Швейцария)", "it_IT": "италиянча (Италия)", "it_SM": "италиянча (Сан Марино)", + "it_VA": "италиянча (Ватикан)", "ja": "жапончо", "ja_JP": "жапончо (Япония)", "ka": "грузинче", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index 3a949952a8e88..129cd06e473fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -201,6 +201,7 @@ "es_AR": "Spuenesch (Argentinien)", "es_BO": "Spuenesch (Bolivien)", "es_BR": "Spuenesch (Brasilien)", + "es_BZ": "Spuenesch (Belize)", "es_CL": "Spuenesch (Chile)", "es_CO": "Spuenesch (Kolumbien)", "es_CR": "Spuenesch (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italienesch (Schwäiz)", "it_IT": "Italienesch (Italien)", "it_SM": "Italienesch (San Marino)", + "it_VA": "Italienesch (Vatikanstad)", "ja": "Japanesch", "ja_JP": "Japanesch (Japan)", "ka": "Georgesch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lg.json b/src/Symfony/Component/Intl/Resources/data/locales/lg.json index 87ecc9da436f6..caba3f0c06d76 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lg.json @@ -146,6 +146,7 @@ "es_AR": "Lusipanya (Arigentina)", "es_BO": "Lusipanya (Boliviya)", "es_BR": "Lusipanya (Buraziiri)", + "es_BZ": "Lusipanya (Belize)", "es_CL": "Lusipanya (Cile)", "es_CO": "Lusipanya (Kolombya)", "es_CR": "Lusipanya (Kosita Rika)", @@ -231,6 +232,7 @@ "it_CH": "Luyitale (Switizirandi)", "it_IT": "Luyitale (Yitale)", "it_SM": "Luyitale (Sanimarino)", + "it_VA": "Luyitale (Vatikaani)", "ja": "Lujapani", "ja_JP": "Lujapani (Japani)", "km": "Lukme", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ln.json b/src/Symfony/Component/Intl/Resources/data/locales/ln.json index 0270b6b88f6e0..97f7da07c2f8d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ln.json @@ -38,7 +38,7 @@ "bn_BD": "libengali (Bengalidɛsi)", "bn_IN": "libengali (Índɛ)", "cs": "litshekɛ", - "cs_CZ": "litshekɛ (Repibiki Tsekɛ)", + "cs_CZ": "litshekɛ (Shekia)", "de": "lialemá", "de_AT": "lialemá (Otilisi)", "de_BE": "lialemá (Beleziki)", @@ -147,6 +147,7 @@ "es_AR": "lisipanye (Arizantinɛ)", "es_BO": "lisipanye (Bolivi)", "es_BR": "lisipanye (Brezílɛ)", + "es_BZ": "lisipanye (Belizɛ)", "es_CL": "lisipanye (Síli)", "es_CO": "lisipanye (Kolombi)", "es_CR": "lisipanye (Kositarika)", @@ -232,6 +233,7 @@ "it_CH": "litaliano (Swisɛ)", "it_IT": "litaliano (Itali)", "it_SM": "litaliano (Sántu Marinɛ)", + "it_VA": "litaliano (Vatiká)", "ja": "lizapɔ", "ja_JP": "lizapɔ (Zapɔ)", "km": "likambodza", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index 50131c413f65f..b2d57369ad824 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -71,7 +71,7 @@ "ce": "ຊີເຄນ", "ce_RU": "ຊີເຄນ (ຣັດເຊຍ)", "cs": "ເຊກ", - "cs_CZ": "ເຊກ (ສາທາລະນະລັດເຊັກ)", + "cs_CZ": "ເຊກ (ເຊັກເຊຍ)", "cy": "ເວວ", "cy_GB": "ເວວ (ສະຫະລາດຊະອະນາຈັກ)", "da": "ແດນິຊ", @@ -201,6 +201,7 @@ "es_AR": "ສະແປນນິຊ (ອາເຈນທິນາ)", "es_BO": "ສະແປນນິຊ (ໂບລິເວຍ)", "es_BR": "ສະແປນນິຊ (ບະເລຊີນ)", + "es_BZ": "ສະແປນນິຊ (ເບລີຊ)", "es_CL": "ສະແປນນິຊ (ຈີເລ)", "es_CO": "ສະແປນນິຊ (ໂຄລົມເບຍ)", "es_CR": "ສະແປນນິຊ (ໂຄສຕາ ຣິກາ)", @@ -327,6 +328,7 @@ "it_CH": "ອິຕາລຽນ (ສະວິດເຊີແລນ)", "it_IT": "ອິຕາລຽນ (ອິຕາລີ)", "it_SM": "ອິຕາລຽນ (ແຊນ ມາຣິໂນ)", + "it_VA": "ອິຕາລຽນ (ນະຄອນ ວາຕິກັນ)", "ja": "ຍີ່ປຸ່ນ", "ja_JP": "ຍີ່ປຸ່ນ (ຍີ່ປຸ່ນ)", "ka": "ຈໍຈຽນ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index d254752429d1d..349020a01926a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -201,6 +201,7 @@ "es_AR": "ispanų (Argentina)", "es_BO": "ispanų (Bolivija)", "es_BR": "ispanų (Brazilija)", + "es_BZ": "ispanų (Belizas)", "es_CL": "ispanų (Čilė)", "es_CO": "ispanų (Kolumbija)", "es_CR": "ispanų (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italų (Šveicarija)", "it_IT": "italų (Italija)", "it_SM": "italų (San Marinas)", + "it_VA": "italų (Vatikano Miesto Valstybė)", "ja": "japonų", "ja_JP": "japonų (Japonija)", "ka": "gruzinų", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lu.json b/src/Symfony/Component/Intl/Resources/data/locales/lu.json index 2551c1d61a331..2afd8516d9b40 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lu.json @@ -146,6 +146,7 @@ "es_AR": "Lihispania (Alijantine)", "es_BO": "Lihispania (Mbolivi)", "es_BR": "Lihispania (Mnulezile)", + "es_BZ": "Lihispania (Belize)", "es_CL": "Lihispania (Shili)", "es_CO": "Lihispania (Kolombi)", "es_CR": "Lihispania (Kositarika)", @@ -231,6 +232,7 @@ "it_CH": "Litali (Swise)", "it_IT": "Litali (Itali)", "it_SM": "Litali (Santu Marine)", + "it_VA": "Litali (Nvatika)", "ja": "Liyapani", "ja_JP": "Liyapani (Japu)", "ko": "Likoreya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index 35d1907a26e66..41c468a119218 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -71,7 +71,7 @@ "ce": "čečenu", "ce_RU": "čečenu (Krievija)", "cs": "čehu", - "cs_CZ": "čehu (Čehijas Republika)", + "cs_CZ": "čehu (Čehija)", "cy": "velsiešu", "cy_GB": "velsiešu (Lielbritānija)", "da": "dāņu", @@ -201,6 +201,7 @@ "es_AR": "spāņu (Argentīna)", "es_BO": "spāņu (Bolīvija)", "es_BR": "spāņu (Brazīlija)", + "es_BZ": "spāņu (Beliza)", "es_CL": "spāņu (Čīle)", "es_CO": "spāņu (Kolumbija)", "es_CR": "spāņu (Kostarika)", @@ -321,12 +322,13 @@ "ig_NG": "igbo (Nigērija)", "ii": "Sičuaņas ji", "ii_CN": "Sičuaņas ji (Ķīna)", - "is": "īslandiešu", - "is_IS": "īslandiešu (Īslande)", + "is": "islandiešu", + "is_IS": "islandiešu (Islande)", "it": "itāļu", "it_CH": "itāļu (Šveice)", "it_IT": "itāļu (Itālija)", "it_SM": "itāļu (Sanmarīno)", + "it_VA": "itāļu (Vatikāns)", "ja": "japāņu", "ja_JP": "japāņu (Japāna)", "ka": "gruzīnu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index ee24b32fc8f21..f76e2d4270f69 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/meta.json @@ -208,6 +208,7 @@ "es_AR", "es_BO", "es_BR", + "es_BZ", "es_CL", "es_CO", "es_CR", @@ -336,6 +337,7 @@ "it_CH", "it_IT", "it_SM", + "it_VA", "iw", "iw_IL", "ja", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mg.json b/src/Symfony/Component/Intl/Resources/data/locales/mg.json index a6e5d64512017..278f9ee58a36d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mg.json @@ -146,6 +146,7 @@ "es_AR": "Espaniola (Arzantina)", "es_BO": "Espaniola (Bolivia)", "es_BR": "Espaniola (Brezila)", + "es_BZ": "Espaniola (Belize)", "es_CL": "Espaniola (Shili)", "es_CO": "Espaniola (Kôlômbia)", "es_CR": "Espaniola (Kosta Rikà)", @@ -231,6 +232,7 @@ "it_CH": "Italianina (Soisa)", "it_IT": "Italianina (Italia)", "it_SM": "Italianina (Saint-Marin)", + "it_VA": "Italianina (Firenen’i Vatikana)", "ja": "Japoney", "ja_JP": "Japoney (Japana)", "km": "khmer", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 1fb0e03b5b524..8919fcaac6de1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -71,7 +71,7 @@ "ce": "чеченски", "ce_RU": "чеченски (Русија)", "cs": "чешки", - "cs_CZ": "чешки (Република Чешка)", + "cs_CZ": "чешки (Чешка)", "cy": "велшки", "cy_GB": "велшки (Обединето Кралство)", "da": "дански", @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарија)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапонски", "ja_JP": "јапонски (Јапонија)", "ka": "грузиски", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index 6e4b6520eaff6..8301b3d484c47 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -71,7 +71,7 @@ "ce": "ചെചൻ", "ce_RU": "ചെചൻ (റഷ്യ)", "cs": "ചെക്ക്", - "cs_CZ": "ചെക്ക് (ചെക്ക് റിപ്പബ്ലിക്)", + "cs_CZ": "ചെക്ക് (ചെക്കിയ)", "cy": "വെൽഷ്", "cy_GB": "വെൽഷ് (യുണൈറ്റഡ് കിംഗ്ഡം)", "da": "ഡാനിഷ്", @@ -201,6 +201,7 @@ "es_AR": "സ്‌പാനിഷ് (അർജൻറീന)", "es_BO": "സ്‌പാനിഷ് (ബൊളീവിയ)", "es_BR": "സ്‌പാനിഷ് (ബ്രസീൽ)", + "es_BZ": "സ്‌പാനിഷ് (ബെലീസ്)", "es_CL": "സ്‌പാനിഷ് (ചിലി)", "es_CO": "സ്‌പാനിഷ് (കൊളംബിയ)", "es_CR": "സ്‌പാനിഷ് (കോസ്റ്ററിക്ക)", @@ -327,6 +328,7 @@ "it_CH": "ഇറ്റാലിയൻ (സ്വിറ്റ്സർലാൻഡ്)", "it_IT": "ഇറ്റാലിയൻ (ഇറ്റലി)", "it_SM": "ഇറ്റാലിയൻ (സാൻ മറിനോ)", + "it_VA": "ഇറ്റാലിയൻ (വത്തിക്കാൻ)", "ja": "ജാപ്പനീസ്", "ja_JP": "ജാപ്പനീസ് (ജപ്പാൻ)", "ka": "ജോർജിയൻ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index 16347aca44724..cc9ce540aa5ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -71,7 +71,7 @@ "ce": "чечень", "ce_RU": "чечень (Орос)", "cs": "чех", - "cs_CZ": "чех (Бүгд Найрамдах Чех Улс)", + "cs_CZ": "чех (Чех)", "cy": "уэльс", "cy_GB": "уэльс (Их Британи)", "da": "дани", @@ -201,6 +201,7 @@ "es_AR": "испани (Аргентин)", "es_BO": "испани (Боливи)", "es_BR": "испани (Бразил)", + "es_BZ": "испани (Белиз)", "es_CL": "испани (Чили)", "es_CO": "испани (Колумб)", "es_CR": "испани (Коста Рика)", @@ -327,6 +328,7 @@ "it_CH": "итали (Швейцари)", "it_IT": "итали (Итали)", "it_SM": "итали (Сан-Марино)", + "it_VA": "итали (Ватикан хот улс)", "ja": "япон", "ja_JP": "япон (Япон)", "ka": "гүрж", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index 96f54794c525a..b051587194154 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -71,7 +71,7 @@ "ce": "चेचेन", "ce_RU": "चेचेन (रशिया)", "cs": "झेक", - "cs_CZ": "झेक (झेक प्रजासत्ताक)", + "cs_CZ": "झेक (झेकिया)", "cy": "वेल्श", "cy_GB": "वेल्श (युनायटेड किंगडम)", "da": "डॅनिश", @@ -201,6 +201,7 @@ "es_AR": "स्पॅनिश (अर्जेंटिना)", "es_BO": "स्पॅनिश (बोलिव्हिया)", "es_BR": "स्पॅनिश (ब्राझिल)", + "es_BZ": "स्पॅनिश (बलिझ)", "es_CL": "स्पॅनिश (चिली)", "es_CO": "स्पॅनिश (कोलम्बिया)", "es_CR": "स्पॅनिश (कोस्टा रिका)", @@ -327,6 +328,7 @@ "it_CH": "इटालियन (स्वित्झर्लंड)", "it_IT": "इटालियन (इटली)", "it_SM": "इटालियन (सॅन मरीनो)", + "it_VA": "इटालियन (व्हॅटिकन सिटी)", "ja": "जपानी", "ja_JP": "जपानी (जपान)", "ka": "जॉर्जियन", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 7f44d89d94b09..4c3649ebe6e3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Rusia)", "cs": "Czech", - "cs_CZ": "Czech (Republik Czech)", + "cs_CZ": "Czech (Czechia)", "cy": "Wales", "cy_GB": "Wales (United Kingdom)", "da": "Denmark", @@ -201,6 +201,7 @@ "es_AR": "Sepanyol (Argentina)", "es_BO": "Sepanyol (Bolivia)", "es_BR": "Sepanyol (Brazil)", + "es_BZ": "Sepanyol (Belize)", "es_CL": "Sepanyol (Chile)", "es_CO": "Sepanyol (Colombia)", "es_CR": "Sepanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Itali (Switzerland)", "it_IT": "Itali (Itali)", "it_SM": "Itali (San Marino)", + "it_VA": "Itali (Kota Vatican)", "ja": "Jepun", "ja_JP": "Jepun (Jepun)", "ka": "Georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mt.json b/src/Symfony/Component/Intl/Resources/data/locales/mt.json index 77cff282f7f30..c369633d99669 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -201,6 +201,7 @@ "es_AR": "Spanjol (l-Arġentina)", "es_BO": "Spanjol (il-Bolivja)", "es_BR": "Spanjol (Il-Brażil)", + "es_BZ": "Spanjol (il-Belize)", "es_CL": "Spanjol (iċ-Ċili)", "es_CO": "Spanjol (il-Kolombja)", "es_CR": "Spanjol (il-Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Taljan (Żvizzera)", "it_IT": "Taljan (l-Italja)", "it_SM": "Taljan (San Marino)", + "it_VA": "Taljan (l-Istat tal-Belt tal-Vatikan)", "ja": "Ġappuniż", "ja_JP": "Ġappuniż (il-Ġappun)", "ka": "Ġorġjan", @@ -527,9 +529,9 @@ "ug_CN": "Uyghur (CN)", "uk": "Ukren", "uk_UA": "Ukren (l-Ukrajna)", - "ur": "ur", - "ur_IN": "ur (l-Indja)", - "ur_PK": "ur (il-Pakistan)", + "ur": "Urdu", + "ur_IN": "Urdu (l-Indja)", + "ur_PK": "Urdu (il-Pakistan)", "uz": "Uzbek", "uz_AF": "Uzbek (l-Afganistan)", "uz_Arab": "Uzbek (Għarbi)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/my.json b/src/Symfony/Component/Intl/Resources/data/locales/my.json index 27ffcc923676d..9121dc3c58c72 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -71,7 +71,7 @@ "ce": "ချက်ချန်း", "ce_RU": "ချက်ချန်း (ရုရှ)", "cs": "ချက်", - "cs_CZ": "ချက် (ချက် ပြည်ထောင်စု)", + "cs_CZ": "ချက် (ချက်ကီယား)", "cy": "ဝေလ", "cy_GB": "ဝေလ (ယူနိုက်တက်ကင်းဒမ်း)", "da": "ဒိန်းမတ်", @@ -201,6 +201,7 @@ "es_AR": "စပိန် (အာဂျင်တီးနား)", "es_BO": "စပိန် (ဘိုလီးဗီးယား)", "es_BR": "စပိန် (ဘရာဇီး)", + "es_BZ": "စပိန် (ဘလိဇ်)", "es_CL": "စပိန် (ချီလီ)", "es_CO": "စပိန် (ကိုလံဘီယာ)", "es_CR": "စပိန် (ကို့စ်တာရီကာ)", @@ -327,6 +328,7 @@ "it_CH": "အီတလီ (ဆွစ်ဇာလန်)", "it_IT": "အီတလီ (အီတလီ)", "it_SM": "အီတလီ (ဆန်မာရီနို)", + "it_VA": "အီတလီ (ဗာတီကန်စီတီး)", "ja": "ဂျပန်", "ja_JP": "ဂျပန် (ဂျပန်)", "ka": "ဂျော်ဂျီယာ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index 7ecf289d73fc5..eea9468d335bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -71,7 +71,7 @@ "ce": "tsjetsjensk", "ce_RU": "tsjetsjensk (Russland)", "cs": "tsjekkisk", - "cs_CZ": "tsjekkisk (Den tsjekkiske republikk)", + "cs_CZ": "tsjekkisk (Tsjekkia)", "cy": "walisisk", "cy_GB": "walisisk (Storbritannia)", "da": "dansk", @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasil)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Sveits)", "it_IT": "italiensk (Italia)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nd.json b/src/Symfony/Component/Intl/Resources/data/locales/nd.json index e0860f0c2ce44..26dc97248755c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nd.json @@ -146,6 +146,7 @@ "es_AR": "isi-Sipeyini (Ajentina)", "es_BO": "isi-Sipeyini (Bholiviya)", "es_BR": "isi-Sipeyini (Brazili)", + "es_BZ": "isi-Sipeyini (Bhelize)", "es_CL": "isi-Sipeyini (Chile)", "es_CO": "isi-Sipeyini (Kholombiya)", "es_CR": "isi-Sipeyini (Khosta Rikha)", @@ -231,6 +232,7 @@ "it_CH": "isi-Italiano (Switzerland)", "it_IT": "isi-Italiano (Itali)", "it_SM": "isi-Italiano (San Marino)", + "it_VA": "isi-Italiano (Vatican State)", "ja": "isi-Japhani", "ja_JP": "isi-Japhani (Japan)", "km": "isi-Khambodiya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index 84a66be45c82b..a1d1015c0de4a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -71,7 +71,7 @@ "ce": "चेचेन", "ce_RU": "चेचेन (रूस)", "cs": "चेक", - "cs_CZ": "चेक (चेक गणतन्त्र)", + "cs_CZ": "चेक (चेचिया)", "cy": "वेल्श", "cy_GB": "वेल्श (बेलायत)", "da": "डेनिस", @@ -201,6 +201,7 @@ "es_AR": "स्पेनी (अर्जेन्टिना)", "es_BO": "स्पेनी (बोलिभिया)", "es_BR": "स्पेनी (ब्राजिल)", + "es_BZ": "स्पेनी (बेलिज)", "es_CL": "स्पेनी (चिली)", "es_CO": "स्पेनी (कोलोम्बिया)", "es_CR": "स्पेनी (कोष्टारिका)", @@ -327,6 +328,7 @@ "it_CH": "इटालेली (स्विजरल्याण्ड)", "it_IT": "इटालेली (इटाली)", "it_SM": "इटालेली (सान् मारिनो)", + "it_VA": "इटालेली (भेटिकन सिटी)", "ja": "जापानी", "ja_JP": "जापानी (जापान)", "ka": "जर्जियाली", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index 17d9dee7c959e..7fcfc6f382560 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -71,7 +71,7 @@ "ce": "Tsjetsjeens", "ce_RU": "Tsjetsjeens (Rusland)", "cs": "Tsjechisch", - "cs_CZ": "Tsjechisch (Tsjechië)", + "cs_CZ": "Tsjechisch (Tsjechische Republiek)", "cy": "Welsh", "cy_GB": "Welsh (Verenigd Koninkrijk)", "da": "Deens", @@ -201,6 +201,7 @@ "es_AR": "Spaans (Argentinië)", "es_BO": "Spaans (Bolivia)", "es_BR": "Spaans (Brazilië)", + "es_BZ": "Spaans (Belize)", "es_CL": "Spaans (Chili)", "es_CO": "Spaans (Colombia)", "es_CR": "Spaans (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaans (Zwitserland)", "it_IT": "Italiaans (Italië)", "it_SM": "Italiaans (San Marino)", + "it_VA": "Italiaans (Vaticaanstad)", "ja": "Japans", "ja_JP": "Japans (Japan)", "ka": "Georgisch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nn.json b/src/Symfony/Component/Intl/Resources/data/locales/nn.json index db33ea2729638..f5761260515fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasil)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Sveits)", "it_IT": "italiensk (Italia)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index dac32932b2b46..73f1b75a35a72 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -197,6 +197,7 @@ "es_AR": "ସ୍ପାନିସ୍ (ଆର୍ଜେଣ୍ଟିନା)", "es_BO": "ସ୍ପାନିସ୍ (ବୋଲଭିଆ)", "es_BR": "ସ୍ପାନିସ୍ (ବ୍ରାଜିଲ୍)", + "es_BZ": "ସ୍ପାନିସ୍ (ବେଲିଜ୍)", "es_CL": "ସ୍ପାନିସ୍ (ଚିଲ୍ଲୀ)", "es_CO": "ସ୍ପାନିସ୍ (କୋଲମ୍ବିଆ)", "es_CR": "ସ୍ପାନିସ୍ (କୋଷ୍ଟା ରିକା)", @@ -321,6 +322,7 @@ "it_CH": "ଇଟାଲିଆନ୍ (ସ୍ବିଜରଲ୍ୟାଣ୍ଡ)", "it_IT": "ଇଟାଲିଆନ୍ (ଇଟାଲୀ)", "it_SM": "ଇଟାଲିଆନ୍ (ସାନ୍ ମାରିନୋ)", + "it_VA": "ଇଟାଲିଆନ୍ (ଭାଟିକାନ୍)", "ja": "ଜାପାନୀଜ୍", "ja_JP": "ଜାପାନୀଜ୍ (ଜାପାନ୍)", "ka": "ଜର୍ଜିଆନ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 7ffa0ec2d1b0d..e4e55cba076dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -71,7 +71,7 @@ "ce": "ਚੇਚਨ", "ce_RU": "ਚੇਚਨ (ਰੂਸ)", "cs": "ਚੈੱਕ", - "cs_CZ": "ਚੈੱਕ (ਚੈੱਕ ਗਣਰਾਜ)", + "cs_CZ": "ਚੈੱਕ (ਚੈਕੀਆ)", "cy": "ਵੈਲਸ਼", "cy_GB": "ਵੈਲਸ਼ (ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ)", "da": "ਡੈਨਿਸ਼", @@ -201,6 +201,7 @@ "es_AR": "ਸਪੇਨੀ (ਅਰਜਨਟੀਨਾ)", "es_BO": "ਸਪੇਨੀ (ਬੋਲੀਵੀਆ)", "es_BR": "ਸਪੇਨੀ (ਬ੍ਰਾਜ਼ੀਲ)", + "es_BZ": "ਸਪੇਨੀ (ਬੇਲੀਜ਼)", "es_CL": "ਸਪੇਨੀ (ਚਿਲੀ)", "es_CO": "ਸਪੇਨੀ (ਕੋਲੰਬੀਆ)", "es_CR": "ਸਪੇਨੀ (ਕੋਸਟਾ ਰੀਕਾ)", @@ -327,6 +328,7 @@ "it_CH": "ਇਤਾਲਵੀ (ਸਵਿਟਜ਼ਰਲੈਂਡ)", "it_IT": "ਇਤਾਲਵੀ (ਇਟਲੀ)", "it_SM": "ਇਤਾਲਵੀ (ਸੈਨ ਮਰੀਨੋ)", + "it_VA": "ਇਤਾਲਵੀ (ਵੈਟੀਕਨ ਸਿਟੀ)", "ja": "ਜਪਾਨੀ", "ja_JP": "ਜਪਾਨੀ (ਜਪਾਨ)", "ka": "ਜਾਰਜੀਆਈ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index 2b2772ce55619..20261e9cbe1f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -201,6 +201,7 @@ "es_AR": "hiszpański (Argentyna)", "es_BO": "hiszpański (Boliwia)", "es_BR": "hiszpański (Brazylia)", + "es_BZ": "hiszpański (Belize)", "es_CL": "hiszpański (Chile)", "es_CO": "hiszpański (Kolumbia)", "es_CR": "hiszpański (Kostaryka)", @@ -327,6 +328,7 @@ "it_CH": "włoski (Szwajcaria)", "it_IT": "włoski (Włochy)", "it_SM": "włoski (San Marino)", + "it_VA": "włoski (Watykan)", "ja": "japoński", "ja_JP": "japoński (Japonia)", "ka": "gruziński", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 6a10998045e04..f1993fe1f6099 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rússia)", "cs": "tcheco", - "cs_CZ": "tcheco (República Tcheca)", + "cs_CZ": "tcheco (Tchéquia)", "cy": "galês", "cy_GB": "galês (Reino Unido)", "da": "dinamarquês", @@ -201,6 +201,7 @@ "es_AR": "espanhol (Argentina)", "es_BO": "espanhol (Bolívia)", "es_BR": "espanhol (Brasil)", + "es_BZ": "espanhol (Belize)", "es_CL": "espanhol (Chile)", "es_CO": "espanhol (Colômbia)", "es_CR": "espanhol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suíça)", "it_IT": "italiano (Itália)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Cidade do Vaticano)", "ja": "japonês", "ja_JP": "japonês (Japão)", "ka": "georgiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/qu.json b/src/Symfony/Component/Intl/Resources/data/locales/qu.json index 614de530d23d6..2280534bfd886 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -255,6 +255,7 @@ "it_CH": "Italiano Simi (Suiza)", "it_IT": "Italiano Simi (Italia)", "it_SM": "Italiano Simi (San Marino)", + "it_VA": "Italiano Simi (Santa Sede (Ciudad del Vaticano))", "ja": "Japones Simi", "ka": "Georgiano Simi", "kk": "Kazajo Simi", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index 2f842405ac885..389fe9c9b8a9a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -197,6 +197,7 @@ "es_AR": "spagnol (Argentinia)", "es_BO": "spagnol (Bolivia)", "es_BR": "spagnol (Brasila)", + "es_BZ": "spagnol (Belize)", "es_CL": "spagnol (Chile)", "es_CO": "spagnol (Columbia)", "es_CR": "spagnol (Costa Rica)", @@ -321,6 +322,7 @@ "it_CH": "talian (Svizra)", "it_IT": "talian (Italia)", "it_SM": "talian (San Marino)", + "it_VA": "talian (Citad dal Vatican)", "ja": "giapunais", "ja_JP": "giapunais (Giapun)", "ka": "georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rn.json b/src/Symfony/Component/Intl/Resources/data/locales/rn.json index fe43fc3866d8f..5da97bee5c996 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rn.json @@ -146,6 +146,7 @@ "es_AR": "Icesipanyolo (Arijantine)", "es_BO": "Icesipanyolo (Boliviya)", "es_BR": "Icesipanyolo (Burezili)", + "es_BZ": "Icesipanyolo (Belize)", "es_CL": "Icesipanyolo (Shili)", "es_CO": "Icesipanyolo (Kolombiya)", "es_CR": "Icesipanyolo (Kositarika)", @@ -231,6 +232,7 @@ "it_CH": "Igitaliyani (Ubusuwisi)", "it_IT": "Igitaliyani (Ubutaliyani)", "it_SM": "Igitaliyani (Sanimarino)", + "it_VA": "Igitaliyani (Umurwa wa Vatikani)", "ja": "Ikiyapani", "ja_JP": "Ikiyapani (Ubuyapani)", "km": "Igikambodiya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index 2372763071676..46ab314826872 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -71,7 +71,7 @@ "ce": "cecenă", "ce_RU": "cecenă (Rusia)", "cs": "cehă", - "cs_CZ": "cehă (Republica Cehă)", + "cs_CZ": "cehă (Cehia)", "cy": "galeză", "cy_GB": "galeză (Regatul Unit)", "da": "daneză", @@ -201,6 +201,7 @@ "es_AR": "spaniolă (Argentina)", "es_BO": "spaniolă (Bolivia)", "es_BR": "spaniolă (Brazilia)", + "es_BZ": "spaniolă (Belize)", "es_CL": "spaniolă (Chile)", "es_CO": "spaniolă (Columbia)", "es_CR": "spaniolă (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiană (Elveția)", "it_IT": "italiană (Italia)", "it_SM": "italiană (San Marino)", + "it_VA": "italiană (Statul Cetății Vaticanului)", "ja": "japoneză", "ja_JP": "japoneză (Japonia)", "ka": "georgiană", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 36c7a4de543e6..0b2b796827f3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -201,6 +201,7 @@ "es_AR": "испанский (Аргентина)", "es_BO": "испанский (Боливия)", "es_BR": "испанский (Бразилия)", + "es_BZ": "испанский (Белиз)", "es_CL": "испанский (Чили)", "es_CO": "испанский (Колумбия)", "es_CR": "испанский (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "итальянский (Швейцария)", "it_IT": "итальянский (Италия)", "it_SM": "итальянский (Сан-Марино)", + "it_VA": "итальянский (Ватикан)", "ja": "японский", "ja_JP": "японский (Япония)", "ka": "грузинский", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/se.json b/src/Symfony/Component/Intl/Resources/data/locales/se.json index 4647d0bcba81c..cb678264cfb63 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/se.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/se.json @@ -179,6 +179,7 @@ "es_AR": "spánskkagiella (Argentina)", "es_BO": "spánskkagiella (Bolivia)", "es_BR": "spánskkagiella (Brasil)", + "es_BZ": "spánskkagiella (Belize)", "es_CL": "spánskkagiella (Čiile)", "es_CO": "spánskkagiella (Kolombia)", "es_CR": "spánskkagiella (Costa Rica)", @@ -288,6 +289,7 @@ "it_CH": "itáliagiella (Šveica)", "it_IT": "itáliagiella (Itália)", "it_SM": "itáliagiella (San Marino)", + "it_VA": "itáliagiella (Vatikána)", "ja": "japánagiella", "ja_JP": "japánagiella (Japána)", "ka": "georgiagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sg.json b/src/Symfony/Component/Intl/Resources/data/locales/sg.json index 3d1d1d6e85d05..cb6901b1c9798 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sg.json @@ -146,6 +146,7 @@ "es_AR": "Espanyöl (Arzantîna)", "es_BO": "Espanyöl (Bolivïi)", "es_BR": "Espanyöl (Brezîli)", + "es_BZ": "Espanyöl (Belîzi)", "es_CL": "Espanyöl (Shilïi)", "es_CO": "Espanyöl (Kolombïi)", "es_CR": "Espanyöl (Kôsta Rîka)", @@ -231,6 +232,7 @@ "it_CH": "Ênnde (Sûîsi)", "it_IT": "Ênnde (Italùii)", "it_SM": "Ênnde (Sên-Marëen)", + "it_VA": "Ênnde (Letëe tî Vatikäan)", "ja": "Zaponëe", "ja_JP": "Zaponëe (Zapöon)", "km": "Kmêre", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index 8cdb24318ff13..3a882255a246b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -71,7 +71,7 @@ "ce": "චෙච්නියානු", "ce_RU": "චෙච්නියානු (රුසියාව)", "cs": "චෙත්", - "cs_CZ": "චෙත් (චෙක් ජනරජය)", + "cs_CZ": "චෙත් (චෙක්)", "cy": "වේල්ස්", "cy_GB": "වේල්ස් (එක්සත් රාජධානිය)", "da": "ඩැනිශ්", @@ -201,6 +201,7 @@ "es_AR": "ස්පාඤ්ඤ (ආර්ජෙන්ටිනාව)", "es_BO": "ස්පාඤ්ඤ (බොලීවියාව)", "es_BR": "ස්පාඤ්ඤ (බ්‍රසීලය)", + "es_BZ": "ස්පාඤ්ඤ (බෙලීස්)", "es_CL": "ස්පාඤ්ඤ (චිලී)", "es_CO": "ස්පාඤ්ඤ (කොළොම්බියාව)", "es_CR": "ස්පාඤ්ඤ (කොස්ටරිකාව)", @@ -327,6 +328,7 @@ "it_CH": "ඉතාලි (ස්විස්ටර්ලන්තය)", "it_IT": "ඉතාලි (ඉතාලිය)", "it_SM": "ඉතාලි (සැන් මැරිනෝ)", + "it_VA": "ඉතාලි (වතිකානු නගරය)", "ja": "ජපන්", "ja_JP": "ජපන් (ජපානය)", "ka": "ජෝර්ජියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index 75af02d31792c..7493c1e2d1e48 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -71,7 +71,7 @@ "ce": "čečenčina", "ce_RU": "čečenčina (Rusko)", "cs": "čeština", - "cs_CZ": "čeština (Česká republika)", + "cs_CZ": "čeština (Česko)", "cy": "waleština", "cy_GB": "waleština (Spojené kráľovstvo)", "da": "dánčina", @@ -201,6 +201,7 @@ "es_AR": "španielčina (Argentína)", "es_BO": "španielčina (Bolívia)", "es_BR": "španielčina (Brazília)", + "es_BZ": "španielčina (Belize)", "es_CL": "španielčina (Čile)", "es_CO": "španielčina (Kolumbia)", "es_CR": "španielčina (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "taliančina (Švajčiarsko)", "it_IT": "taliančina (Taliansko)", "it_SM": "taliančina (San Maríno)", + "it_VA": "taliančina (Vatikán)", "ja": "japončina", "ja_JP": "japončina (Japonsko)", "ka": "gruzínčina", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sl.json b/src/Symfony/Component/Intl/Resources/data/locales/sl.json index f5355db29528b..8f8ac53a453a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -201,6 +201,7 @@ "es_AR": "španščina (Argentina)", "es_BO": "španščina (Bolivija)", "es_BR": "španščina (Brazilija)", + "es_BZ": "španščina (Belize)", "es_CL": "španščina (Čile)", "es_CO": "španščina (Kolumbija)", "es_CR": "španščina (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italijanščina (Švica)", "it_IT": "italijanščina (Italija)", "it_SM": "italijanščina (San Marino)", + "it_VA": "italijanščina (Vatikan)", "ja": "japonščina", "ja_JP": "japonščina (Japonska)", "ka": "gruzijščina", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sn.json b/src/Symfony/Component/Intl/Resources/data/locales/sn.json index 1be618e2a8cd2..1d7d365852020 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sn.json @@ -145,6 +145,7 @@ "es_AR": "chiSpanish (Ajentina)", "es_BO": "chiSpanish (Bolivia)", "es_BR": "chiSpanish (Brazil)", + "es_BZ": "chiSpanish (Belize)", "es_CL": "chiSpanish (Chile)", "es_CO": "chiSpanish (Kolombia)", "es_CR": "chiSpanish (Kostarika)", @@ -230,6 +231,7 @@ "it_CH": "chiTariana (Switzerland)", "it_IT": "chiTariana (Italy)", "it_SM": "chiTariana (San Marino)", + "it_VA": "chiTariana (Vatican State)", "ja": "chiJapani", "ja_JP": "chiJapani (Japan)", "km": "chiKhema", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/so.json b/src/Symfony/Component/Intl/Resources/data/locales/so.json index f541e1ca111f3..8a0f2f5995f37 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/so.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/so.json @@ -146,6 +146,7 @@ "es_AR": "Isbaanish (Arjantiin)", "es_BO": "Isbaanish (Boliifiya)", "es_BR": "Isbaanish (Braasiil)", + "es_BZ": "Isbaanish (Belize)", "es_CL": "Isbaanish (Jili)", "es_CO": "Isbaanish (Kolombiya)", "es_CR": "Isbaanish (Kosta Riika)", @@ -233,6 +234,7 @@ "it_CH": "Talyaani (Swiiserlaand)", "it_IT": "Talyaani (Talyaani)", "it_SM": "Talyaani (San Marino)", + "it_VA": "Talyaani (Faatikaan)", "ja": "Jabbaaniis", "ja_JP": "Jabbaaniis (Jabaan)", "km": "Kamboodhian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index e7054787755fd..0bf259705f4c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -71,7 +71,7 @@ "ce": "çeçenisht", "ce_RU": "çeçenisht (Rusi)", "cs": "çekisht", - "cs_CZ": "çekisht (Republika Çeke)", + "cs_CZ": "çekisht (Çeki)", "cy": "uellsisht", "cy_GB": "uellsisht (Mbretëria e Bashkuar)", "da": "danisht", @@ -201,6 +201,7 @@ "es_AR": "spanjisht (Argjentinë)", "es_BO": "spanjisht (Bolivi)", "es_BR": "spanjisht (Brazil)", + "es_BZ": "spanjisht (Belizë)", "es_CL": "spanjisht (Kili)", "es_CO": "spanjisht (Kolumbi)", "es_CR": "spanjisht (Kosta-Rikë)", @@ -327,6 +328,7 @@ "it_CH": "italisht (Zvicër)", "it_IT": "italisht (Itali)", "it_SM": "italisht (San-Marino)", + "it_VA": "italisht (Vatikan)", "ja": "japonisht", "ja_JP": "japonisht (Japoni)", "ka": "gjeorgjisht", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr.json b/src/Symfony/Component/Intl/Resources/data/locales/sr.json index a5f6cce48c32a..443a82537f2e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарска)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапански", "ja_JP": "јапански (Јапан)", "ka": "грузијски", 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 e5bb38c65f9d6..a97cc61185593 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -201,6 +201,7 @@ "es_AR": "španski (Argentina)", "es_BO": "španski (Bolivija)", "es_BR": "španski (Brazil)", + "es_BZ": "španski (Belize)", "es_CL": "španski (Čile)", "es_CO": "španski (Kolumbija)", "es_CR": "španski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italijanski (Švajcarska)", "it_IT": "italijanski (Italija)", "it_SM": "italijanski (San Marino)", + "it_VA": "italijanski (Vatikan)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index 03e19b6fea1c3..7dabf849a8b02 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -201,6 +201,7 @@ "es_AR": "spanska (Argentina)", "es_BO": "spanska (Bolivia)", "es_BR": "spanska (Brasilien)", + "es_BZ": "spanska (Belize)", "es_CL": "spanska (Chile)", "es_CO": "spanska (Colombia)", "es_CR": "spanska (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italienska (Schweiz)", "it_IT": "italienska (Italien)", "it_SM": "italienska (San Marino)", + "it_VA": "italienska (Vatikanstaten)", "ja": "japanska", "ja_JP": "japanska (Japan)", "ka": "georgiska", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw.json b/src/Symfony/Component/Intl/Resources/data/locales/sw.json index 52afa89d495fc..077a96006b076 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -71,7 +71,7 @@ "ce": "Kichechenia", "ce_RU": "Kichechenia (Urusi)", "cs": "Kicheki", - "cs_CZ": "Kicheki (Jamhuri ya Cheki)", + "cs_CZ": "Kicheki (Chechia)", "cy": "Kiwelisi", "cy_GB": "Kiwelisi (Uingereza)", "da": "Kidenmaki", @@ -201,6 +201,7 @@ "es_AR": "Kihispania (Ajentina)", "es_BO": "Kihispania (Bolivia)", "es_BR": "Kihispania (Brazili)", + "es_BZ": "Kihispania (Belize)", "es_CL": "Kihispania (Chile)", "es_CO": "Kihispania (Kolombia)", "es_CR": "Kihispania (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "Kiitaliano (Uswisi)", "it_IT": "Kiitaliano (Italia)", "it_SM": "Kiitaliano (San Marino)", + "it_VA": "Kiitaliano (Vatikani)", "ja": "Kijapani", "ja_JP": "Kijapani (Japani)", "ka": "Kijojia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ta.json b/src/Symfony/Component/Intl/Resources/data/locales/ta.json index e8d173ace49d8..a74911d44aecd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -71,7 +71,7 @@ "ce": "செச்சென்", "ce_RU": "செச்சென் (ரஷ்யா)", "cs": "செக்", - "cs_CZ": "செக் (செக் குடியரசு)", + "cs_CZ": "செக் (செசியா)", "cy": "வேல்ஷ்", "cy_GB": "வேல்ஷ் (யுனைடெட் கிங்டம்)", "da": "டேனிஷ்", @@ -201,6 +201,7 @@ "es_AR": "ஸ்பானிஷ் (அர்ஜென்டினா)", "es_BO": "ஸ்பானிஷ் (பொலிவியா)", "es_BR": "ஸ்பானிஷ் (பிரேசில்)", + "es_BZ": "ஸ்பானிஷ் (பெலிஸ்)", "es_CL": "ஸ்பானிஷ் (சிலி)", "es_CO": "ஸ்பானிஷ் (கொலம்பியா)", "es_CR": "ஸ்பானிஷ் (கோஸ்டாரிகா)", @@ -327,6 +328,7 @@ "it_CH": "இத்தாலியன் (ஸ்விட்சர்லாந்து)", "it_IT": "இத்தாலியன் (இத்தாலி)", "it_SM": "இத்தாலியன் (சான் மரினோ)", + "it_VA": "இத்தாலியன் (வாடிகன் நகரம்)", "ja": "ஜப்பானியம்", "ja_JP": "ஜப்பானியம் (ஜப்பான்)", "ka": "ஜார்ஜியன்", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index da22f5c52d384..80f2d2d21b74b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -71,7 +71,7 @@ "ce": "చెచెన్", "ce_RU": "చెచెన్ (రష్యా)", "cs": "చెక్", - "cs_CZ": "చెక్ (చెక్ రిపబ్లిక్)", + "cs_CZ": "చెక్ (చెక్‌చియ)", "cy": "వెల్ష్", "cy_GB": "వెల్ష్ (యునైటెడ్ కింగ్‌డమ్)", "da": "డానిష్", @@ -201,6 +201,7 @@ "es_AR": "స్పానిష్ (అర్జెంటీనా)", "es_BO": "స్పానిష్ (బొలీవియా)", "es_BR": "స్పానిష్ (బ్రెజిల్)", + "es_BZ": "స్పానిష్ (బెలిజ్)", "es_CL": "స్పానిష్ (చిలీ)", "es_CO": "స్పానిష్ (కొలంబియా)", "es_CR": "స్పానిష్ (కోస్టా రికా)", @@ -327,6 +328,7 @@ "it_CH": "ఇటాలియన్ (స్విట్జర్లాండ్)", "it_IT": "ఇటాలియన్ (ఇటలీ)", "it_SM": "ఇటాలియన్ (సాన్ మారినో)", + "it_VA": "ఇటాలియన్ (వాటికన్ నగరం)", "ja": "జపనీస్", "ja_JP": "జపనీస్ (జపాన్)", "ka": "జార్జియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index 2538f8d0ebb3c..4593d101c78cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -71,7 +71,7 @@ "ce": "เชเชน", "ce_RU": "เชเชน (รัสเซีย)", "cs": "เช็ก", - "cs_CZ": "เช็ก (สาธารณรัฐเช็ก)", + "cs_CZ": "เช็ก (เช็ก)", "cy": "เวลส์", "cy_GB": "เวลส์ (สหราชอาณาจักร)", "da": "เดนมาร์ก", @@ -201,6 +201,7 @@ "es_AR": "สเปน (อาร์เจนตินา)", "es_BO": "สเปน (โบลิเวีย)", "es_BR": "สเปน (บราซิล)", + "es_BZ": "สเปน (เบลีซ)", "es_CL": "สเปน (ชิลี)", "es_CO": "สเปน (โคลอมเบีย)", "es_CR": "สเปน (คอสตาริกา)", @@ -327,6 +328,7 @@ "it_CH": "อิตาลี (สวิตเซอร์แลนด์)", "it_IT": "อิตาลี (อิตาลี)", "it_SM": "อิตาลี (ซานมารีโน)", + "it_VA": "อิตาลี (นครวาติกัน)", "ja": "ญี่ปุ่น", "ja_JP": "ญี่ปุ่น (ญี่ปุ่น)", "ka": "จอร์เจีย", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/to.json b/src/Symfony/Component/Intl/Resources/data/locales/to.json index 2361d83719f79..d30c06bc91020 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -71,7 +71,7 @@ "ce": "lea fakasese", "ce_RU": "lea fakasese (Lūsia)", "cs": "lea fakaseki", - "cs_CZ": "lea fakaseki (Lipapilika Seki)", + "cs_CZ": "lea fakaseki (Sēkia)", "cy": "lea fakauēlesi", "cy_GB": "lea fakauēlesi (Pilitānia)", "da": "lea fakatenimaʻake", @@ -201,6 +201,7 @@ "es_AR": "lea fakasipēnisi (ʻAsenitina)", "es_BO": "lea fakasipēnisi (Polīvia)", "es_BR": "lea fakasipēnisi (Palāsili)", + "es_BZ": "lea fakasipēnisi (Pelise)", "es_CL": "lea fakasipēnisi (Sili)", "es_CO": "lea fakasipēnisi (Kolomipia)", "es_CR": "lea fakasipēnisi (Kosita Lika)", @@ -327,6 +328,7 @@ "it_CH": "lea fakaʻītali (Suisilani)", "it_IT": "lea fakaʻītali (ʻĪtali)", "it_SM": "lea fakaʻītali (Sā Malino)", + "it_VA": "lea fakaʻītali (Kolo Vatikani)", "ja": "lea fakasiapani", "ja_JP": "lea fakasiapani (Siapani)", "ka": "lea fakaseōsia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tr.json b/src/Symfony/Component/Intl/Resources/data/locales/tr.json index b70fa9427dba6..8219f6247fe67 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -71,7 +71,7 @@ "ce": "Çeçence", "ce_RU": "Çeçence (Rusya)", "cs": "Çekçe", - "cs_CZ": "Çekçe (Çek Cumhuriyeti)", + "cs_CZ": "Çekçe (Çekya)", "cy": "Galce", "cy_GB": "Galce (Birleşik Krallık)", "da": "Danca", @@ -201,6 +201,7 @@ "es_AR": "İspanyolca (Arjantin)", "es_BO": "İspanyolca (Bolivya)", "es_BR": "İspanyolca (Brezilya)", + "es_BZ": "İspanyolca (Belize)", "es_CL": "İspanyolca (Şili)", "es_CO": "İspanyolca (Kolombiya)", "es_CR": "İspanyolca (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "İtalyanca (İsviçre)", "it_IT": "İtalyanca (İtalya)", "it_SM": "İtalyanca (San Marino)", + "it_VA": "İtalyanca (Vatikan)", "ja": "Japonca", "ja_JP": "Japonca (Japonya)", "ka": "Gürcüce", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 41c8248f6f93e..7f7baf1da4750 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -201,6 +201,7 @@ "es_AR": "ئىسپانچە (ئارگېنتىنا)", "es_BO": "ئىسپانچە (بولىۋىيە)", "es_BR": "ئىسپانچە (بىرازىلىيە)", + "es_BZ": "ئىسپانچە (بېلىز)", "es_CL": "ئىسپانچە (چىلى)", "es_CO": "ئىسپانچە (كولومبىيە)", "es_CR": "ئىسپانچە (كوستارىكا)", @@ -327,6 +328,7 @@ "it_CH": "ئىتالىيانچە (شىۋېتسارىيە)", "it_IT": "ئىتالىيانچە (ئىتالىيە)", "it_SM": "ئىتالىيانچە (سان مارىنو)", + "it_VA": "ئىتالىيانچە (ۋاتىكان)", "ja": "ياپونچە", "ja_JP": "ياپونچە (ياپونىيە)", "ka": "گىرۇزچە", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index fee54b353b352..077f21849780b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -71,7 +71,7 @@ "ce": "чеченська", "ce_RU": "чеченська (Росія)", "cs": "чеська", - "cs_CZ": "чеська (Чеська Республіка)", + "cs_CZ": "чеська (Чехія)", "cy": "валлійська", "cy_GB": "валлійська (Велика Британія)", "da": "данська", @@ -201,6 +201,7 @@ "es_AR": "іспанська (Аргентина)", "es_BO": "іспанська (Болівія)", "es_BR": "іспанська (Бразилія)", + "es_BZ": "іспанська (Беліз)", "es_CL": "іспанська (Чилі)", "es_CO": "іспанська (Колумбія)", "es_CR": "іспанська (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "італійська (Швейцарія)", "it_IT": "італійська (Італія)", "it_SM": "італійська (Сан-Марино)", + "it_VA": "італійська (Ватикан)", "ja": "японська", "ja_JP": "японська (Японія)", "ka": "грузинська", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index b4a58fb17d339..ecc40ad756789 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -71,7 +71,7 @@ "ce": "چیچن", "ce_RU": "چیچن (روس)", "cs": "چیک", - "cs_CZ": "چیک (چیک جمہوریہ)", + "cs_CZ": "چیک (زکھیا)", "cy": "ویلش", "cy_GB": "ویلش (سلطنت متحدہ)", "da": "ڈینش", @@ -201,6 +201,7 @@ "es_AR": "ہسپانوی (ارجنٹینا)", "es_BO": "ہسپانوی (بولیویا)", "es_BR": "ہسپانوی (برازیل)", + "es_BZ": "ہسپانوی (بیلائز)", "es_CL": "ہسپانوی (چلی)", "es_CO": "ہسپانوی (کولمبیا)", "es_CR": "ہسپانوی (کوسٹا ریکا)", @@ -327,6 +328,7 @@ "it_CH": "اطالوی (سوئٹزر لینڈ)", "it_IT": "اطالوی (اٹلی)", "it_SM": "اطالوی (سان مارینو)", + "it_VA": "اطالوی (واٹیکن سٹی)", "ja": "جاپانی", "ja_JP": "جاپانی (جاپان)", "ka": "جارجی", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index 7ea75655321cd..4ef836ad0ff11 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -71,7 +71,7 @@ "ce": "chechen", "ce_RU": "chechen (Rossiya)", "cs": "chex", - "cs_CZ": "chex (Chexiya Respublikasi)", + "cs_CZ": "chex (Chexiya)", "cy": "valliy", "cy_GB": "valliy (Buyuk Britaniya)", "da": "dat", @@ -201,6 +201,7 @@ "es_AR": "ispancha (Argentina)", "es_BO": "ispancha (Boliviya)", "es_BR": "ispancha (Braziliya)", + "es_BZ": "ispancha (Beliz)", "es_CL": "ispancha (Chili)", "es_CO": "ispancha (Kolumbiya)", "es_CR": "ispancha (Kosta-Rika)", @@ -320,6 +321,7 @@ "it_CH": "italyan (Shveytsariya)", "it_IT": "italyan (Italiya)", "it_SM": "italyan (San-Marino)", + "it_VA": "italyan (Vatikan)", "ja": "yapon", "ja_JP": "yapon (Yaponiya)", "ka": "gruzincha", 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 7bca83877a3b8..8ec15c077c1cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -71,7 +71,7 @@ "ce": "чечен тили", "ce_RU": "чечен тили (Россия)", "cs": "чехча", - "cs_CZ": "чехча (Чехия Республикаси)", + "cs_CZ": "чехча (Чехия)", "cy": "уэлсча", "cy_GB": "уэлсча (Буюк Британия)", "da": "датча", @@ -201,6 +201,7 @@ "es_AR": "испанча (Аргентина)", "es_BO": "испанча (Боливия)", "es_BR": "испанча (Бразилия)", + "es_BZ": "испанча (Белиз)", "es_CL": "испанча (Чили)", "es_CO": "испанча (Колумбия)", "es_CR": "испанча (Коста-Рика)", @@ -326,6 +327,7 @@ "it_CH": "италянча (Швейцария)", "it_IT": "италянча (Италия)", "it_SM": "италянча (Сан-Марино)", + "it_VA": "италянча (Ватикан)", "ja": "японча", "ja_JP": "японча (Япония)", "ka": "грузинча", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index ec1cf7e30e2b6..a80a105f006cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -71,7 +71,7 @@ "ce": "Tiếng Chechen", "ce_RU": "Tiếng Chechen (Nga)", "cs": "Tiếng Séc", - "cs_CZ": "Tiếng Séc (Cộng hòa Séc)", + "cs_CZ": "Tiếng Séc (Czechia)", "cy": "Tiếng Wales", "cy_GB": "Tiếng Wales (Vương quốc Anh)", "da": "Tiếng Đan Mạch", @@ -201,6 +201,7 @@ "es_AR": "Tiếng Tây Ban Nha (Argentina)", "es_BO": "Tiếng Tây Ban Nha (Bolivia)", "es_BR": "Tiếng Tây Ban Nha (Brazil)", + "es_BZ": "Tiếng Tây Ban Nha (Belize)", "es_CL": "Tiếng Tây Ban Nha (Chile)", "es_CO": "Tiếng Tây Ban Nha (Colombia)", "es_CR": "Tiếng Tây Ban Nha (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Tiếng Ý (Thụy Sĩ)", "it_IT": "Tiếng Ý (Ý)", "it_SM": "Tiếng Ý (San Marino)", + "it_VA": "Tiếng Ý (Thành Vatican)", "ja": "Tiếng Nhật", "ja_JP": "Tiếng Nhật (Nhật Bản)", "ka": "Tiếng Gruzia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yi.json b/src/Symfony/Component/Intl/Resources/data/locales/yi.json index 3cf806d91b3d7..1dcabef33dda4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -153,6 +153,7 @@ "es_AR": "שפּאַניש (אַרגענטינע)", "es_BO": "שפּאַניש (באליוויע)", "es_BR": "שפּאַניש (בראַזיל)", + "es_BZ": "שפּאַניש (בעליז)", "es_CL": "שפּאַניש (טשילע)", "es_CO": "שפּאַניש (קאלאמביע)", "es_CR": "שפּאַניש (קאסטאַ ריקאַ)", @@ -260,6 +261,7 @@ "it_CH": "איטאַליעניש (שווייץ)", "it_IT": "איטאַליעניש (איטאַליע)", "it_SM": "איטאַליעניש (סאַן מאַרינא)", + "it_VA": "איטאַליעניש (וואַטיקאַן שטאָט)", "ja": "יאַפּאַניש", "ja_JP": "יאַפּאַניש (יאַפּאַן)", "ka": "גרוזיניש", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index ca7ae1a415478..8cea4809fe803 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -168,6 +168,7 @@ "es_AR": "Èdè Sipanisi (Orílẹ́ède Agentínà)", "es_BO": "Èdè Sipanisi (Orílẹ́ède Bọ̀lífíyà)", "es_BR": "Èdè Sipanisi (Orílẹ́ède Bàràsílì)", + "es_BZ": "Èdè Sipanisi (Orílẹ́ède Bèlísẹ̀)", "es_CL": "Èdè Sipanisi (Orílẹ́ède ṣílè)", "es_CO": "Èdè Sipanisi (Orílẹ́ède Kòlómíbìa)", "es_CR": "Èdè Sipanisi (Orílẹ́ède Kuusita Ríkà)", @@ -280,6 +281,7 @@ "it_CH": "Èdè Italiani (Orílẹ́ède switiṣilandi)", "it_IT": "Èdè Italiani (Orílẹ́ède Italiyi)", "it_SM": "Èdè Italiani (Orílẹ́ède Sani Marino)", + "it_VA": "Èdè Italiani (Orílẹ́ède Fatikani)", "ja": "Èdè Japanisi", "ja_JP": "Èdè Japanisi (Orílẹ́ède Japani)", "ka": "Èdè Georgia", 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 9288ebc9eff2c..a22de213024aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json @@ -151,6 +151,7 @@ "es_AR": "Èdè Sipanisi (Orílɛ́ède Agentínà)", "es_BO": "Èdè Sipanisi (Orílɛ́ède Bɔ̀lífíyà)", "es_BR": "Èdè Sipanisi (Orílɛ́ède Bàràsílì)", + "es_BZ": "Èdè Sipanisi (Orílɛ́ède Bèlísɛ̀)", "es_CL": "Èdè Sipanisi (Orílɛ́ède shílè)", "es_CO": "Èdè Sipanisi (Orílɛ́ède Kòlómíbìa)", "es_CR": "Èdè Sipanisi (Orílɛ́ède Kuusita Ríkà)", @@ -242,6 +243,7 @@ "it_CH": "Èdè Italiani (Orílɛ́ède switishilandi)", "it_IT": "Èdè Italiani (Orílɛ́ède Italiyi)", "it_SM": "Èdè Italiani (Orílɛ́ède Sani Marino)", + "it_VA": "Èdè Italiani (Orílɛ́ède Fatikani)", "ja_JP": "Èdè Japanisi (Orílɛ́ède Japani)", "ka_GE": "Èdè Georgia (Orílɛ́ède Gɔgia)", "km_KH": "Èdè kameri (Orílɛ́ède Kàmùbódíà)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh.json b/src/Symfony/Component/Intl/Resources/data/locales/zh.json index 2742722ced17a..691311c878f47 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -71,7 +71,7 @@ "ce": "车臣文", "ce_RU": "车臣文 (俄罗斯)", "cs": "捷克语", - "cs_CZ": "捷克语 (捷克共和国)", + "cs_CZ": "捷克语 (捷克)", "cy": "威尔士语", "cy_GB": "威尔士语 (英国)", "da": "丹麦语", @@ -201,6 +201,7 @@ "es_AR": "西班牙文 (阿根廷)", "es_BO": "西班牙文 (玻利维亚)", "es_BR": "西班牙文 (巴西)", + "es_BZ": "西班牙文 (伯利兹)", "es_CL": "西班牙文 (智利)", "es_CO": "西班牙文 (哥伦比亚)", "es_CR": "西班牙文 (哥斯达黎加)", @@ -327,6 +328,7 @@ "it_CH": "意大利语 (瑞士)", "it_IT": "意大利语 (意大利)", "it_SM": "意大利语 (圣马力诺)", + "it_VA": "意大利语 (梵蒂冈)", "ja": "日语", "ja_JP": "日语 (日本)", "ka": "格鲁吉亚语", 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 7ca92c053be09..391f2ea3ec25e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -68,7 +68,7 @@ "ce": "車臣文", "ce_RU": "車臣文 (俄羅斯)", "cs": "捷克文", - "cs_CZ": "捷克文 (捷克共和國)", + "cs_CZ": "捷克文 (捷克)", "cy": "威爾斯文", "cy_GB": "威爾斯文 (英國)", "da": "丹麥文", @@ -191,6 +191,7 @@ "en_ZW": "英文 (辛巴威)", "eo": "世界文", "es_BO": "西班牙文 (玻利維亞)", + "es_BZ": "西班牙文 (貝里斯)", "es_CO": "西班牙文 (哥倫比亞)", "es_CR": "西班牙文 (哥斯大黎加)", "es_DO": "西班牙文 (多明尼加共和國)", @@ -302,6 +303,7 @@ "it_CH": "義大利文 (瑞士)", "it_IT": "義大利文 (義大利)", "it_SM": "義大利文 (聖馬利諾)", + "it_VA": "義大利文 (梵蒂岡)", "ja": "日文", "ja_JP": "日文 (日本)", "ka": "喬治亞文", 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 c3623967750ef..beab6c7ad6788 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 @@ -82,6 +82,7 @@ "en_ZM": "英文 (贊比亞)", "en_ZW": "英文 (津巴布韋)", "eo": "世界語", + "es_BZ": "西班牙文 (伯利茲)", "es_CR": "西班牙文 (哥斯達黎加)", "es_EC": "西班牙文 (厄瓜多爾)", "es_GT": "西班牙文 (危地馬拉)", @@ -121,6 +122,7 @@ "it_CH": "意大利文 (瑞士)", "it_IT": "意大利文 (意大利)", "it_SM": "意大利文 (聖馬利諾)", + "it_VA": "意大利文 (梵蒂岡)", "ka": "格魯吉亞文", "ka_GE": "格魯吉亞文 (格魯吉亞)", "ki_KE": "吉庫尤文 (肯雅)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index 72b339e377f71..115c0c7000dc1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -71,7 +71,7 @@ "ce": "isi-Chechen", "ce_RU": "isi-Chechen (i-Russia)", "cs": "isi-Czech", - "cs_CZ": "isi-Czech (i-Czech Republic)", + "cs_CZ": "isi-Czech (i-Czechia)", "cy": "isi-Welsh", "cy_GB": "isi-Welsh (i-United Kingdom)", "da": "isi-Danish", @@ -201,6 +201,7 @@ "es_AR": "isi-Spanish (i-Argentina)", "es_BO": "isi-Spanish (i-Bolivia)", "es_BR": "isi-Spanish (i-Brazil)", + "es_BZ": "isi-Spanish (i-Belize)", "es_CL": "isi-Spanish (i-Chile)", "es_CO": "isi-Spanish (i-Colombia)", "es_CR": "isi-Spanish (i-Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "isi-Italian (i-Switzerland)", "it_IT": "isi-Italian (i-Italy)", "it_SM": "isi-Italian (i-San Marino)", + "it_VA": "isi-Italian (i-Vatican City)", "ja": "isi-Japanese", "ja_JP": "isi-Japanese (i-Japan)", "ka": "isi-Georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index d6c5367063643..65e4ee519b44d 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.29.44", + "Version": "2.1.32.59", "Names": { "AC": "Ascensioneiland", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Kerseiland", "CY": "Siprus", - "CZ": "Tjeggiese Republiek", + "CZ": "Tjeggië", "DE": "Duitsland", "DG": "Diego Garcia", "DJ": "Djiboeti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index 1ed3b2a89a92b..1980f475912a6 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/am.json b/src/Symfony/Component/Intl/Resources/data/regions/am.json index 087aa8e454f28..0cd6a08ef38a3 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", @@ -56,7 +56,7 @@ "CW": "ኩራሳዎ", "CX": "የገና ደሴት", "CY": "ሳይፕረስ", - "CZ": "ቼክ ሪፑብሊክ", + "CZ": "ቼቺያ", "DE": "ጀርመን", "DG": "ዲዬጎ ጋርሺያ", "DJ": "ጂቡቲ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index 6f678699f8c83..a9a60ec7db148 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.28.79", + "Version": "2.1.32.86", "Names": { "AC": "جزيرة أسينشيون", "AD": "أندورا", @@ -56,7 +56,7 @@ "CW": "كوراساو", "CX": "جزيرة الكريسماس", "CY": "قبرص", - "CZ": "جمهورية التشيك", + "CZ": "التشيك", "DE": "ألمانيا", "DG": "دييغو غارسيا", "DJ": "جيبوتي", 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 b98f76dac1ca0..6ca29a02a17ae 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.27.99", + "Version": "2.1.31.33", "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 9caf578d2f51a..d68c96c4d82f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BS": "جزر البهاما", "EA": "سبتة ومليلية", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index 9c03a5308034d..e49e783887b5c 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.27.40", + "Version": "2.1.31.33", "Names": { "AQ": "এন্টাৰ্টিকা", "BR": "ব্ৰাজিল", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index 4089664628660..a26e92599707c 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Askenson adası", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Kurasao", "CX": "Milad adası", "CY": "Kipr", - "CZ": "Çex Respublikası", + "CZ": "Çexiya", "DE": "Almaniya", "DG": "Dieqo Qarsiya", "DJ": "Cibuti", 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 4db155af0955d..4047de4711f6e 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.27.40", + "Version": "2.1.31.74", "Names": { "AC": "Аскенсон адасы", "AD": "Андорра", @@ -55,7 +55,7 @@ "CW": "Курасао", "CX": "Милад адасы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехија", "DE": "Алманија", "DG": "Диего Гарсија", "DJ": "Ҹибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index 2cafd246dbc9a..1ffa3701279c0 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.29.66", + "Version": "2.1.31.86", "Names": { "AC": "Востраў Узнясення", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index 44fcf646b6367..67b96dfb74b0b 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.30.6", + "Version": "2.1.33.75", "Names": { "AC": "остров Възнесение", "AD": "Андора", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "остров Рождество", "CY": "Кипър", - "CZ": "Чешка република", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index 664f519445a9c..afd862110d3ea 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andɔr", "AE": "Arabu mara kafoli", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn.json b/src/Symfony/Component/Intl/Resources/data/regions/bn.json index bc0a90ce3f160..3e1bdb55664e9 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.29.44", + "Version": "2.1.32.59", "Names": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "আন্ডোরা", @@ -56,7 +56,7 @@ "CW": "কিউরাসাও", "CX": "ক্রিসমাস দ্বীপ", "CY": "সাইপ্রাস", - "CZ": "চেক প্রজাতন্ত্র", + "CZ": "চেচিয়া", "DE": "জার্মানি", "DG": "দিয়েগো গার্সিয়া", "DJ": "জিবুতি", 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 147988e602ae9..7bc82295c27ba 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.29.54", + "Version": "2.1.31.33", "Names": { "HN": "হন্ডুরাস", "MD": "মলডোভা", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo.json b/src/Symfony/Component/Intl/Resources/data/regions/bo.json index f704c5c0d00c6..efc678e79e9bd 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.27.40", + "Version": "2.1.31.33", "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 d2a4e7b1edf3c..1e75344f33b77 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.27.40", + "Version": "2.1.31.33", "Names": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 628f124b4f14f..32ba725064fae 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.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Enez Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 9d267224b79f3..5dde47f5d47f6 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kurasao", "CX": "Božićna Ostrva", "CY": "Kipar", - "CZ": "Češka Republika", + "CZ": "Češka", "DE": "Njemačka", "DG": "Dijego Garsija", "DJ": "Džibuti", 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 50d1f34b41b85..727605329c416 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.28.76", + "Version": "2.1.32.72", "Names": { "AC": "Острво Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ca.json b/src/Symfony/Component/Intl/Resources/data/regions/ca.json index f1cb070384958..f275ba72590f0 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Illa de l’Ascensió", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Illa Christmas", "CY": "Xipre", - "CZ": "República Txeca", + "CZ": "Txèquia", "DE": "Alemanya", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index afcb2732c8d3f..58658659866c6 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.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Айъадаларан гӀайре", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index 737067e32c4c1..b6bd6d4d1a780 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Vánoční ostrov", "CY": "Kypr", - "CZ": "Česká republika", + "CZ": "Česko", "DE": "Německo", "DG": "Diego García", "DJ": "Džibutsko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cy.json b/src/Symfony/Component/Intl/Resources/data/regions/cy.json index dc718c0f026ee..950fc637411e9 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.30.6", + "Version": "2.1.31.86", "Names": { "AC": "Ynys Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Ynys y Nadolig", "CY": "Cyprus", - "CZ": "Gweriniaeth Tsiec", + "CZ": "Tsiecia", "DE": "Yr Almaen", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 331ba5a7112a9..e8410de19a1ba 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascensionøen", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index ad760aa13d245..0a650e172bd9d 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Weihnachtsinsel", "CY": "Zypern", - "CZ": "Tschechische Republik", + "CZ": "Tschechien", "DE": "Deutschland", "DG": "Diego Garcia", "DJ": "Dschibuti", 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 9f5f0e793b53f..e31f92122eddd 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.28.73", + "Version": "2.1.31.33", "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 84cc5bd0c2bb5..78311bbb50dba 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.29.33", + "Version": "2.1.31.33", "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 05af2671f9e0f..ba4238b5b12cd 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.29.61", + "Version": "2.1.31.34", "Names": { "AC": "ཨེ་སེན་ཤུན་ཚོ་གླིང༌", "AD": "ཨཱན་དོ་ར", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index 7b303bfb2941f..3de1291784931 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.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension ƒudomekpo nutome", "AD": "Andorra nutome", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/el.json b/src/Symfony/Component/Intl/Resources/data/regions/el.json index b3cd323075f6a..9b8c215540c43 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Νήσος Ασενσιόν", "AD": "Ανδόρα", @@ -56,7 +56,7 @@ "CW": "Κουρασάο", "CX": "Νήσος των Χριστουγέννων", "CY": "Κύπρος", - "CZ": "Τσεχική Δημοκρατία", + "CZ": "Τσεχία", "DE": "Γερμανία", "DG": "Ντιέγκο Γκαρσία", "DJ": "Τζιμπουτί", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index 28917397892ae..8022a32452627 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.30.50", + "Version": "2.1.32.59", "Names": { "AC": "Ascension Island", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Island", "CY": "Cyprus", - "CZ": "Czech Republic", + "CZ": "Czechia", "DE": "Germany", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index 13d080581d58d..e663780218260 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andoro", "AE": "Unuiĝintaj Arabaj Emirlandoj", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es.json b/src/Symfony/Component/Intl/Resources/data/regions/es.json index 233c28eeeae5f..e0f0243852a89 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.28.80", + "Version": "2.1.32.59", "Names": { "AC": "Isla de la Ascensión", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curazao", "CX": "Isla de Navidad", "CY": "Chipre", - "CZ": "República Checa", + "CZ": "Chequia", "DE": "Alemania", "DG": "Diego García", "DJ": "Yibuti", 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 d236097f5679f..5cb2d6e0a50e2 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.27.99", + "Version": "2.1.31.33", "Names": { "CI": "Costa de Marfil", "IC": "Islas Canarias", 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 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json index 27fb03a5c3ee3..6844e238ea1e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "EH": "Sahara Occidental", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json index e37b80568379a..d50b6873a58bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", 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 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json index 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json index b823decfa6195..d8b05a140c102 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.27.99", + "Version": "2.1.31.33", "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 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json index b823decfa6195..d8b05a140c102 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.27.99", + "Version": "2.1.31.33", "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 b823decfa6195..43b45c77fd304 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.74", "Names": { "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 17716fdebb6f1..b93165bfc7354 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index c9405001ef8e7..51d5e858faf78 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascensioni saar", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Jõulusaar", "CY": "Küpros", - "CZ": "Tšehhi", + "CZ": "Tšehhia", "DE": "Saksamaa", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eu.json b/src/Symfony/Component/Intl/Resources/data/regions/eu.json index 739bba8b49e77..41471bdda76a3 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.29.20", + "Version": "2.1.32.59", "Names": { "AC": "Ascension uhartea", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas uhartea", "CY": "Zipre", - "CZ": "Txekiar Errepublika", + "CZ": "Txekia", "DE": "Alemania", "DG": "Diego Garcia", "DJ": "Djibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index bc712c331922f..9d64e201b79a1 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.29.44", + "Version": "2.1.32.59", "Names": { "AC": "جزایر آسنسیون", "AD": "آندورا", 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 adec06492da0f..d12d3fed714d3 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.29.44", + "Version": "2.1.31.33", "Names": { "AD": "اندورا", "AG": "انتیگوا و باربودا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ff.json b/src/Symfony/Component/Intl/Resources/data/regions/ff.json index 04b8bf09f4e78..529d16dcecb03 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Anndoora", "AE": "Emiraat Araab Denntuɗe", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fi.json b/src/Symfony/Component/Intl/Resources/data/regions/fi.json index f4ab82a423563..cdb560563dd35 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.29.88", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-saari", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Joulusaari", "CY": "Kypros", - "CZ": "Tšekki", + "CZ": "Tšekinmaa", "DE": "Saksa", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index d9dffbbc8c963..cf7f34dd2952a 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.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index 3e65a57c2916a..d2902597b781c 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Île de l’Ascension", "AD": "Andorre", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Île Christmas", "CY": "Chypre", - "CZ": "République tchèque", + "CZ": "Tchéquie", "DE": "Allemagne", "DG": "Diego Garcia", "DJ": "Djibouti", 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 d7c69ca809fb4..f0587d8290330 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.27.40", + "Version": "2.1.31.33", "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 31e831e14c1c8..cf004b0e66ed5 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.27.99", + "Version": "2.1.31.33", "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 bd62e890aced5..ae18163a1e58c 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.29.44", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ga.json b/src/Symfony/Component/Intl/Resources/data/regions/ga.json index e4beb7f6e25d1..8f50f007ad27a 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Oileán na Deascabhála", "AD": "Andóra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gd.json b/src/Symfony/Component/Intl/Resources/data/regions/gd.json index 11d700122263d..ca1a0d11c893e 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.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Eilean na Deasgabhalach", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Eilean na Nollaig", "CY": "Cìopras", - "CZ": "Poblachd na Seice", + "CZ": "An t-Seic", "DE": "A’ Ghearmailt", "DG": "Diego Garcia", "DJ": "Diobùtaidh", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index 56af5ed6a8851..cf617ce750067 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Illa de Ascensión", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Illa de Nadal", "CY": "Chipre", - "CZ": "República Checa", + "CZ": "Chequia", "DE": "Alemaña", "DG": "Diego García", "DJ": "Djibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index e1d8cee967d6d..955728d82ced9 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", @@ -56,7 +56,7 @@ "CW": "ક્યુરાસાઓ", "CX": "ક્રિસમસ આઇલેન્ડ", "CY": "સાયપ્રસ", - "CZ": "ચેક રીપબ્લિક", + "CZ": "ચેકીયા", "DE": "જર્મની", "DG": "ડિએગો ગારસિઆ", "DJ": "જીબૌટી", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index c52e8a07efa04..112150a842b33 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.27.40", + "Version": "2.1.31.34", "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 57a29038e78e7..a709be13efa76 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Haɗaɗɗiyar Daular Larabawa", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/he.json b/src/Symfony/Component/Intl/Resources/data/regions/he.json index 5828bb31adf8f..1655ba93a8652 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.29.27", + "Version": "2.1.32.59", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -56,7 +56,7 @@ "CW": "קוראסאו", "CX": "האי כריסטמס", "CY": "קפריסין", - "CZ": "הרפובליקה הצ׳כית", + "CZ": "צ׳כיה", "DE": "גרמניה", "DG": "דייגו גרסיה", "DJ": "ג׳יבוטי", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index 7c25e6d163977..416600d4513b1 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "असेंशन द्वीप", "AD": "एंडोरा", @@ -56,7 +56,7 @@ "CW": "क्यूरासाओ", "CX": "क्रिसमस द्वीप", "CY": "साइप्रस", - "CZ": "चेक गणराज्य", + "CZ": "चेकिया", "DE": "जर्मनी", "DG": "डिएगो गार्सिया", "DJ": "जिबूती", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index 6df243b748bab..96c854bf19543 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Božićni otok", "CY": "Cipar", - "CZ": "Češka Republika", + "CZ": "Češka", "DE": "Njemačka", "DG": "Diego Garcia", "DJ": "Džibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index 2f0636416519a..fd2f36ea1b3e0 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-sziget", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hy.json b/src/Symfony/Component/Intl/Resources/data/regions/hy.json index f7615061705da..7a0d1705823ca 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Համբարձման կղզի", "AD": "Անդորրա", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/id.json b/src/Symfony/Component/Intl/Resources/data/regions/id.json index 4d54933cc8cd3..163a780290584 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Pulau Christmas", "CY": "Siprus", - "CZ": "Republik Cheska", + "CZ": "Cheska", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 1c8d76a7bc783..2f4b031ab94dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "BJ": "Binin", "BM": "Bemuda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ii.json b/src/Symfony/Component/Intl/Resources/data/regions/ii.json index cc409962c8822..be6a66e82c2f7 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.27.40", + "Version": "2.1.31.33", "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 4d54933cc8cd3..163a780290584 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Pulau Christmas", "CY": "Siprus", - "CZ": "Republik Cheska", + "CZ": "Cheska", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index 5970e4afa4c74..499a364c856cd 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.29.65", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-eyja", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index f4e71a8fe8f71..006aba5fdc030 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.28.79", + "Version": "2.1.32.60", "Names": { "AC": "Isola Ascensione", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Isola Christmas", "CY": "Cipro", - "CZ": "Repubblica Ceca", + "CZ": "Cèchia", "DE": "Germania", "DG": "Diego Garcia", "DJ": "Gibuti", @@ -224,7 +224,7 @@ "TH": "Thailandia", "TJ": "Tagikistan", "TK": "Tokelau", - "TL": "Timor Leste", + "TL": "Timor Est", "TM": "Turkmenistan", "TN": "Tunisia", "TO": "Tonga", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index 5828bb31adf8f..1655ba93a8652 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.29.27", + "Version": "2.1.32.59", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -56,7 +56,7 @@ "CW": "קוראסאו", "CX": "האי כריסטמס", "CY": "קפריסין", - "CZ": "הרפובליקה הצ׳כית", + "CZ": "צ׳כיה", "DE": "גרמניה", "DG": "דייגו גרסיה", "DJ": "ג׳יבוטי", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index 7798d20a7aa12..4ea4e06103224 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "アセンション島", "AD": "アンドラ", @@ -56,7 +56,7 @@ "CW": "キュラソー", "CX": "クリスマス島", "CY": "キプロス", - "CZ": "チェコ共和国", + "CZ": "チェコ", "DE": "ドイツ", "DG": "ディエゴガルシア島", "DJ": "ジブチ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index cc02581eb9a18..346b65ff5c4aa 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.29.20", + "Version": "2.1.32.59", "Names": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", @@ -56,7 +56,7 @@ "CW": "კიურასაო", "CX": "შობის კუნძული", "CY": "კვიპროსი", - "CZ": "ჩეხეთის რესპუბლიკა", + "CZ": "ჩეხეთი", "DE": "გერმანია", "DG": "დიეგო-გარსია", "DJ": "ჯიბუტი", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 5d9ac740df730..0fb79a2809f03 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Falme za Kiarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kk.json b/src/Symfony/Component/Intl/Resources/data/regions/kk.json index 28a3bd8292e1c..5de8337e4b80f 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Әскенжін аралы", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Рождество аралы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего-Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kl.json b/src/Symfony/Component/Intl/Resources/data/regions/kl.json index 5cba91fbb5c72..73588fba5c454 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.27.40", + "Version": "2.1.31.34", "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 b1560f1e42fdf..e0798a66e7103 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.28.79", + "Version": "2.1.31.74", "Names": { "AC": "កោះ​អាសេនសិន", "AD": "អង់ដូរ៉ា", @@ -56,7 +56,7 @@ "CW": "កូរ៉ាកៅ", "CX": "កោះ​គ្រីស្មាស", "CY": "ស៊ីប", - "CZ": "សាធារណរដ្ឋឆេក", + "CZ": "ឆេគា", "DE": "អាល្លឺម៉ង់", "DG": "ឌៀហ្គោហ្គាស៊ី", "DJ": "ជីប៊ូទី", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index 9e48a10694226..9ea647dd44dab 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ಅಸೆನ್ಶನ್ ದ್ವೀಪ", "AD": "ಅಂಡೋರಾ", @@ -56,7 +56,7 @@ "CW": "ಕುರಾಕಾವ್", "CX": "ಕ್ರಿಸ್ಮಸ್ ದ್ವೀಪ", "CY": "ಸೈಪ್ರಸ್", - "CZ": "ಝೆಕ್ ರಿಪಬ್ಲಿಕ್", + "CZ": "ಝೆಕಿಯಾ", "DE": "ಜರ್ಮನಿ", "DG": "ಡೈಗೋ ಗಾರ್ಸಿಯ", "DJ": "ಜಿಬೋಟಿ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index 98cf3380c9367..3da118946eea8 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.29.22", + "Version": "2.1.32.59", "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 c9188ad4667be..a9004cd204e3f 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.27.40", + "Version": "2.1.31.33", "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 77daec5ec9f49..14cd09307beee 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.30.6", + "Version": "2.1.31.86", "Names": { "AD": "اٮ۪نڑورا", "AE": "مُتحدہ عرَب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kw.json b/src/Symfony/Component/Intl/Resources/data/regions/kw.json index 27581e9038ce0..152644b9807c7 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.27.40", + "Version": "2.1.31.33", "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 5b39903957d90..0b0469119ac02 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Ассеншин аралы", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Крисмас аралы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index 806242bae7100..3187f8e6058b9 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.28.76", + "Version": "2.1.31.86", "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 b5035b952ac32..3afaf3185a7f0 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Emireeti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ln.json b/src/Symfony/Component/Intl/Resources/data/regions/ln.json index 0328c1a2d4d0b..e4ba796e1cdfc 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.28.76", + "Version": "2.1.31.74", "Names": { "AD": "Andorɛ", "AE": "Lɛmila alabo", @@ -49,7 +49,7 @@ "CU": "Kiba", "CV": "Bisanga bya Kapevɛrɛ", "CY": "Sípɛlɛ", - "CZ": "Repibiki Tsekɛ", + "CZ": "Shekia", "DE": "Alemani", "DJ": "Dzibuti", "DK": "Danɛmarike", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index 421abaad9a41c..42bcd14617437 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ເກາະອາເຊນຊັນ", "AD": "ອັນດໍຣາ", @@ -56,7 +56,7 @@ "CW": "ຄູຣາຊາວ", "CX": "ເກາະຄຣິສມາດ", "CY": "ໄຊປຣັສ", - "CZ": "ສາທາລະນະລັດເຊັກ", + "CZ": "ເຊັກເຊຍ", "DE": "ເຢຍລະມັນ", "DG": "ດິເອໂກ ກາເຊຍ", "DJ": "ຈິບູຕິ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index 7db358bc8a15a..1921273194623 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Dangun Žengimo sala", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lu.json b/src/Symfony/Component/Intl/Resources/data/regions/lu.json index 5bde5828347ce..efde08d27edd6 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andore", "AE": "Lemila alabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lv.json b/src/Symfony/Component/Intl/Resources/data/regions/lv.json index b64c7098ba87f..36732db994b44 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Debesbraukšanas sala", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kirasao", "CX": "Ziemsvētku sala", "CY": "Kipra", - "CZ": "Čehijas Republika", + "CZ": "Čehija", "DE": "Vācija", "DG": "Djego Garsijas atols", "DJ": "Džibutija", @@ -111,7 +111,7 @@ "IO": "Indijas okeāna Britu teritorija", "IQ": "Irāka", "IR": "Irāna", - "IS": "Īslande", + "IS": "Islande", "IT": "Itālija", "JE": "Džērsija", "JM": "Jamaika", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index c95ca7761ca65..fc85492bde763 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.30.58", + "Version": "2.1.32.59", "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 a8359f8ae8940..b06d69ded3edf 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andorra", "AE": "Emirà Arabo mitambatra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mk.json b/src/Symfony/Component/Intl/Resources/data/regions/mk.json index b7761a7e8f3c7..3cb49d515893c 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Остров Асенсион", "AD": "Андора", @@ -56,7 +56,7 @@ "CW": "Курасао", "CX": "Божиќен Остров", "CY": "Кипар", - "CZ": "Република Чешка", + "CZ": "Чешка", "DE": "Германија", "DG": "Диего Гарсија", "DJ": "Џибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ml.json b/src/Symfony/Component/Intl/Resources/data/regions/ml.json index 8ba622b60984b..4fd365af0649a 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "അസൻഷൻ ദ്വീപ്", "AD": "അന്റോറ", @@ -56,7 +56,7 @@ "CW": "കുറാകാവോ", "CX": "ക്രിസ്മസ് ദ്വീപ്", "CY": "സൈപ്രസ്", - "CZ": "ചെക്ക് റിപ്പബ്ലിക്", + "CZ": "ചെക്കിയ", "DE": "ജർമനി", "DG": "ഡീഗോ ഗ്രാഷ്യ", "DJ": "ദിജിബൗട്ടി", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mn.json b/src/Symfony/Component/Intl/Resources/data/regions/mn.json index a8dc1f396e078..2428256cd459f 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Аскенсион арал", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Куракао", "CX": "Зул сарын арал", "CY": "Кипр", - "CZ": "Бүгд Найрамдах Чех Улс", + "CZ": "Чех", "DE": "Герман", "DG": "Диего Гарсиа", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index 785e0274a9459..c338a7619bde4 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.27.99", + "Version": "2.1.31.33", "Names": { "MM": "Myanmar" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index acd7202fdea93..0071ebd6ad571 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "अ‍ॅसेन्शियन बेट", "AD": "अँडोरा", @@ -56,7 +56,7 @@ "CW": "क्युरासाओ", "CX": "ख्रिसमस बेट", "CY": "सायप्रस", - "CZ": "झेक प्रजासत्ताक", + "CZ": "झेकिया", "DE": "जर्मनी", "DG": "दिएगो गार्सिया", "DJ": "जिबौटी", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index e21e619ea0c4d..c919b375de222 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curacao", "CX": "Pulau Krismas", "CY": "Cyprus", - "CZ": "Republik Czech", + "CZ": "Czechia", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mt.json b/src/Symfony/Component/Intl/Resources/data/regions/mt.json index 0835be6c9a418..856198de52e59 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.28.76", + "Version": "2.1.32.59", "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 ca1aa7110c08b..b07d2f36b43ae 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.30.50", + "Version": "2.1.33.28", "Names": { "AC": "တက်တော်မူကျွန်း", "AD": "အင်ဒိုရာ", @@ -56,7 +56,7 @@ "CW": "ကျူရေးကိုးစ်", "CX": "ခရစ်စမတ် ကျွန်း", "CY": "ဆိုက်ပရပ်စ်", - "CZ": "ချက် ပြည်ထောင်စု", + "CZ": "ချက်ကီယား", "DE": "ဂျာမဏီ", "DG": "ဒီအဲဂိုဂါစီရာ", "DJ": "ဂျီဘူတီ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index f9659eec79d62..606d66603d32a 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.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmasøya", "CY": "Kypros", - "CZ": "Den tsjekkiske republikk", + "CZ": "Tsjekkia", "DE": "Tyskland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index ba86ab853d86e..f051dc3ea864d 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.27.65", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ne.json b/src/Symfony/Component/Intl/Resources/data/regions/ne.json index aacf3d7f38921..8cf9dc181d37d 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.29.20", + "Version": "2.1.32.59", "Names": { "AC": "एस्केन्सन टापु", "AD": "अन्डोर्रा", @@ -56,7 +56,7 @@ "CW": "कुराकाओ", "CX": "क्रिष्टमस टापु", "CY": "साइप्रस", - "CZ": "चेक गणतन्त्र", + "CZ": "चेचिया", "DE": "जर्मनी", "DG": "डियगो गार्सिया", "DJ": "डिजिबुटी", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index 8d22f961f43f5..9e376b22ddac3 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmaseiland", "CY": "Cyprus", - "CZ": "Tsjechië", + "CZ": "Tsjechische Republiek", "DE": "Duitsland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index 1df91ca99f5ba..2979820e10be6 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.28.76", + "Version": "2.1.31.86", "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 f9659eec79d62..606d66603d32a 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.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmasøya", "CY": "Kypros", - "CZ": "Den tsjekkiske republikk", + "CZ": "Tsjekkia", "DE": "Tyskland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 90892d434b8ba..87f0928999dd1 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.27.98", + "Version": "2.1.31.33", "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 e0caf934f6511..bd78b24389abf 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.27.78", + "Version": "2.1.31.33", "Names": { "AD": "ଆଣ୍ଡୋରା", "AE": "ସଂଯୁକ୍ତ ଆରବ ଏମିରେଟସ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index c0166cde5571a..0da5a22c517d7 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.27.40", + "Version": "2.1.31.33", "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 de3bb0247073d..aab26e977c84c 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", @@ -56,7 +56,7 @@ "CW": "ਕੁਰਾਕਾਓ", "CX": "ਕ੍ਰਿਸਮਿਸ ਟਾਪੂ", "CY": "ਸਾਇਪ੍ਰਸ", - "CZ": "ਚੈੱਕ ਗਣਰਾਜ", + "CZ": "ਚੈਕੀਆ", "DE": "ਜਰਮਨੀ", "DG": "ਡੀਇਗੋ ਗਾਰਸੀਆ", "DJ": "ਜ਼ੀਬੂਤੀ", 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 ab65e07277c92..97e23dd3bff9e 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.27.40", + "Version": "2.1.31.33", "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 97bef7e83c5dd..2f115a28b4c35 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.28.79", + "Version": "2.1.32.59", "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 ec8481b1ad7b4..7b06b7e76a966 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.27.40", + "Version": "2.1.31.33", "Names": { "AF": "افغانستان", "AL": "البانیه", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt.json b/src/Symfony/Component/Intl/Resources/data/regions/pt.json index 0da2b90f9b6d0..2a3a0f90e506c 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ilha de Ascensão", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Ilha Christmas", "CY": "Chipre", - "CZ": "República Tcheca", + "CZ": "Tchéquia", "DE": "Alemanha", "DG": "Diego Garcia", "DJ": "Djibuti", 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 c96cb8a96d01a..5bb5494a059c1 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.29.54", + "Version": "2.1.31.86", "Names": { "AI": "Anguila", "AM": "Arménia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/qu.json b/src/Symfony/Component/Intl/Resources/data/regions/qu.json index f11d5c788a11e..1b740ad58ff57 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "AD": "Andorra", "AF": "Afganistán", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index f0cc0394ab607..54c312b31aa0a 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.28.76", + "Version": "2.1.31.86", "Names": { "AD": "Andorra", "AE": "Emirats Arabs Unids", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rn.json b/src/Symfony/Component/Intl/Resources/data/regions/rn.json index 9161777b1e0e6..a6197ed95fccc 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Leta Zunze Ubumwe z’Abarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro.json b/src/Symfony/Component/Intl/Resources/data/regions/ro.json index 705835b6798fe..238c88d1c5393 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.28.79", + "Version": "2.1.32.60", "Names": { "AC": "Insula Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Insula Christmas", "CY": "Cipru", - "CZ": "Republica Cehă", + "CZ": "Cehia", "DE": "Germania", "DG": "Diego Garcia", "DJ": "Djibouti", 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 785e0274a9459..c338a7619bde4 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.27.99", + "Version": "2.1.31.33", "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 9a1887d3c9ae8..1703a4013e234 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.29.20", + "Version": "2.1.32.59", "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 c0944266b8001..48d88c016ae9c 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.27.99", + "Version": "2.1.31.33", "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 35bd099adcd44..5bab5f06287f2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "RW": "Rwanda", "TO": "Igitonga" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se.json b/src/Symfony/Component/Intl/Resources/data/regions/se.json index b3c4724d83c29..7f25dac5822ff 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.27.98", + "Version": "2.1.31.33", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json b/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json index 7d772dc329e97..444ae97f72391 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.27.78", + "Version": "2.1.31.33", "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 61caf0760364a..6c46a0a17d410 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andôro", "AE": "Arâbo Emirâti Ôko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh.json b/src/Symfony/Component/Intl/Resources/data/regions/sh.json index cbc505d7c2850..32fcabae9eef3 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.29.33", + "Version": "2.1.32.73", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", 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 863ccb3fba729..7b60d6cf3cbdb 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.29.33", + "Version": "2.1.31.33", "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 ddef8a3241931..35acde0a159db 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.28.79", + "Version": "2.1.33.28", "Names": { "AC": "ඇසෙන්ෂන් දිවයින", "AD": "ඇන්ඩෝරාව", @@ -56,7 +56,7 @@ "CW": "කුරකාවෝ", "CX": "ක්‍රිස්මස් දූපත", "CY": "සයිප්‍රසය", - "CZ": "චෙක් ජනරජය", + "CZ": "චෙක්", "DE": "ජර්මනිය", "DG": "දියාගෝ ගාර්සියා", "DJ": "ජිබුටි", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index e82d70fdc9950..31b9849434966 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Vianočný ostrov", "CY": "Cyprus", - "CZ": "Česká republika", + "CZ": "Česko", "DE": "Nemecko", "DG": "Diego Garcia", "DJ": "Džibutsko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index d44225192cbcd..fb61815c026cf 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Otok Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sn.json b/src/Symfony/Component/Intl/Resources/data/regions/sn.json index 81bb30b4126bf..02cd0e92e5a8e 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.27.98", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index 2afc55359082b..d1d3d64da8e97 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.27.78", + "Version": "2.1.33.76", "Names": { "AD": "Andora", "AE": "Imaaraadka Carabta ee Midoobay", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sq.json b/src/Symfony/Component/Intl/Resources/data/regions/sq.json index 197f931977dd4..974d52c067d4b 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ishulli Asenshion", "AD": "Andorrë", @@ -56,7 +56,7 @@ "CW": "Kuraçao", "CX": "Ishulli i Krishtlindjes", "CY": "Qipro", - "CZ": "Republika Çeke", + "CZ": "Çeki", "DE": "Gjermani", "DG": "Diego-Garsia", "DJ": "Xhibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index ac4549f2c05b2..e16e15dfab18f 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.28.79", + "Version": "2.1.32.73", "Names": { "AC": "Острво Асенсион", "AD": "Андора", 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 a10204fcc17ea..8bbdaf9571909 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.27.99", + "Version": "2.1.31.33", "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 a10204fcc17ea..8bbdaf9571909 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.27.99", + "Version": "2.1.31.33", "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 1814bb1de2c04..55e529e4e784b 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.27.99", + "Version": "2.1.31.33", "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 f82c4cbdc1469..5f2baef3cf945 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.27.99", + "Version": "2.1.31.33", "Names": { "CG": "Конго", "CI": "Обала Слоноваче (Кот д’Ивоар)", 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 cbc505d7c2850..32fcabae9eef3 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.29.33", + "Version": "2.1.32.73", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", 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 863ccb3fba729..7b60d6cf3cbdb 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.29.33", + "Version": "2.1.31.33", "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 5cd9000dcb829..4adc5e5234bc2 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.29.33", + "Version": "2.1.31.33", "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 86b50ad597956..9776570f402c2 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.29.33", + "Version": "2.1.31.33", "Names": { "CG": "Kongo", "CI": "Obala Slonovače (Kot d’Ivoar)", 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 5cd9000dcb829..4adc5e5234bc2 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.29.33", + "Version": "2.1.31.33", "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 f82c4cbdc1469..5f2baef3cf945 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.27.99", + "Version": "2.1.31.33", "Names": { "CG": "Конго", "CI": "Обала Слоноваче (Кот д’Ивоар)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index 9cd8171d2c867..0042a1c566c71 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.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index b870b482c0273..21b6ec49afba6 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.28.79", + "Version": "2.1.33.73", "Names": { "AC": "Kisiwa cha Ascension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kurakao", "CX": "Kisiwa cha Krismasi", "CY": "Cyprus", - "CZ": "Jamhuri ya Cheki", + "CZ": "Chechia", "DE": "Ujerumani", "DG": "Diego Garcia", "DJ": "Jibuti", 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 ffa7d58f3da3f..94ca4a02416be 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.27.99", + "Version": "2.1.31.33", "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 f071e13c93108..701d0e5119869 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.27.99", + "Version": "2.1.31.33", "Names": { "AZ": "Azabajani", "CI": "Ivorikosti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index a20b24e2fcc65..2e6252510fde8 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.28.79", + "Version": "2.1.32.4", "Names": { "AC": "அஷன்ஷியன் தீவு", "AD": "அன்டோரா", @@ -56,7 +56,7 @@ "CW": "குராகவ்", "CX": "கிறிஸ்துமஸ் தீவு", "CY": "சைப்ரஸ்", - "CZ": "செக் குடியரசு", + "CZ": "செசியா", "DE": "ஜெர்மனி", "DG": "டியகோ கார்ஷியா", "DJ": "ஜிபௌட்டி", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index d434ddf661276..3774b364a5d87 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ఎసెషన్ దీవి", "AD": "అండొర్రా", @@ -56,7 +56,7 @@ "CW": "కురాకవో", "CX": "క్రిస్మస్ దీవి", "CY": "సైప్రస్", - "CZ": "చెక్ రిపబ్లిక్", + "CZ": "చెక్‌చియ", "DE": "జర్మనీ", "DG": "డియాగో గార్సియా", "DJ": "జిబౌటి", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index 7cb79d72e53b7..6392b6d54880c 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "เกาะแอสเซนชัน", "AD": "อันดอร์รา", @@ -56,7 +56,7 @@ "CW": "คูราเซา", "CX": "เกาะคริสต์มาส", "CY": "ไซปรัส", - "CZ": "สาธารณรัฐเช็ก", + "CZ": "เช็ก", "DE": "เยอรมนี", "DG": "ดิเอโกการ์เซีย", "DJ": "จิบูตี", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index e5243881fea49..9286283d66cb6 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.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Acsencion island", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Island", "CY": "Cyprus", - "CZ": "Czech Republic", + "CZ": "Czechia", "DE": "Germany", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/to.json b/src/Symfony/Component/Intl/Resources/data/regions/to.json index 1fc7c721ec6b8..d8b68c8dab5b3 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.27.98", + "Version": "2.1.31.74", "Names": { "AC": "Motu ʻAsenisini", "AD": "ʻAnitola", @@ -56,7 +56,7 @@ "CW": "Kulasao", "CX": "Motu Kilisimasi", "CY": "Saipalesi", - "CZ": "Lipapilika Seki", + "CZ": "Sēkia", "DE": "Siamane", "DG": "Tieko Kāsia", "DJ": "Siputi", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index 229ca98cd3628..e9d223f6dd9b9 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension Adası", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Adası", "CY": "Kıbrıs", - "CZ": "Çek Cumhuriyeti", + "CZ": "Çekya", "DE": "Almanya", "DG": "Diego Garcia", "DJ": "Cibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ug.json b/src/Symfony/Component/Intl/Resources/data/regions/ug.json index 6e8c397f7b34b..45416daf361a6 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.28.76", + "Version": "2.1.31.86", "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 75242a56e3ccd..6f627824372d7 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.29.38", + "Version": "2.1.32.60", "Names": { "AC": "Острів Вознесіння", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Острів Різдва", "CY": "Кіпр", - "CZ": "Чеська Республіка", + "CZ": "Чехія", "DE": "Німеччина", "DG": "Дієго-Гарсія", "DJ": "Джибуті", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur.json b/src/Symfony/Component/Intl/Resources/data/regions/ur.json index 14b3cbf5a81aa..340de7135804b 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "اسینشن آئلینڈ", "AD": "انڈورا", @@ -56,7 +56,7 @@ "CW": "کیوراکاؤ", "CX": "جزیرہ کرسمس", "CY": "قبرص", - "CZ": "چیک جمہوریہ", + "CZ": "زکھیا", "DE": "جرمنی", "DG": "ڈائجو گارسیا", "DJ": "جبوتی", 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 def922cab70b3..f4c90f595fca1 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.27.79", + "Version": "2.1.31.33", "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 089d74c1391c1..e113cca986679 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.29.44", + "Version": "2.1.32.60", "Names": { "AC": "Me’roj oroli", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Kyurasao", "CX": "Rojdestvo oroli", "CY": "Kipr", - "CZ": "Chexiya Respublikasi", + "CZ": "Chexiya", "DE": "Germaniya", "DG": "Diyego-Garsiya", "DJ": "Jibuti", 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 939c7559362f1..396b0e6ea7a3c 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.27.40", + "Version": "2.1.31.33", "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 976b4b0979cf6..c59c342ae63f8 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.27.98", + "Version": "2.1.31.86", "Names": { "AC": "Меърож ороли", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Рождество ороли", "CY": "Кипр", - "CZ": "Чехия Республикаси", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего-Гарсия", "DJ": "Жибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/vi.json b/src/Symfony/Component/Intl/Resources/data/regions/vi.json index 51c3601bf54fa..d76ee7117be2a 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.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Đảo Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Đảo Giáng Sinh", "CY": "Síp", - "CZ": "Cộng hòa Séc", + "CZ": "Czechia", "DE": "Đức", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yi.json b/src/Symfony/Component/Intl/Resources/data/regions/yi.json index c7ffdae7baa14..03b629b387132 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.27.97", + "Version": "2.1.31.33", "Names": { "AD": "אַנדארע", "AF": "אַפֿגהאַניסטאַן", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo.json b/src/Symfony/Component/Intl/Resources/data/regions/yo.json index 5a41bee8b9492..e6171f3b500fa 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.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Orílẹ́ède Ààndórà", "AE": "Orílẹ́ède Ẹmirate ti Awọn Arabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json index afb98110103cd..730d6ca92091b 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.29.54", + "Version": "2.1.31.33", "Names": { "AD": "Orílɛ́ède Ààndórà", "AE": "Orílɛ́ède Ɛmirate ti Awɔn Arabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh.json b/src/Symfony/Component/Intl/Resources/data/regions/zh.json index 2c0413f9157a5..1c0afd2c539a3 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.29.84", + "Version": "2.1.33.94", "Names": { "AC": "阿森松岛", "AD": "安道尔", @@ -56,7 +56,7 @@ "CW": "库拉索", "CX": "圣诞岛", "CY": "塞浦路斯", - "CZ": "捷克共和国", + "CZ": "捷克", "DE": "德国", "DG": "迪戈加西亚岛", "DJ": "吉布提", 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 f974b60a5d872..412a6fc2879cc 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.27.99", + "Version": "2.1.31.33", "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 3701d28f95dc3..025c857595afc 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.28.79", + "Version": "2.1.33.94", "Names": { "AC": "阿森松島", "AD": "安道爾", @@ -56,7 +56,7 @@ "CW": "庫拉索", "CX": "聖誕島", "CY": "賽普勒斯", - "CZ": "捷克共和國", + "CZ": "捷克", "DE": "德國", "DG": "迪亞哥加西亞島", "DJ": "吉布地", 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 f974b60a5d872..412a6fc2879cc 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.27.99", + "Version": "2.1.31.33", "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 f6cb4eb52a190..737a09ccd2323 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.29.22", + "Version": "2.1.31.74", "Names": { "AC": "i-Ascension Island", "AD": "i-Andorra", @@ -56,7 +56,7 @@ "CW": "i-Curaçao", "CX": "i-Christmas Island", "CY": "i-Cyprus", - "CZ": "i-Czech Republic", + "CZ": "i-Czechia", "DE": "i-Germany", "DG": "i-Diego Garcia", "DJ": "i-Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index eb4e001795120..772e86c6c7ab4 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.29.44", + "Version": "2.1.32.59", "Names": { "Arab": "Arabies", "Armn": "Armeens", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/am.json b/src/Symfony/Component/Intl/Resources/data/scripts/am.json index 80fce8ad73fee..a7e8cbb44567f 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "ዓረብኛ", "Armn": "አርሜንያዊ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json index 38fa92d5900a5..4504de0e3a347 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.28.79", + "Version": "2.1.32.86", "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 7fc0ba8900574..2ca6d2add3403 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.27.40", + "Version": "2.1.31.33", "Names": { "Beng": "বঙালী" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az.json b/src/Symfony/Component/Intl/Resources/data/scripts/az.json index a1a07f3feb677..d1d145763adb0 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.28.79", + "Version": "2.1.32.59", "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 44cabfd94b725..9389476cf6d01 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.27.40", + "Version": "2.1.31.74", "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 909350ca9d0ec..279bc9808c7bf 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.29.66", + "Version": "2.1.31.86", "Names": { "Arab": "арабскае", "Armn": "армянскае", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json index 96150e0bd8f6e..2749944c4097c 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.30.6", + "Version": "2.1.33.75", "Names": { "Arab": "арабска", "Armi": "Арамейска", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json index 1fd69788590fc..b5e093656d04c 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.29.44", + "Version": "2.1.32.59", "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 b4473d5355f72..487d69f5ca8f5 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.27.40", + "Version": "2.1.31.33", "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 47923ad2009fb..0e23d656547e4 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.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "arabek", "Armi": "arameek impalaerel", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index 3df4d60319e02..83e6aeea5399a 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.28.79", + "Version": "2.1.31.86", "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 a55a40c7a2c0f..2d3883e30f59e 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.28.76", + "Version": "2.1.32.72", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json index da2ff45d56bdc..58b2ab09faadf 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.28.79", + "Version": "2.1.32.59", "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 000a5b95246b2..5f4b55e2885c8 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.28.76", + "Version": "2.1.31.86", "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 e1417452aed1a..8f1e57c27883f 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.28.79", + "Version": "2.1.32.59", "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 e171b8547ebee..b8525436a0d33 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.30.6", + "Version": "2.1.31.86", "Names": { "Arab": "Arabaidd", "Armn": "Armenaidd", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/da.json b/src/Symfony/Component/Intl/Resources/data/scripts/da.json index 8198921dca552..3e5cb062dbd61 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.28.79", + "Version": "2.1.32.59", "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 02817c0b1d148..2bfeebb1ead09 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/de.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kaukasisch-Albanisch", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json index b058623eff63c..5f1111bed19f9 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.29.61", + "Version": "2.1.31.34", "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 2c9ab7c9a8c9e..cab3bcf4302f1 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.28.76", + "Version": "2.1.31.86", "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 cb27c79e4785d..d573583b667ac 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.28.79", + "Version": "2.1.32.59", "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 829edf793b0e7..a9930e8e0a629 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.30.50", + "Version": "2.1.32.59", "Names": { "Adlm": "Adlam", "Afak": "Afaka", 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 0f07ea1a596c9..7712a994b70b5 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.27.99", + "Version": "2.1.31.33", "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 f0a4b5a2767e2..ce27c67bacbca 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.28.80", + "Version": "2.1.32.59", "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 00f18e9b47b44..d5476e969a087 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.27.99", + "Version": "2.1.31.33", "Names": { "Hrkt": "katakana o hiragana", "Laoo": "lao", 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 d5c594996d952..7b448fb9ef1c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "Telu": "telugú" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index b626923f5c6df..ff2c3cda31356 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.28.79", + "Version": "2.1.32.59", "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 8642a3c87cbac..abd603f4cc62e 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.29.20", + "Version": "2.1.32.59", "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 12ba1167755cd..a2b6a002f6851 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.29.44", + "Version": "2.1.32.59", "Names": { "Aghb": "آلبانیایی قفقازی", "Arab": "عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json index 10a98854399f8..b01080d8db539 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.29.44", + "Version": "2.1.31.33", "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 e4db30bb4da58..35915f0f88df8 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.29.88", + "Version": "2.1.32.59", "Names": { "Adlm": "fulanin adlam-aakkosto", "Afak": "afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json index b37629052b4ed..9bba681b19f29 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.28.76", + "Version": "2.1.31.86", "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 4d06a91674478..b4b78f5766b25 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.28.79", + "Version": "2.1.32.59", "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 79f792e8fd898..516ae8991ccc5 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.27.99", + "Version": "2.1.31.33", "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 5f5f72116c131..ed6c6342724bd 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.29.44", + "Version": "2.1.31.86", "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 79c8c7599b1b6..3e2c1f4c39d80 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.28.79", + "Version": "2.1.31.86", "Names": { "Aghb": "Albánach Cugasach", "Arab": "Arabach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index 3c3c25bf11aa7..3c3b92daf0681 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.28.76", + "Version": "2.1.31.86", "Names": { "Afak": "Afaka", "Aghb": "Albàinis Chabhcasach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index 531eb46984140..8469f3721b430 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "árabe", "Armn": "armenio", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json index 9e36ec999627b..4e4d7265b430f 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "અરબી", "Armi": "ઇમ્પિરિયલ આર્મનિક", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/he.json b/src/Symfony/Component/Intl/Resources/data/scripts/he.json index 1fe2f99e47d56..9a68a9e515a56 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.29.27", + "Version": "2.1.32.59", "Names": { "Arab": "ערבי", "Armn": "ארמני", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json index c8a890b5af43e..8eda66bf95427 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.28.79", + "Version": "2.1.32.59", "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 44ebb4c8d1c1f..9f4a0ac673d1d 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.28.79", + "Version": "2.1.32.59", "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 5a9747c6d495d..48f90b14e845b 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "Arab", "Armi": "Birodalmi arámi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json index 9c9d23d484407..e488bee546f08 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "արաբական", "Armn": "հայկական", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/id.json b/src/Symfony/Component/Intl/Resources/data/scripts/id.json index 722e9fba3cfa0..d778e1dd4dbab 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/id.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json index 2ff71519a3ffc..ae39bb9f582f2 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.27.40", + "Version": "2.1.31.33", "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 722e9fba3cfa0..d778e1dd4dbab 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/in.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/is.json b/src/Symfony/Component/Intl/Resources/data/scripts/is.json index f9b6fc54784fb..c80f7c45d3aa2 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.29.65", + "Version": "2.1.32.59", "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 dc066444d0c4d..592daea878567 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.28.79", + "Version": "2.1.32.60", "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 1fe2f99e47d56..9a68a9e515a56 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.29.27", + "Version": "2.1.32.59", "Names": { "Arab": "ערבי", "Armn": "ארמני", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json index 4214590c73311..bbc78df697fae 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.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "アファカ文字", "Aghb": "カフカス・アルバニア文字", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json index 0069647a70bec..f8c62b1cfbff4 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.29.20", + "Version": "2.1.32.59", "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 7d6a8a83f871d..c0c6306667076 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.28.79", + "Version": "2.1.32.59", "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 b129077305a35..d389b3c29901a 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.28.79", + "Version": "2.1.31.74", "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 c3e69b1401ef4..967c0589079a5 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.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "ಅರೇಬಿಕ್", "Armi": "ಇಂಪೀರಿಯಲ್ ಅರೆಮಾಯಿಕ್", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json index 501e3fea82292..0e8ed291c4426 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.29.22", + "Version": "2.1.32.59", "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 92997f3effa56..f4f7beefca398 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.30.6", + "Version": "2.1.31.86", "Names": { "Arab": "اَربی", "Armn": "اَرمانیَن", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json index 8196a271c82b9..aef62a9a8e5f1 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.28.79", + "Version": "2.1.31.86", "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 8f761b0143015..b2b003022a382 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.28.76", + "Version": "2.1.31.86", "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 e8f49db41295a..c788e83425923 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.28.79", + "Version": "2.1.31.86", "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 02b0b2477a164..541939a7829af 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.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kaukazo Albanijos", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json index bece1e64abdc7..ae6a6165569f6 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arābu", "Armi": "aramiešu", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json index c984647a8d61c..86d7167f87f36 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.30.58", + "Version": "2.1.32.59", "Scripts": [ "Adlm", "Afak", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json index 90f45cfcec9bf..b30f9fd5effff 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.28.79", + "Version": "2.1.32.59", "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 159790dc1a1a3..38353d1537351 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.28.79", + "Version": "2.1.32.59", "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 7a51c2ffd89a8..76071ef14363b 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "араб", "Armn": "армени", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index 9dc8912029742..c3f8d01d45aee 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.28.79", + "Version": "2.1.31.86", "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 a7160b2e63a25..7bb622ff7ef0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "Arab", "Armn": "Armenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json index 4465dc33b118c..f2b0a99a766ce 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.28.76", + "Version": "2.1.32.59", "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 b8041cba3d198..7721f0ca69fac 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.30.50", + "Version": "2.1.33.28", "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 dc5c481e713a6..f5b7d7e63bc4d 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.30.7", + "Version": "2.1.32.59", "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 48d6b33834173..c83e8a0080b23 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.29.20", + "Version": "2.1.32.59", "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 fd1379aa13fa6..6bd2efa43ab74 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Adlm": "Adlam", "Afak": "Defaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json index fdd26ee95ba36..f224b033d1db3 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.28.76", + "Version": "2.1.31.86", "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 dc5c481e713a6..f5b7d7e63bc4d 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.30.7", + "Version": "2.1.32.59", "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 5a57b6c376f14..bfe18400fc76c 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.27.98", + "Version": "2.1.31.33", "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 a9efa7342a5a7..76750c38c104d 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.27.78", + "Version": "2.1.31.33", "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 9e95e6e60bcb3..9042e75829fa6 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.27.40", + "Version": "2.1.31.33", "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 ea2efe2da187f..39cce6a6f1396 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.28.79", + "Version": "2.1.31.86", "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 75fa968e2d8f2..92237304f719a 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.27.40", + "Version": "2.1.31.33", "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 05f22febd9f9c..ab85b9d144aaf 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabskie", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json index 670362e0e2c2c..89eb295efc377 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.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "عربي" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index 9f5ec2b7c05b5..26547c948a6bf 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.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "árabe", "Armi": "armi", 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 e51e9e02a1030..0897b12fcac95 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.29.54", + "Version": "2.1.31.86", "Names": { "Armn": "arménio", "Egyd": "egípcio demótico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json index 1847a44c43d58..9d88aa14dcb75 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.28.76", + "Version": "2.1.31.86", "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 5927d3a678182..9c3856a867406 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.28.79", + "Version": "2.1.32.60", "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 0058c1ab7bfa6..0ee324ac9f2f6 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.29.20", + "Version": "2.1.32.59", "Names": { "Afak": "афака", "Arab": "арабица", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se.json b/src/Symfony/Component/Intl/Resources/data/scripts/se.json index 8b4e1a1403156..92d943692bd0e 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.27.98", + "Version": "2.1.31.33", "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 4e23ee7e49c77..6c436258a0249 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.27.78", + "Version": "2.1.31.33", "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 a4aeecaeaf0f5..f79cd2a19262b 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.29.33", + "Version": "2.1.32.73", "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 5364ad7d1be34..3d36cb3102133 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.28.79", + "Version": "2.1.33.28", "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 e8639cbe2ac8f..6dd4de3bd86cc 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.28.79", + "Version": "2.1.32.59", "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 eb8664fd44773..fd5cd56ca043c 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.28.79", + "Version": "2.1.32.59", "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 7ea667e8cb93e..c8634fbb68131 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/so.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.33.76", "Names": { "Zxxx": "Aan la qorin", "Zzzz": "Far aan la aqoon amase aan saxnayn" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json index 51f34cf730bf4..1e45c84e7fa30 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.28.79", + "Version": "2.1.32.59", "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 fae62efcd8a3c..d4f7ba0abaeaa 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.28.79", + "Version": "2.1.32.73", "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 a4aeecaeaf0f5..f79cd2a19262b 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.29.33", + "Version": "2.1.32.73", "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 88aaa6d9b7612..5271e58091615 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.30.7", + "Version": "2.1.32.59", "Names": { "Afak": "afakiska", "Aghb": "kaukasiska albanska", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index 7c4f5c1f9c4bc..e8c9d16f7a0aa 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.28.79", + "Version": "2.1.33.73", "Names": { "Arab": "Kiarabu", "Armn": "Kiarmenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json index 527c38a31f2ac..e043d3461a656 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.28.79", + "Version": "2.1.32.4", "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 050cec11cfe60..5835c05f45227 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.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "అరబిక్", "Armi": "ఇంపీరియల్ అరామాక్", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/th.json b/src/Symfony/Component/Intl/Resources/data/scripts/th.json index ddce6a378bbfd..f403adef3d6c6 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.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "อะฟาคา", "Aghb": "แอลเบเนีย คอเคเซีย", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json index a0acc4e0978e6..a4a4c9232826e 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.27.40", + "Version": "2.1.31.33", "Names": { "Ethi": "ፊደል", "Latn": "ላቲን" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json index 3015fb14ebc98..e0d380df03d11 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.28.79", + "Version": "2.1.31.86", "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 efae34c512186..842627b954a1b 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.27.98", + "Version": "2.1.31.74", "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 cf0a74b87508c..bdb93e1b02c36 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.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json index 5f4c86d7b4d81..88e35132458b6 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.28.76", + "Version": "2.1.31.86", "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 aa08cb1c5cffd..87f08422afd63 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.29.38", + "Version": "2.1.32.60", "Names": { "Afak": "афака", "Aghb": "кавказька албанська", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index 899f7cf662740..37474e315594c 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.28.79", + "Version": "2.1.32.59", "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 e120d19590e2e..10e3655ef2ad1 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.29.44", + "Version": "2.1.32.60", "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 bf7fb812f7a6e..52b0a001aeb3e 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.27.40", + "Version": "2.1.31.33", "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 356577fa2dda8..48ce7be151743 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.27.98", + "Version": "2.1.31.86", "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 edf646ad4fffa..d73efce88ae60 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Chữ Afaka", "Arab": "Chữ Ả Rập", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json index 3821f37d0df86..9201b2cba59c4 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.27.97", + "Version": "2.1.31.33", "Names": { "Arab": "אַראַביש", "Cyrl": "ציריליש", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json index 399e228bf30d1..089ae784fbf7f 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.29.84", + "Version": "2.1.33.94", "Names": { "Adlm": "Adlm", "Afak": "阿法卡文", 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 0e66fedac63be..ddc22d1a4ff47 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.27.99", + "Version": "2.1.31.33", "Names": { "Cyrl": "西里爾文", "Deva": "梵文", 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 dec44172b36ca..5c8ea8c6c19ad 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.28.79", + "Version": "2.1.33.94", "Names": { "Afak": "阿法卡文字", "Aghb": "高加索阿爾巴尼亞文", 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 0e66fedac63be..ddc22d1a4ff47 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.27.99", + "Version": "2.1.31.33", "Names": { "Cyrl": "西里爾文", "Deva": "梵文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json index b104992cdb609..d92e134a39383 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.29.22", + "Version": "2.1.31.74", "Names": { "Arab": "isi-Arabic", "Armn": "isi-Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/svn-info.txt b/src/Symfony/Component/Intl/Resources/data/svn-info.txt index 466469b0a9a22..c4961e2075e93 100644 --- a/src/Symfony/Component/Intl/Resources/data/svn-info.txt +++ b/src/Symfony/Component/Intl/Resources/data/svn-info.txt @@ -1,7 +1,7 @@ SVN information =============== -URL: http://source.icu-project.org/repos/icu/tags/release-58-2/icu4c/source -Revision: 39531 +URL: http://source.icu-project.org/repos/icu/tags/release-59-1/icu4c/source +Revision: 40047 Author: yoshito -Date: 2016-12-08T17:34:49.505743Z +Date: 2017-04-13T09:55:03.829717Z diff --git a/src/Symfony/Component/Intl/Resources/data/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 5132e635a5f89..2246a13a3daf9 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -58.2 +59.1 From 388ee467c502322bddfa8689b5819079d025f300 Mon Sep 17 00:00:00 2001 From: Alan Bondarchuk Date: Thu, 4 May 2017 20:21:54 +0300 Subject: [PATCH 16/67] [DependencyInjection] Don't store default deprecation template in every service definition instance --- src/Symfony/Component/DependencyInjection/Definition.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Definition.php b/src/Symfony/Component/DependencyInjection/Definition.php index 62e33e2ea579a..7781220a97fec 100644 --- a/src/Symfony/Component/DependencyInjection/Definition.php +++ b/src/Symfony/Component/DependencyInjection/Definition.php @@ -29,7 +29,7 @@ class Definition private $factoryService; private $shared = true; private $deprecated = false; - private $deprecationTemplate = 'The "%service_id%" service is deprecated. You should stop using it, as it will soon be removed.'; + private $deprecationTemplate; private $scope = ContainerInterface::SCOPE_CONTAINER; private $properties = array(); private $calls = array(); @@ -44,6 +44,8 @@ class Definition private $autowired = false; private $autowiringTypes = array(); + private static $defaultDeprecationTemplate = 'The "%service_id%" service is deprecated. You should stop using it, as it will soon be removed.'; + protected $arguments; /** @@ -796,7 +798,7 @@ public function isDeprecated() */ public function getDeprecationMessage($id) { - return str_replace('%service_id%', $id, $this->deprecationTemplate); + return str_replace('%service_id%', $id, $this->deprecationTemplate ?: self::$defaultDeprecationTemplate); } /** From fd0dd57e7426bcb3238679d05d95e9de4860dd88 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 4 May 2017 07:20:44 -0400 Subject: [PATCH 17/67] Filesystem: annotate the one network test with a "network" group. Tests that require network access can be problematic, because they depend on some external state not under your control. That can lead to "random" failures when the code in question actually works fine. The Filesystem component has one such test, and this commit adds it to the "network" group (for PHPUnit). Doing so lets the user skip that particular test, by running phpunit with the --exclude-group flag. We take advantage of this in Gentoo, where every user has the ability to run the test suite but network access is forbidden. --- src/Symfony/Component/Filesystem/Tests/FilesystemTest.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php index ab2395cd001c0..b7bdfac4155e0 100644 --- a/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php +++ b/src/Symfony/Component/Filesystem/Tests/FilesystemTest.php @@ -156,6 +156,9 @@ public function testCopyCreatesTargetDirectoryIfItDoesNotExist() $this->assertEquals('SOURCE FILE', file_get_contents($targetFilePath)); } + /** + * @group network + */ public function testCopyForOriginUrlsAndExistingLocalFileDefaultsToCopy() { $sourceFilePath = 'http://symfony.com/images/common/logo/logo_symfony_header.png'; From dd5b7a632bd1098fa3d0327fbb048a04794d91bc Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 5 May 2017 13:16:12 +0200 Subject: [PATCH 18/67] [VarDumper] Fix dumping of non-nested stubs --- src/Symfony/Component/VarDumper/Caster/StubCaster.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/VarDumper/Caster/StubCaster.php b/src/Symfony/Component/VarDumper/Caster/StubCaster.php index ab0f52e55ae9d..2ffba30e1348e 100644 --- a/src/Symfony/Component/VarDumper/Caster/StubCaster.php +++ b/src/Symfony/Component/VarDumper/Caster/StubCaster.php @@ -29,8 +29,10 @@ public static function castStub(Stub $c, array $a, Stub $stub, $isNested) $stub->handle = $c->handle; $stub->cut = $c->cut; - return array(); + $a = array(); } + + return $a; } public static function cutInternals($obj, array $a, Stub $stub, $isNested) From 3fc80d10efa14f57636d17e82ac431b9bd2f00ca Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Sat, 6 May 2017 10:33:49 +0200 Subject: [PATCH 19/67] [Workflow] Move twig extension registration to twig bundle --- .../Bundle/FrameworkBundle/Resources/config/workflow.xml | 5 ----- .../DependencyInjection/Compiler/ExtensionPass.php | 8 ++++++++ src/Symfony/Bundle/TwigBundle/Resources/config/twig.xml | 4 ++++ 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/config/workflow.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/config/workflow.xml index 76592087a2260..3203870393923 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/config/workflow.xml +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/config/workflow.xml @@ -22,10 +22,5 @@ - - - - - diff --git a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php index 1491b04ac0545..00d140369d2e3 100644 --- a/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php +++ b/src/Symfony/Bundle/TwigBundle/DependencyInjection/Compiler/ExtensionPass.php @@ -18,6 +18,7 @@ use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\ExpressionLanguage\ExpressionLanguage; use Symfony\Component\Stopwatch\Stopwatch; +use Symfony\Component\Workflow\Workflow; use Symfony\Component\Yaml\Parser as YamlParser; /** @@ -115,6 +116,13 @@ public function process(ContainerBuilder $container) if (class_exists(ExpressionLanguage::class)) { $container->getDefinition('twig.extension.expression')->addTag('twig.extension'); } + + $container->addResource(new ClassExistenceResource(Workflow::class)); + if (!class_exists(Workflow::class) || !$container->has('workflow.registry')) { + $container->removeDefinition('workflow.twig_extension'); + } else { + $container->getDefinition('workflow.twig_extension')->addTag('twig.extension'); + } } private function getComposerRootDir($rootDir) diff --git a/src/Symfony/Bundle/TwigBundle/Resources/config/twig.xml b/src/Symfony/Bundle/TwigBundle/Resources/config/twig.xml index 800fc08367fd8..8eb702c99ee45 100644 --- a/src/Symfony/Bundle/TwigBundle/Resources/config/twig.xml +++ b/src/Symfony/Bundle/TwigBundle/Resources/config/twig.xml @@ -106,6 +106,10 @@ + + + + From 08f4ad2275247dfa2d843317db776f2484888c4e Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Sat, 6 May 2017 10:34:13 +0200 Subject: [PATCH 20/67] [Workflow] fix use directives --- src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php | 1 + .../Workflow/Tests/EventListener/AuditTrailListenerTest.php | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php b/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php index 766420a91d75a..2e5459fa07e68 100644 --- a/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php +++ b/src/Symfony/Bridge/Twig/Extension/WorkflowExtension.php @@ -12,6 +12,7 @@ namespace Symfony\Bridge\Twig\Extension; use Symfony\Component\Workflow\Registry; +use Symfony\Component\Workflow\Transition; /** * WorkflowExtension. diff --git a/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php b/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php index f953e9a53e1eb..d74dbe79db670 100644 --- a/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php +++ b/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php @@ -8,8 +8,6 @@ use Symfony\Component\Workflow\EventListener\AuditTrailListener; use Symfony\Component\Workflow\MarkingStore\MultipleStateMarkingStore; use Symfony\Component\Workflow\Tests\WorkflowBuilderTrait; -use Symfony\Component\Workflow\Tests\createSimpleWorkflowDefinition; -use Symfony\Component\Workflow\Transition; use Symfony\Component\Workflow\Workflow; class AuditTrailListenerTest extends TestCase From 219bce99165f0118d30226561a6329ed2be5043e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 7 May 2017 09:03:57 -0700 Subject: [PATCH 21/67] fixed CS --- .../Tests/Fixtures/containers/container14.php | 2 +- .../DependencyInjection/Tests/Fixtures/php/services1-1.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container14.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container14.php index 56ea6c1ed23d4..191afb8cddc1f 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container14.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container14.php @@ -4,7 +4,7 @@ use Symfony\Component\DependencyInjection\ContainerBuilder; -/** +/* * This file is included in Tests\Dumper\GraphvizDumperTest::testDumpWithFrozenCustomClassContainer * and Tests\Dumper\XmlDumperTest::testCompiledContainerCanBeDumped. */ diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php index f15771172ef19..0fede650233e5 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services1-1.php @@ -1,4 +1,5 @@ Date: Sun, 7 May 2017 19:22:30 +0200 Subject: [PATCH 22/67] [DI] Fix PhpDumper blank lines around namespace --- src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php index de910517c8d23..09d22fcb5fd3d 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -827,7 +827,7 @@ private function addNewInstance($id, Definition $definition, $return, $instantia private function startClass($class, $baseClass, $namespace) { $bagClass = $this->container->isFrozen() ? 'use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag;' : 'use Symfony\Component\DependencyInjection\ParameterBag\\ParameterBag;'; - $namespaceLine = $namespace ? "namespace $namespace;\n" : ''; + $namespaceLine = $namespace ? "\nnamespace $namespace;\n" : ''; return << Date: Sun, 7 May 2017 09:11:44 -0700 Subject: [PATCH 23/67] fixed CS --- .../FrameworkBundle/Command/AssetsInstallCommand.php | 1 - .../Fixtures/Resources/views/translation.html.php | 12 ++++++------ src/Symfony/Component/Console/Helper/Table.php | 2 +- .../EventListener/CsrfValidationListenerTest.php | 1 - .../Component/HttpFoundation/Tests/RequestTest.php | 2 +- .../Provider/AbstractCurrencyDataProviderTest.php | 4 ++-- src/Symfony/Component/Process/Tests/ProcessTest.php | 4 ++-- .../Core/Authentication/Token/AnonymousToken.php | 2 +- .../Core/Authentication/Token/RememberMeToken.php | 2 +- .../EntryPoint/DigestAuthenticationEntryPoint.php | 2 +- .../Http/RememberMe/AbstractRememberMeServices.php | 2 +- 11 files changed, 16 insertions(+), 18 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php index 414b6d541f1f9..9f36c8d714d72 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/AssetsInstallCommand.php @@ -11,7 +11,6 @@ namespace Symfony\Bundle\FrameworkBundle\Command; -use Symfony\Component\Console\Helper\Table; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php index 5a7cd354763d0..1dcc5536c19b9 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Fixtures/Resources/views/translation.html.php @@ -32,18 +32,18 @@ array('%count%' => 10) ) ?> -trans('other-domain-test-no-params-short-array', [], 'not_messages'); ?> +trans('other-domain-test-no-params-short-array', array(), 'not_messages'); ?> trans('other-domain-test-no-params-long-array', array(), 'not_messages'); ?> -trans('other-domain-test-params-short-array', ['foo' => 'bar'], 'not_messages'); ?> +trans('other-domain-test-params-short-array', array('foo' => 'bar'), 'not_messages'); ?> trans('other-domain-test-params-long-array', array('foo' => 'bar'), 'not_messages'); ?> -transChoice('other-domain-test-trans-choice-short-array-%count%', 10, ['%count%' => 10], 'not_messages'); ?> +transChoice('other-domain-test-trans-choice-short-array-%count%', 10, array('%count%' => 10), 'not_messages'); ?> transChoice('other-domain-test-trans-choice-long-array-%count%', 10, array('%count%' => 10), 'not_messages'); ?> -trans('typecast', ['a' => (int) '123'], 'not_messages'); ?> -transChoice('msg1', 10 + 1, [], 'not_messages'); ?> -transChoice('msg2', ceil(4.5), [], 'not_messages'); ?> +trans('typecast', array('a' => (int) '123'), 'not_messages'); ?> +transChoice('msg1', 10 + 1, array(), 'not_messages'); ?> +transChoice('msg2', ceil(4.5), array(), 'not_messages'); ?> diff --git a/src/Symfony/Component/Console/Helper/Table.php b/src/Symfony/Component/Console/Helper/Table.php index 0fe89f7ecaecf..e5fc36f63dc3a 100644 --- a/src/Symfony/Component/Console/Helper/Table.php +++ b/src/Symfony/Component/Console/Helper/Table.php @@ -149,7 +149,7 @@ public function getStyle() */ public function setColumnStyle($columnIndex, $name) { - $columnIndex = intval($columnIndex); + $columnIndex = (int) $columnIndex; $this->columnStyles[$columnIndex] = $this->resolveStyle($name); diff --git a/src/Symfony/Component/Form/Tests/Extension/Csrf/EventListener/CsrfValidationListenerTest.php b/src/Symfony/Component/Form/Tests/Extension/Csrf/EventListener/CsrfValidationListenerTest.php index fc0dee140b047..47f9e43294ba0 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Csrf/EventListener/CsrfValidationListenerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Csrf/EventListener/CsrfValidationListenerTest.php @@ -12,7 +12,6 @@ namespace Symfony\Component\Form\Tests\Extension\Csrf\EventListener; use PHPUnit\Framework\TestCase; -use Symfony\Component\Form\Form; use Symfony\Component\Form\FormBuilder; use Symfony\Component\Form\FormEvent; use Symfony\Component\Form\Extension\Csrf\EventListener\CsrfValidationListener; diff --git a/src/Symfony/Component/HttpFoundation/Tests/RequestTest.php b/src/Symfony/Component/HttpFoundation/Tests/RequestTest.php index fa3fc3ef8d8cc..77e24ee5c7b84 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/RequestTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/RequestTest.php @@ -1008,7 +1008,7 @@ public function testGetContentReturnsResourceWhenContentSetInConstructor() $req = new Request(array(), array(), array(), array(), array(), array(), 'MyContent'); $resource = $req->getContent(true); - $this->assertTrue(is_resource($resource)); + $this->assertInternalType('resource', $resource); $this->assertEquals('MyContent', stream_get_contents($resource)); } diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php index 3e71ed78a4234..7387e0e47d737 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php @@ -676,7 +676,7 @@ function ($currency) { return array($currency); }, */ public function testGetFractionDigits($currency) { - $this->assertTrue(is_numeric($this->dataProvider->getFractionDigits($currency))); + $this->assertInternalType('numeric', $this->dataProvider->getFractionDigits($currency)); } /** @@ -684,7 +684,7 @@ public function testGetFractionDigits($currency) */ public function testGetRoundingIncrement($currency) { - $this->assertTrue(is_numeric($this->dataProvider->getRoundingIncrement($currency))); + $this->assertInternalType('numeric', $this->dataProvider->getRoundingIncrement($currency)); } public function provideCurrenciesWithNumericEquivalent() diff --git a/src/Symfony/Component/Process/Tests/ProcessTest.php b/src/Symfony/Component/Process/Tests/ProcessTest.php index e034aeb28a743..a1112b92a7d05 100644 --- a/src/Symfony/Component/Process/Tests/ProcessTest.php +++ b/src/Symfony/Component/Process/Tests/ProcessTest.php @@ -725,8 +725,8 @@ public function testRestart() // Ensure that both processed finished and the output is numeric $this->assertFalse($process1->isRunning()); $this->assertFalse($process2->isRunning()); - $this->assertTrue(is_numeric($process1->getOutput())); - $this->assertTrue(is_numeric($process2->getOutput())); + $this->assertInternalType('numeric', $process1->getOutput()); + $this->assertInternalType('numeric', $process2->getOutput()); // Ensure that restart returned a new process by check that the output is different $this->assertNotEquals($process1->getOutput(), $process2->getOutput()); diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php index bbbfe6453e4ba..0716eef2063db 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/AnonymousToken.php @@ -51,7 +51,7 @@ public function getCredentials() */ public function getKey() { - @trigger_error(__method__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); + @trigger_error(__METHOD__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); return $this->getSecret(); } diff --git a/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php b/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php index 60e36f29904f2..5bf05d1a04fef 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php +++ b/src/Symfony/Component/Security/Core/Authentication/Token/RememberMeToken.php @@ -78,7 +78,7 @@ public function getProviderKey() */ public function getKey() { - @trigger_error(__method__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); + @trigger_error(__METHOD__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); return $this->getSecret(); } diff --git a/src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php b/src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php index cdb98ebb83e7b..deb6366a5970c 100644 --- a/src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php +++ b/src/Symfony/Component/Security/Http/EntryPoint/DigestAuthenticationEntryPoint.php @@ -69,7 +69,7 @@ public function start(Request $request, AuthenticationException $authException = */ public function getKey() { - @trigger_error(__method__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); + @trigger_error(__METHOD__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); return $this->getSecret(); } diff --git a/src/Symfony/Component/Security/Http/RememberMe/AbstractRememberMeServices.php b/src/Symfony/Component/Security/Http/RememberMe/AbstractRememberMeServices.php index f8c51f30ecd1b..535d5f3f96fdf 100644 --- a/src/Symfony/Component/Security/Http/RememberMe/AbstractRememberMeServices.php +++ b/src/Symfony/Component/Security/Http/RememberMe/AbstractRememberMeServices.php @@ -89,7 +89,7 @@ public function getRememberMeParameter() */ public function getKey() { - @trigger_error(__method__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); + @trigger_error(__METHOD__.'() is deprecated since version 2.8 and will be removed in 3.0. Use getSecret() instead.', E_USER_DEPRECATED); return $this->getSecret(); } From 33d6f5c327813f364d8204445bcaac2ca38e9dcf Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 7 May 2017 19:16:08 -0700 Subject: [PATCH 24/67] fixed CS --- src/Symfony/Component/Cache/Adapter/RedisAdapter.php | 2 +- src/Symfony/Component/Console/Helper/Table.php | 2 +- .../DependencyInjection/Tests/Loader/XmlFileLoaderTest.php | 1 - src/Symfony/Component/Form/Tests/CompoundFormTest.php | 1 - .../Workflow/Tests/EventListener/AuditTrailListenerTest.php | 1 - 5 files changed, 2 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php index 5cae772ef7fc8..377212df75f0d 100644 --- a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php @@ -36,7 +36,7 @@ class RedisAdapter extends AbstractAdapter /** * @param \Redis|\RedisArray|\RedisCluster|\Predis\Client $redisClient The redis client * @param string $namespace The default namespace - * @param integer $defaultLifetime The default lifetime + * @param int $defaultLifetime The default lifetime */ public function __construct($redisClient, $namespace = '', $defaultLifetime = 0) { diff --git a/src/Symfony/Component/Console/Helper/Table.php b/src/Symfony/Component/Console/Helper/Table.php index 30c2498856e73..574e9b46e4a24 100644 --- a/src/Symfony/Component/Console/Helper/Table.php +++ b/src/Symfony/Component/Console/Helper/Table.php @@ -191,7 +191,7 @@ public function getColumnStyle($columnIndex) */ public function setColumnWidth($columnIndex, $width) { - $this->columnWidths[intval($columnIndex)] = intval($width); + $this->columnWidths[(int) $columnIndex] = (int) $width; return $this; } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php b/src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php index a420b92cf4512..adee1bf486035 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Loader/XmlFileLoaderTest.php @@ -12,7 +12,6 @@ namespace Symfony\Component\DependencyInjection\Tests\Loader; use PHPUnit\Framework\TestCase; -use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; use Symfony\Component\DependencyInjection\Reference; use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; diff --git a/src/Symfony/Component/Form/Tests/CompoundFormTest.php b/src/Symfony/Component/Form/Tests/CompoundFormTest.php index 684f9215d4408..acdd004d425a0 100644 --- a/src/Symfony/Component/Form/Tests/CompoundFormTest.php +++ b/src/Symfony/Component/Form/Tests/CompoundFormTest.php @@ -11,7 +11,6 @@ namespace Symfony\Component\Form\Tests; -use PHPUnit\Framework\TestCase; use Symfony\Component\Form\Extension\Core\DataMapper\PropertyPathMapper; use Symfony\Component\Form\Extension\HttpFoundation\HttpFoundationRequestHandler; use Symfony\Component\Form\FormError; diff --git a/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php b/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php index f953e9a53e1eb..62fe0ff93c8e4 100644 --- a/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php +++ b/src/Symfony/Component/Workflow/Tests/EventListener/AuditTrailListenerTest.php @@ -8,7 +8,6 @@ use Symfony\Component\Workflow\EventListener\AuditTrailListener; use Symfony\Component\Workflow\MarkingStore\MultipleStateMarkingStore; use Symfony\Component\Workflow\Tests\WorkflowBuilderTrait; -use Symfony\Component\Workflow\Tests\createSimpleWorkflowDefinition; use Symfony\Component\Workflow\Transition; use Symfony\Component\Workflow\Workflow; From 040edfec4a1b32b5cc5198bd4e4e8110697865ea Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Mon, 8 May 2017 10:50:08 +0200 Subject: [PATCH 25/67] [FrameworkBundle] AbstractConfigCommand: do not try registering bundles twice --- .../Bundle/FrameworkBundle/Command/AbstractConfigCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php index 6afe16a8d2daf..4e729298c1528 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/AbstractConfigCommand.php @@ -95,7 +95,7 @@ private function initializeBundles() // Re-build bundle manually to initialize DI extensions that can be extended by other bundles in their build() method // as this method is not called when the container is loaded from the cache. $container = $this->getContainerBuilder(); - $bundles = $this->getContainer()->get('kernel')->registerBundles(); + $bundles = $this->getContainer()->get('kernel')->getBundles(); foreach ($bundles as $bundle) { if ($extension = $bundle->getContainerExtension()) { $container->registerExtension($extension); From a49d79c856ebc0d6e3ffdc6074fdabb19ee7936d Mon Sep 17 00:00:00 2001 From: "Issei.M" Date: Tue, 9 May 2017 13:05:50 +0900 Subject: [PATCH 26/67] [Form] Minor: Fix comment in ChoiceType --- src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php index 1392c81a59f93..a45cb3a27860c 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/ChoiceType.php @@ -162,7 +162,7 @@ public function buildForm(FormBuilderInterface $builder, array $options) } // To avoid issues when the submitted choices are arrays (i.e. array to string conversions), - // we have to ensure that all elements of the submitted choice data are strings or null. + // we have to ensure that all elements of the submitted choice data are NULL, strings or ints. $builder->addEventListener(FormEvents::PRE_SUBMIT, function (FormEvent $event) { $data = $event->getData(); From 6fe2ad05586af1044276136e0a03d174d90b185c Mon Sep 17 00:00:00 2001 From: Flug Date: Tue, 9 May 2017 10:21:02 +0200 Subject: [PATCH 27/67] [FrameworkBundle] Adding the extension XML required by XmlUtils and not installed by default --- src/Symfony/Bundle/FrameworkBundle/composer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 9ed3b0807d97f..ad1560ad179ee 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -17,6 +17,7 @@ ], "require": { "php": ">=5.3.9", + "ext-xml": "*", "symfony/asset": "~2.7", "symfony/dependency-injection": "^2.6.2", "symfony/config": "~2.4", From 01c2c099a420a65013050928a94b55ce511b12ae Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Tue, 9 May 2017 20:54:25 +0200 Subject: [PATCH 28/67] [Console] Do not duplicate Helper::strlen() code --- src/Symfony/Component/Console/Application.php | 20 ++++--------------- 1 file changed, 4 insertions(+), 16 deletions(-) diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index 270a6e352f691..673161c17938d 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -15,6 +15,7 @@ use Symfony\Component\Console\Descriptor\XmlDescriptor; use Symfony\Component\Console\Formatter\OutputFormatter; use Symfony\Component\Console\Helper\DebugFormatterHelper; +use Symfony\Component\Console\Helper\Helper; use Symfony\Component\Console\Helper\ProcessHelper; use Symfony\Component\Console\Helper\QuestionHelper; use Symfony\Component\Console\Input\InputInterface; @@ -653,7 +654,7 @@ public function renderException($e, $output) do { $title = sprintf(' [%s] ', get_class($e)); - $len = $this->stringWidth($title); + $len = Helper::strlen($title); $width = $this->getTerminalWidth() ? $this->getTerminalWidth() - 1 : PHP_INT_MAX; // HHVM only accepts 32 bits integer in str_split, even when PHP_INT_MAX is a 64 bit integer: https://github.com/facebook/hhvm/issues/1327 @@ -664,7 +665,7 @@ public function renderException($e, $output) foreach (preg_split('/\r?\n/', $e->getMessage()) as $line) { foreach ($this->splitStringByWidth($line, $width - 4) as $line) { // pre-format lines to get the right string length - $lineLength = $this->stringWidth($line) + 4; + $lineLength = Helper::strlen($line) + 4; $lines[] = array($line, $lineLength); $len = max($lineLength, $len); @@ -673,7 +674,7 @@ public function renderException($e, $output) $messages = array(); $messages[] = $emptyLine = sprintf('%s', str_repeat(' ', $len)); - $messages[] = sprintf('%s%s', $title, str_repeat(' ', max(0, $len - $this->stringWidth($title)))); + $messages[] = sprintf('%s%s', $title, str_repeat(' ', max(0, $len - Helper::strlen($title)))); foreach ($lines as $line) { $messages[] = sprintf(' %s %s', OutputFormatter::escape($line[0]), str_repeat(' ', $len - $line[1])); } @@ -1086,19 +1087,6 @@ public function setDefaultCommand($commandName) $this->defaultCommand = $commandName; } - private function stringWidth($string) - { - if (!function_exists('mb_strwidth')) { - return strlen($string); - } - - if (false === $encoding = mb_detect_encoding($string, null, true)) { - return strlen($string); - } - - return mb_strwidth($string, $encoding); - } - private function splitStringByWidth($string, $width) { // str_split is not suitable for multi-byte characters, we should use preg_split to get char array properly. From 75f098fcb8bf4a1ade780d6a97764507182696a4 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Thu, 11 May 2017 15:58:12 +0200 Subject: [PATCH 29/67] Fix errors not rethrown even if not handled by console.error listeners --- src/Symfony/Component/Console/Application.php | 2 +- .../Console/Tests/ApplicationTest.php | 23 +++++++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Application.php b/src/Symfony/Component/Console/Application.php index 673161c17938d..7d2c51298fc66 100644 --- a/src/Symfony/Component/Console/Application.php +++ b/src/Symfony/Component/Console/Application.php @@ -129,7 +129,7 @@ public function run(InputInterface $input = null, OutputInterface $output = null } if (null !== $e) { - if (!$this->catchExceptions) { + if (!$this->catchExceptions || !$x instanceof \Exception) { throw $x; } diff --git a/src/Symfony/Component/Console/Tests/ApplicationTest.php b/src/Symfony/Component/Console/Tests/ApplicationTest.php index 5a64c9f164544..a955ee44c9fb4 100644 --- a/src/Symfony/Component/Console/Tests/ApplicationTest.php +++ b/src/Symfony/Component/Console/Tests/ApplicationTest.php @@ -1170,6 +1170,29 @@ protected function getDispatcher($skipCommand = false) return $dispatcher; } + + /** + * @requires PHP 7 + */ + public function testErrorIsRethrownIfNotHandledByConsoleErrorEventWithCatchingEnabled() + { + $application = new Application(); + $application->setAutoExit(false); + $application->setDispatcher(new EventDispatcher()); + + $application->register('dym')->setCode(function (InputInterface $input, OutputInterface $output) { + new \UnknownClass(); + }); + + $tester = new ApplicationTester($application); + + try { + $tester->run(array('command' => 'dym')); + $this->fail('->run() should rethrow PHP errors if not handled via ConsoleErrorEvent.'); + } catch (\Error $e) { + $this->assertSame($e->getMessage(), 'Class \'UnknownClass\' not found'); + } + } } class CustomApplication extends Application From c690256966933c9818374da62e34cf971d6a5b10 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 15 May 2017 15:11:23 +0200 Subject: [PATCH 30/67] remove Security deps from the require section These requirements have been moved in #20075 before and are still present in the `require-dev` section. --- src/Symfony/Bundle/FrameworkBundle/composer.json | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index 8c5c52c2e70c6..6360ff6dbce17 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -29,8 +29,6 @@ "symfony/filesystem": "~2.8|~3.0", "symfony/finder": "~2.8|~3.0", "symfony/routing": "~3.1.10|^3.2.3", - "symfony/security-core": "~2.8|~3.0", - "symfony/security-csrf": "~2.8|~3.0", "symfony/stopwatch": "~2.8|~3.0", "doctrine/cache": "~1.0" }, From 5d3d1b25e076567420248ee69b2144b8ad4ed2ff Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 3 May 2017 18:59:05 +0100 Subject: [PATCH 31/67] [Intl][Form] Update tests, TimeZoneTransformer, and DateTimeToLocalizedStringTransformer for the GMT and UTC split in ICU The [GMT timezone has been split from the UTC](http://site.icu-project.org/download/59) timezone [in CLDR](http://cldr.unicode.org/index/downloads/cldr-31) (which ICU is based on). For example, the code blow: * before ICU 59.1 would return "GMT" in all cases * with ICU 59.1 it returns "UTC" for the first three ('z', 'zz', 'zzz') and "Coordinated Universal Time" for the last two ('zzzz', 'zzzzz'). ```php foreach (['z', 'zz', 'zzz', 'zzzz', 'zzzzz'] as $pattern) { $formatter = new \IntlDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('UTC'), IntlDateFormatter::GREGORIAN, $pattern); var_dump($formatter->format(new \DateTime('@0'))); } ``` Similarly Form's `DateTimeToLocalizedStringTransformer` is also affected: ```php $transformer = new DateTimeToLocalizedStringTransformer('UTC', 'UTC', null, \IntlDateFormatter::FULL); var_dump($transformer->transform(new \DateTime('2010-02-03 04:05:06 UTC'))); // ICU 58.2: '03.02.2010, 04:05:06 GMT' // ICU 59.1: '03.02.2010, 04:05:06 Koordinierte Weltzeit' ``` Refer to added and modified test cases for more changes. I split this PR in two commits for easier review. First commit updates ICU data (generated files), the second updates code and test cases to be compatible with updated data. --- ...teTimeToLocalizedStringTransformerTest.php | 14 ++- .../DateFormat/TimeZoneTransformer.php | 25 ++++- src/Symfony/Component/Intl/README.md | 2 + .../AbstractIntlDateFormatterTest.php | 106 +++++++++++++++--- .../Verification/IntlDateFormatterTest.php | 28 +++++ 5 files changed, 155 insertions(+), 20 deletions(-) diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php index 7d262fe644b0a..1562071edfd12 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php @@ -61,11 +61,13 @@ public function dataProvider() array(\IntlDateFormatter::FULL, \IntlDateFormatter::NONE, null, 'Mittwoch, 3. Februar 2010', '2010-02-03 00:00:00 UTC'), array(null, \IntlDateFormatter::SHORT, null, '03.02.2010, 04:05', '2010-02-03 04:05:00 UTC'), array(null, \IntlDateFormatter::MEDIUM, null, '03.02.2010, 04:05:06', '2010-02-03 04:05:06 UTC'), - array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 GMT', '2010-02-03 04:05:06 UTC'), + array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 UTC', '2010-02-03 04:05:06 UTC'), + array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 UTC', '2010-02-03 04:05:06 GMT'), // see below for extra test case for time format FULL array(\IntlDateFormatter::NONE, \IntlDateFormatter::SHORT, null, '04:05', '1970-01-01 04:05:00 UTC'), array(\IntlDateFormatter::NONE, \IntlDateFormatter::MEDIUM, null, '04:05:06', '1970-01-01 04:05:06 UTC'), - array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 GMT', '1970-01-01 04:05:06 UTC'), + array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 UTC', '1970-01-01 04:05:06 GMT'), + array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 UTC', '1970-01-01 04:05:06 UTC'), array(null, null, 'yyyy-MM-dd HH:mm:00', '2010-02-03 04:05:00', '2010-02-03 04:05:00 UTC'), array(null, null, 'yyyy-MM-dd HH:mm', '2010-02-03 04:05', '2010-02-03 04:05:00 UTC'), array(null, null, 'yyyy-MM-dd HH', '2010-02-03 04', '2010-02-03 04:00:00 UTC'), @@ -85,6 +87,9 @@ public function dataProvider() */ public function testTransform($dateFormat, $timeFormat, $pattern, $output, $input) { + IntlTestHelper::requireFullIntl($this, '59.1'); + \Locale::setDefault('de_AT'); + $transformer = new DateTimeToLocalizedStringTransformer( 'UTC', 'UTC', @@ -101,9 +106,12 @@ public function testTransform($dateFormat, $timeFormat, $pattern, $output, $inpu public function testTransformFullTime() { + IntlTestHelper::requireFullIntl($this, '59.1'); + \Locale::setDefault('de_AT'); + $transformer = new DateTimeToLocalizedStringTransformer('UTC', 'UTC', null, \IntlDateFormatter::FULL); - $this->assertEquals('03.02.2010, 04:05:06 GMT', $transformer->transform($this->dateTime)); + $this->assertEquals('03.02.2010, 04:05:06 Koordinierte Weltzeit', $transformer->transform($this->dateTime)); } public function testTransformToDifferentLocale() diff --git a/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php b/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php index 65d22dbe39b7b..5170bb788eb88 100644 --- a/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php +++ b/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php @@ -33,10 +33,29 @@ public function format(\DateTime $dateTime, $length) throw new NotImplementedException('Time zone different than GMT or UTC is not supported as a formatting output.'); } - // From ICU >= 4.8, the zero offset is not more used, example: GMT instead of GMT+00:00 - $format = (0 !== (int) $dateTime->format('O')) ? '\G\M\TP' : '\G\M\T'; + if ('Etc' === $timeZone) { + // i.e. Etc/GMT+1, Etc/UTC, Etc/Zulu + $timeZone = substr($dateTime->getTimezone()->getName(), 4); + } + + // From ICU >= 59.1 GMT and UTC are no longer unified + if (in_array($timeZone, array('UTC', 'UCT', 'Universal', 'Zulu'))) { + // offset is not supported with UTC + return $length > 3 ? 'Coordinated Universal Time' : 'UTC'; + } + + $offset = (int) $dateTime->format('O'); + + // From ICU >= 4.8, the zero offset is no more used, example: GMT instead of GMT+00:00 + if (0 === $offset) { + return $length > 3 ? 'Greenwich Mean Time' : 'GMT'; + } + + if ($length > 3) { + return $dateTime->format('\G\M\TP'); + } - return $dateTime->format($format); + return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100); } /** diff --git a/src/Symfony/Component/Intl/README.md b/src/Symfony/Component/Intl/README.md index 30cb5093c4541..806c6275e83dd 100644 --- a/src/Symfony/Component/Intl/README.md +++ b/src/Symfony/Component/Intl/README.md @@ -15,5 +15,7 @@ Resources * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony) + * [Docker images with intl support](https://hub.docker.com/r/jakzal/php-intl) + (for the Intl component development) [0]: http://www.php.net/manual/en/intl.setup.php diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php index 88cc55e9be8cd..ee8b5c9447edc 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php @@ -231,15 +231,8 @@ public function formatProvider() array('s', 43200, '0'), // 12 hours // general - array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 GMT'), - array('K:mm a, z', 0, '0:00 AM, GMT'), - - // timezone - array('z', 0, 'GMT'), - array('zz', 0, 'GMT'), - array('zzz', 0, 'GMT'), - array('zzzz', 0, 'GMT'), - array('zzzzz', 0, 'GMT'), + array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 UTC'), + array('K:mm a, z', 0, '0:00 AM, UTC'), ); $dateTime = new \DateTime('@0'); @@ -250,12 +243,25 @@ public function formatProvider() $formatData[] = array('h:mm a', $dateTime, '12:00 AM'); $formatData[] = array('yyyyy.MMMM.dd hh:mm aaa', $dateTime, '01970.January.01 12:00 AM'); - $formatData[] = array("yyyy.MM.dd 'at' HH:mm:ss zzz", $dateTime, '1970.01.01 at 00:00:00 GMT'); - $formatData[] = array('K:mm a, z', $dateTime, '0:00 AM, GMT'); + $formatData[] = array("yyyy.MM.dd 'at' HH:mm:ss zzz", $dateTime, '1970.01.01 at 00:00:00 UTC'); + $formatData[] = array('K:mm a, z', $dateTime, '0:00 AM, UTC'); return $formatData; } + /** + * @requires PHP 5.5.10 + */ + public function testFormatUtcAndGmtAreSplit() + { + $pattern = "yyyy.MM.dd 'at' HH:mm:ss zzz"; + $gmtFormatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, 'GMT', IntlDateFormatter::GREGORIAN, $pattern); + $utcFormatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, 'UTC', IntlDateFormatter::GREGORIAN, $pattern); + + $this->assertSame('1970.01.01 at 00:00:00 GMT', $gmtFormatter->format(new \DateTime('@0'))); + $this->assertSame('1970.01.01 at 00:00:00 UTC', $utcFormatter->format(new \DateTime('@0'))); + } + /** * @dataProvider formatErrorProvider */ @@ -334,6 +340,75 @@ public function formatWithTimezoneProvider() return $data; } + /** + * @dataProvider formatTimezoneProvider + * @requires PHP 5.5 + */ + public function testFormatTimezone($pattern, $timezone, $expected) + { + $formatter = $this->getDefaultDateFormatter($pattern); + $formatter->setTimeZone(new \DateTimeZone($timezone)); + + $this->assertEquals($expected, $formatter->format(0)); + } + + public function formatTimezoneProvider() + { + $cases = array( + array('z', 'GMT', 'GMT'), + array('zz', 'GMT', 'GMT'), + array('zzz', 'GMT', 'GMT'), + array('zzzz', 'GMT', 'Greenwich Mean Time'), + array('zzzzz', 'GMT', 'Greenwich Mean Time'), + + array('z', 'Etc/GMT', 'GMT'), + array('zz', 'Etc/GMT', 'GMT'), + array('zzz', 'Etc/GMT', 'GMT'), + array('zzzz', 'Etc/GMT', 'Greenwich Mean Time'), + array('zzzzz', 'Etc/GMT', 'Greenwich Mean Time'), + + array('z', 'Etc/GMT+3', 'GMT-3'), + array('zz', 'Etc/GMT+3', 'GMT-3'), + array('zzz', 'Etc/GMT+3', 'GMT-3'), + array('zzzz', 'Etc/GMT+3', 'GMT-03:00'), + array('zzzzz', 'Etc/GMT+3', 'GMT-03:00'), + + array('z', 'UTC', 'UTC'), + array('zz', 'UTC', 'UTC'), + array('zzz', 'UTC', 'UTC'), + array('zzzz', 'UTC', 'Coordinated Universal Time'), + array('zzzzz', 'UTC', 'Coordinated Universal Time'), + + array('z', 'Etc/UTC', 'UTC'), + array('zz', 'Etc/UTC', 'UTC'), + array('zzz', 'Etc/UTC', 'UTC'), + array('zzzz', 'Etc/UTC', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/UTC', 'Coordinated Universal Time'), + + array('z', 'Etc/Universal', 'UTC'), + array('z', 'Etc/Zulu', 'UTC'), + array('z', 'Etc/UCT', 'UTC'), + array('z', 'Etc/Greenwich', 'GMT'), + array('zzzzz', 'Etc/Universal', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/Zulu', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/UCT', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/Greenwich', 'Greenwich Mean Time'), + ); + + if (!defined('HHVM_VERSION')) { + // these timezones are not considered valid in HHVM + $cases = array_merge($cases, array( + array('z', 'GMT+03:00', 'GMT+3'), + array('zz', 'GMT+03:00', 'GMT+3'), + array('zzz', 'GMT+03:00', 'GMT+3'), + array('zzzz', 'GMT+03:00', 'GMT+03:00'), + array('zzzzz', 'GMT+03:00', 'GMT+03:00'), + )); + } + + return $cases; + } + public function testFormatWithGmtTimezone() { $formatter = $this->getDefaultDateFormatter('zzzz'); @@ -389,8 +464,11 @@ public function testFormatWithDateTimeZoneGmt() if (PHP_VERSION_ID < 50500 && !(extension_loaded('intl') && method_exists('IntlDateFormatter', 'setTimeZone'))) { $this->markTestSkipped('Only in PHP 5.5+ IntlDateFormatter allows to use DateTimeZone objects.'); } + if (PHP_VERSION_ID < 50510) { + $this->markTestSkipped('Before PHP 5.5.10 the GMT timezone used to be converted to UTC.'); + } - $formatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('GMT'), IntlDateFormatter::GREGORIAN, 'zzzz'); + $formatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('GMT'), IntlDateFormatter::GREGORIAN, 'zzz'); $this->assertEquals('GMT', $formatter->format(0)); } @@ -482,8 +560,8 @@ public function dateAndTimeTypeProvider() array(0, IntlDateFormatter::LONG, IntlDateFormatter::NONE, 'January 1, 1970'), array(0, IntlDateFormatter::MEDIUM, IntlDateFormatter::NONE, 'Jan 1, 1970'), array(0, IntlDateFormatter::SHORT, IntlDateFormatter::NONE, '1/1/70'), - array(0, IntlDateFormatter::NONE, IntlDateFormatter::FULL, '12:00:00 AM GMT'), - array(0, IntlDateFormatter::NONE, IntlDateFormatter::LONG, '12:00:00 AM GMT'), + array(0, IntlDateFormatter::NONE, IntlDateFormatter::FULL, '12:00:00 AM Coordinated Universal Time'), + array(0, IntlDateFormatter::NONE, IntlDateFormatter::LONG, '12:00:00 AM UTC'), array(0, IntlDateFormatter::NONE, IntlDateFormatter::MEDIUM, '12:00:00 AM'), array(0, IntlDateFormatter::NONE, IntlDateFormatter::SHORT, '12:00 AM'), ); diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php index 1754a08438dbd..45f8ee5404561 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php @@ -43,6 +43,34 @@ public function testFormatWithTimezoneFromEnvironmentVariable() parent::testFormatWithTimezoneFromEnvironmentVariable(); } + /** + * @dataProvider formatTimezoneProvider + * @requires PHP 5.5 + */ + public function testFormatTimezone($pattern, $timezone, $expected) + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testFormatTimezone($pattern, $timezone, $expected); + } + + public function testFormatUtcAndGmtAreSplit() + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testFormatUtcAndGmtAreSplit(); + } + + /** + * @dataProvider dateAndTimeTypeProvider + */ + public function testDateAndTimeType($timestamp, $datetype, $timetype, $expected) + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testDateAndTimeType($timestamp, $datetype, $timetype, $expected); + } + protected function getDateFormatter($locale, $datetype, $timetype, $timezone = null, $calendar = IntlDateFormatter::GREGORIAN, $pattern = null) { IntlTestHelper::requireFullIntl($this, '55.1'); From 94871fac801bb77c22625f28d9f4bc1940f69061 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 15 May 2017 08:15:28 -0700 Subject: [PATCH 32/67] removed unneeded annotation in tests --- .../DateFormatter/AbstractIntlDateFormatterTest.php | 11 ++--------- .../Verification/IntlDateFormatterTest.php | 1 - 2 files changed, 2 insertions(+), 10 deletions(-) diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php index 2fa0b93eefb8a..35a377da2e899 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php @@ -228,15 +228,8 @@ public function formatProvider() array('s', 43200, '0'), // 12 hours // general - array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 GMT'), - array('K:mm a, z', 0, '0:00 AM, GMT'), - - // timezone - array('z', 0, 'GMT'), - array('zz', 0, 'GMT'), - array('zzz', 0, 'GMT'), - array('zzzz', 0, 'GMT'), - array('zzzzz', 0, 'GMT'), + array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 UTC'), + array('K:mm a, z', 0, '0:00 AM, UTC'), // general, DateTime array('y-M-d', $dateTime, '1970-1-1'), diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php index 4aabc48ff8d4c..8d5912ca6c9e3 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php @@ -32,7 +32,6 @@ protected function setUp() /** * @dataProvider formatTimezoneProvider - * @requires PHP 5.5 */ public function testFormatTimezone($pattern, $timezone, $expected) { From 3d6d80d843842851f4758faacb86039573c42a5d Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 18 May 2017 11:06:54 +0200 Subject: [PATCH 33/67] Improved how profiler errors are dispalyed on small screens --- .../Resources/views/Profiler/profiler.css.twig | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig index 6bff3723d9d2d..56c02685f63dd 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Profiler/profiler.css.twig @@ -973,6 +973,18 @@ table.logs .sf-call-stack abbr { display: block; } + #sidebar:not(:hover):not(.expanded) .label .count { + border-radius: 50%; + border: 1px solid #eee; + height: 8px; + min-width: 0; + padding: 0; + right: 4px; + text-indent: -9999px; + top: 50%; + width: 8px; + } + .visible-small { display: inherit; } From a34b8ce2df05808991c0b0b331c7a409aca91329 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 18 May 2017 14:41:01 +0200 Subject: [PATCH 34/67] CI fixes --- .github/PULL_REQUEST_TEMPLATE.md | 5 +++-- .travis.yml | 10 +++++++++- appveyor.yml | 4 ++-- .../Storage/Handler/MongoDbSessionHandlerTest.php | 12 ++++++++---- 4 files changed, 22 insertions(+), 9 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index d35bbdeb69e23..cb9b8a69c1638 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -1,6 +1,6 @@ | Q | A | ------------- | --- -| Branch? | master / 2.7, 2.8 or 3.2 +| Branch? | 3.4 or master / 2.7, 2.8, 3.2 or 3.3 | Bug fix? | yes/no | New feature? | yes/no | BC breaks? | yes/no @@ -13,7 +13,8 @@ diff --git a/.travis.yml b/.travis.yml index e33ea4d8764db..42cdc02bae497 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,8 +76,12 @@ before_install: echo hhvm.jit = 0 >> $INI echo apc.enable_cli = 1 >> $INI echo extension = ldap.so >> $INI - [[ $PHP = 5.* ]] && echo extension = mongo.so >> $INI [[ $PHP = 5.* ]] && echo extension = memcache.so >> $INI + if [[ $PHP = 5.* ]]; then + echo extension = mongo.so >> $INI + elif [[ $PHP = 7.* ]]; then + echo extension = mongodb.so >> $INI + fi # Matrix lines for intermediate PHP versions are skipped for pull requests if [[ ! $deps && ! $PHP = ${MIN_PHP%.*} && ! $PHP = hhvm* && $TRAVIS_PULL_REQUEST != false ]]; then @@ -136,6 +140,10 @@ install: export COMPOSER_ROOT_VERSION=$SYMFONY_VERSION.x-dev if [[ ! $skip && $deps ]]; then mv composer.json.phpunit composer.json; fi + if [[ ! $skip && $PHP = 7.* ]]; then + ([[ $deps ]] && cd src/Symfony/Component/HttpFoundation; composer require --dev --no-update mongodb/mongodb) + fi + - if [[ ! $skip ]]; then $COMPOSER_UP; fi - if [[ ! $skip ]]; then ./phpunit install; fi - | diff --git a/appveyor.yml b/appveyor.yml index 0ec2c5a3a00e1..6c7e5e1d846a4 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -21,7 +21,7 @@ install: - 7z x php-5.3.11-nts-Win32-VC9-x86.zip -y >nul - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/ICU-51.2-dlls.zip - 7z x ICU-51.2-dlls.zip -y >nul - - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.1.3-Win32-VC14-x64.zip + - appveyor DownloadFile https://github.com/symfony/binary-utils/releases/download/v0.1/php-7.1.3-Win32-VC14-x86.zip - cd ext - appveyor DownloadFile https://raw.githubusercontent.com/symfony/binary-utils/master/php_intl-3.0.0-5.3-nts-vc9-x86.zip - 7z x php_intl-3.0.0-5.3-nts-vc9-x86.zip -y >nul @@ -58,7 +58,7 @@ install: test_script: - cd c:\projects\symfony - - cd c:\php && 7z x php-7.1.3-Win32-VC14-x64.zip -y >nul && copy /Y php.ini-min php.ini + - cd c:\php && 7z x php-7.1.3-Win32-VC14-x86.zip -y >nul && copy /Y php.ini-min php.ini - cd c:\projects\symfony - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! - cd c:\php && 7z x php-5.3.11-nts-Win32-VC9-x86.zip -y >nul && copy /Y php.ini-min php.ini diff --git a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php index f23161c10b076..128b9b52f505f 100644 --- a/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php +++ b/src/Symfony/Component/HttpFoundation/Tests/Session/Storage/Handler/MongoDbSessionHandlerTest.php @@ -31,7 +31,11 @@ protected function setUp() { parent::setUp(); - if (!extension_loaded('mongo') && !extension_loaded('mongodb')) { + if (extension_loaded('mongodb')) { + if (!class_exists('MongoDB\Client')) { + $this->markTestSkipped('The mongodb/mongodb package is required.'); + } + } elseif (!extension_loaded('mongo')) { $this->markTestSkipped('The Mongo or MongoDB extension is required.'); } @@ -109,7 +113,7 @@ public function testRead() if (phpversion('mongodb')) { $that->assertInstanceOf('MongoDB\BSON\UTCDateTime', $criteria[$that->options['expiry_field']]['$gte']); - $that->assertGreaterThanOrEqual(round(((int) $criteria[$that->options['expiry_field']]['$gte']) / 1000), $testTimeout); + $that->assertGreaterThanOrEqual(round((string) $criteria[$that->options['expiry_field']]['$gte'] / 1000), $testTimeout); } else { $that->assertInstanceOf('MongoDate', $criteria[$that->options['expiry_field']]['$gte']); $that->assertGreaterThanOrEqual($criteria[$that->options['expiry_field']]['$gte']->sec, $testTimeout); @@ -168,7 +172,7 @@ public function testWrite() $that->assertEquals('bar', $data[$that->options['data_field']]->getData()); $that->assertInstanceOf('MongoDB\BSON\UTCDateTime', $data[$that->options['time_field']]); $that->assertInstanceOf('MongoDB\BSON\UTCDateTime', $data[$that->options['expiry_field']]); - $that->assertGreaterThanOrEqual($expectedExpiry, round(((int) $data[$that->options['expiry_field']]) / 1000)); + $that->assertGreaterThanOrEqual($expectedExpiry, round((string) $data[$that->options['expiry_field']] / 1000)); } else { $that->assertEquals('bar', $data[$that->options['data_field']]->bin); $that->assertInstanceOf('MongoDate', $data[$that->options['time_field']]); @@ -294,7 +298,7 @@ public function testGc() ->will($this->returnCallback(function ($criteria) use ($that) { if (phpversion('mongodb')) { $that->assertInstanceOf('MongoDB\BSON\UTCDateTime', $criteria[$that->options['expiry_field']]['$lt']); - $that->assertGreaterThanOrEqual(time() - 1, round(((int) $criteria[$that->options['expiry_field']]['$lt']) / 1000)); + $that->assertGreaterThanOrEqual(time() - 1, round((string) $criteria[$that->options['expiry_field']]['$lt'] / 1000)); } else { $that->assertInstanceOf('MongoDate', $criteria[$that->options['expiry_field']]['$lt']); $that->assertGreaterThanOrEqual(time() - 1, $criteria[$that->options['expiry_field']]['$lt']->sec); From fab0629206ec572bfe35d9549d6a195151636853 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Thu, 18 May 2017 20:32:14 +0200 Subject: [PATCH 35/67] [Intl] Fix intl tests for PHP < 5.5.10 --- .../DateFormatter/AbstractIntlDateFormatterTest.php | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php index ee8b5c9447edc..43001a74fc6cb 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php @@ -342,7 +342,7 @@ public function formatWithTimezoneProvider() /** * @dataProvider formatTimezoneProvider - * @requires PHP 5.5 + * @requires PHP 5.5.10 */ public function testFormatTimezone($pattern, $timezone, $expected) { @@ -459,15 +459,11 @@ public function testFormatWithConstructorTimezone() ); } + /** + * @requires PHP 5.5.10 + */ public function testFormatWithDateTimeZoneGmt() { - if (PHP_VERSION_ID < 50500 && !(extension_loaded('intl') && method_exists('IntlDateFormatter', 'setTimeZone'))) { - $this->markTestSkipped('Only in PHP 5.5+ IntlDateFormatter allows to use DateTimeZone objects.'); - } - if (PHP_VERSION_ID < 50510) { - $this->markTestSkipped('Before PHP 5.5.10 the GMT timezone used to be converted to UTC.'); - } - $formatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('GMT'), IntlDateFormatter::GREGORIAN, 'zzz'); $this->assertEquals('GMT', $formatter->format(0)); From d740342a28b80f0ad58d90364134a92966822f46 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 19 May 2017 14:11:07 +0200 Subject: [PATCH 36/67] typo --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 6c7e5e1d846a4..ae43082f82fd8 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -57,7 +57,7 @@ install: - php phpunit install test_script: - - cd c:\projects\symfony + - SET X=0 - cd c:\php && 7z x php-7.1.3-Win32-VC14-x86.zip -y >nul && copy /Y php.ini-min php.ini - cd c:\projects\symfony - php phpunit src\Symfony --exclude-group benchmark,intl-data || SET X=!errorlevel! From c2ccf36040c3cbc6c00219d4e4840982a54da4ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20F=C3=BChrer?= Date: Thu, 18 May 2017 09:29:28 +0200 Subject: [PATCH 37/67] [Intl] Fix bin/common.php PHP7 compatibility --- src/Symfony/Component/Intl/Resources/bin/common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Intl/Resources/bin/common.php b/src/Symfony/Component/Intl/Resources/bin/common.php index 2e3c026217737..051d253cf27a2 100644 --- a/src/Symfony/Component/Intl/Resources/bin/common.php +++ b/src/Symfony/Component/Intl/Resources/bin/common.php @@ -68,7 +68,7 @@ function get_icu_version_from_genrb($genrb) return $matches[1]; } -set_exception_handler(function (\Exception $exception) { +set_exception_handler(function (\Throwable $exception) { echo "\n"; $cause = $exception; From 5bdda6ce746f338e908cc22b09fd64b172ecf04a Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sat, 20 May 2017 15:43:53 +0200 Subject: [PATCH 38/67] [Ldap] add a changelog file --- src/Symfony/Component/Ldap/CHANGELOG.md | 7 +++++++ src/Symfony/Component/Ldap/LdapClient.php | 2 +- src/Symfony/Component/Ldap/LdapClientInterface.php | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 src/Symfony/Component/Ldap/CHANGELOG.md diff --git a/src/Symfony/Component/Ldap/CHANGELOG.md b/src/Symfony/Component/Ldap/CHANGELOG.md new file mode 100644 index 0000000000000..61af4adf151a2 --- /dev/null +++ b/src/Symfony/Component/Ldap/CHANGELOG.md @@ -0,0 +1,7 @@ +CHANGELOG +========= + +3.1.0 +----- + + * The `LdapClient` class is deprecated. Use the `Ldap` class instead. diff --git a/src/Symfony/Component/Ldap/LdapClient.php b/src/Symfony/Component/Ldap/LdapClient.php index 0a68c05875b78..b20c7ea4828d5 100644 --- a/src/Symfony/Component/Ldap/LdapClient.php +++ b/src/Symfony/Component/Ldap/LdapClient.php @@ -18,7 +18,7 @@ * @author Francis Besset * @author Charles Sarrazin * - * @deprecated The LdapClient class will be removed in Symfony 4.0. You should use the Ldap class instead. + * @deprecated since version 3.1, to be removed in 4.0. Use the Ldap class instead. */ final class LdapClient implements LdapClientInterface { diff --git a/src/Symfony/Component/Ldap/LdapClientInterface.php b/src/Symfony/Component/Ldap/LdapClientInterface.php index 020e4b55896f5..0872ee082e813 100644 --- a/src/Symfony/Component/Ldap/LdapClientInterface.php +++ b/src/Symfony/Component/Ldap/LdapClientInterface.php @@ -19,7 +19,7 @@ * @author Grégoire Pineau * @author Charles Sarrazin * - * @deprecated You should use LdapInterface instead + * @deprecated since version 3.1, to be removed in 4.0. Use the LdapInterface instead. */ interface LdapClientInterface extends LdapInterface { From b3d58c54a4e40f1e57a33438ad8d2fa165e5389d Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sat, 20 May 2017 22:16:10 +0200 Subject: [PATCH 39/67] [DI] Added missing deprecation in changelog --- src/Symfony/Component/DependencyInjection/CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/DependencyInjection/CHANGELOG.md b/src/Symfony/Component/DependencyInjection/CHANGELOG.md index 43f445736f55c..eddcd32eac864 100644 --- a/src/Symfony/Component/DependencyInjection/CHANGELOG.md +++ b/src/Symfony/Component/DependencyInjection/CHANGELOG.md @@ -9,6 +9,7 @@ CHANGELOG * deprecated the ability to set or unset a private service with the `Container::set()` method * deprecated the ability to check for the existence of a private service with the `Container::has()` method * deprecated the ability to request a private service with the `Container::get()` method + * deprecated support for generating a dumped `Container` without populating the method map 3.0.0 ----- From a9202747095566037f0036a9bf2a3bc12cf1b83d Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 21 May 2017 09:37:18 +0200 Subject: [PATCH 40/67] do not mock a deprecated interface --- .../Provider/LdapBindAuthenticationProviderTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php index 8c86f66494a5d..5611e111fd0b5 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php @@ -32,7 +32,7 @@ class LdapBindAuthenticationProviderTest extends TestCase public function testEmptyPasswordShouldThrowAnException() { $userProvider = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserProviderInterface')->getMock(); - $ldap = $this->getMockBuilder('Symfony\Component\Ldap\LdapClientInterface')->getMock(); + $ldap = $this->getMockBuilder(LdapInterface::class)->getMock(); $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); $provider = new LdapBindAuthenticationProvider($userProvider, $userChecker, 'key', $ldap); From f7d1a064c6abddb5d410206bf9a4bdef5a4fe320 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 21 May 2017 10:33:50 +0200 Subject: [PATCH 41/67] respect optional error handler arguments --- 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 04abda4b9fa59..66b8762cff4e9 100644 --- a/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php +++ b/src/Symfony/Bridge/PhpUnit/DeprecationErrorHandler.php @@ -49,7 +49,7 @@ public static function register($mode = false) 'legacy' => array(), 'other' => array(), ); - $deprecationHandler = function ($type, $msg, $file, $line, $context) use (&$deprecations, $getMode) { + $deprecationHandler = function ($type, $msg, $file, $line, $context = array()) use (&$deprecations, $getMode) { if (E_USER_DEPRECATED !== $type) { return \PHPUnit_Util_ErrorHandler::handleError($type, $msg, $file, $line, $context); } From 5ae84a07cc4d7e4147402b3639cf7f7ddeaa28c1 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 21 May 2017 11:46:19 +0200 Subject: [PATCH 42/67] update phpunit-bridge cache-id --- phpunit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit b/phpunit index 466f8fbbc2356..559660b1df25f 100755 --- a/phpunit +++ b/phpunit @@ -1,7 +1,7 @@ #!/usr/bin/env php Date: Sun, 21 May 2017 12:07:34 +0200 Subject: [PATCH 43/67] document deprecation of the StringUtil class --- src/Symfony/Component/PropertyAccess/CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Symfony/Component/PropertyAccess/CHANGELOG.md b/src/Symfony/Component/PropertyAccess/CHANGELOG.md index 574106e521075..416287e2a0e82 100644 --- a/src/Symfony/Component/PropertyAccess/CHANGELOG.md +++ b/src/Symfony/Component/PropertyAccess/CHANGELOG.md @@ -1,6 +1,12 @@ CHANGELOG ========= +3.1.0 +----- + + * deprecated the `StringUtil` class, use `Symfony\Component\Inflector\Inflector` + instead + 2.7.0 ------ From 57f6941e25891131b2878ba6f3e50fc4dfb34642 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 21 May 2017 14:39:29 +0200 Subject: [PATCH 44/67] [Yaml] fix colon without space deprecation A colon after a mapping key that is not followed by a space is valid if the mapping key is quoted. --- src/Symfony/Component/Yaml/CHANGELOG.md | 4 ++-- src/Symfony/Component/Yaml/Inline.php | 5 +++-- src/Symfony/Component/Yaml/Tests/InlineTest.php | 6 +++++- 3 files changed, 10 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Yaml/CHANGELOG.md b/src/Symfony/Component/Yaml/CHANGELOG.md index 1a112f1230d32..a664d4b1eb3d6 100644 --- a/src/Symfony/Component/Yaml/CHANGELOG.md +++ b/src/Symfony/Component/Yaml/CHANGELOG.md @@ -5,8 +5,8 @@ CHANGELOG ----- * Mappings with a colon (`:`) that is not followed by a whitespace are deprecated - and will lead to a `ParseException` in Symfony 4.0 (e.g. `foo:bar` must be - `foo: bar`). + when the mapping key is not quoted and will lead to a `ParseException` in + Symfony 4.0 (e.g. `foo:bar` must be `foo: bar`). * Added support for parsing PHP constants: diff --git a/src/Symfony/Component/Yaml/Inline.php b/src/Symfony/Component/Yaml/Inline.php index b5136b3ab7cb1..e9a5955bbadab 100644 --- a/src/Symfony/Component/Yaml/Inline.php +++ b/src/Symfony/Component/Yaml/Inline.php @@ -461,14 +461,15 @@ private static function parseMapping($mapping, $flags, &$i = 0, $references = ar } // key + $isKeyQuoted = in_array($mapping[$i], array('"', "'"), true); $key = self::parseScalar($mapping, $flags, array(':', ' '), array('"', "'"), $i, false); if (':' !== $key && false === $i = strpos($mapping, ':', $i)) { break; } - if (':' !== $key && (!isset($mapping[$i + 1]) || !in_array($mapping[$i + 1], array(' ', ',', '[', ']', '{', '}'), true))) { - @trigger_error('Using a colon that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}" is deprecated since version 3.2 and will throw a ParseException in 4.0.', E_USER_DEPRECATED); + if (':' !== $key && !$isKeyQuoted && (!isset($mapping[$i + 1]) || !in_array($mapping[$i + 1], array(' ', ',', '[', ']', '{', '}'), true))) { + @trigger_error('Using a colon after an unquoted mapping key that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}") is deprecated since version 3.2 and will throw a ParseException in 4.0.', E_USER_DEPRECATED); } // value diff --git a/src/Symfony/Component/Yaml/Tests/InlineTest.php b/src/Symfony/Component/Yaml/Tests/InlineTest.php index bfa13e09d74e7..09175a6881d46 100644 --- a/src/Symfony/Component/Yaml/Tests/InlineTest.php +++ b/src/Symfony/Component/Yaml/Tests/InlineTest.php @@ -168,7 +168,7 @@ public function testParseInvalidMappingKeyShouldThrowException() /** * @group legacy - * @expectedDeprecation Using a colon that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}" is deprecated since version 3.2 and will throw a ParseException in 4.0. + * @expectedDeprecation Using a colon after an unquoted mapping key that is not followed by an indication character (i.e. " ", ",", "[", "]", "{", "}") is deprecated since version 3.2 and will throw a ParseException in 4.0. * throws \Symfony\Component\Yaml\Exception\ParseException in 4.0 */ public function testParseMappingKeyWithColonNotFollowedBySpace() @@ -391,6 +391,8 @@ public function getTestsForParse() array('{\'foo\': \'bar\', "bar": \'foo: bar\'}', array('foo' => 'bar', 'bar' => 'foo: bar')), array('{\'foo\'\'\': \'bar\', "bar\"": \'foo: bar\'}', array('foo\'' => 'bar', 'bar"' => 'foo: bar')), array('{\'foo: \': \'bar\', "bar: ": \'foo: bar\'}', array('foo: ' => 'bar', 'bar: ' => 'foo: bar')), + array('{"foo:bar": "baz"}', array('foo:bar' => 'baz')), + array('{"foo":"bar"}', array('foo' => 'bar')), // nested sequences and mappings array('[foo, [bar, foo]]', array('foo', array('bar', 'foo'))), @@ -460,6 +462,8 @@ public function getTestsForParseWithMapObjects() array('{\'foo\': \'bar\', "bar": \'foo: bar\'}', (object) array('foo' => 'bar', 'bar' => 'foo: bar')), array('{\'foo\'\'\': \'bar\', "bar\"": \'foo: bar\'}', (object) array('foo\'' => 'bar', 'bar"' => 'foo: bar')), array('{\'foo: \': \'bar\', "bar: ": \'foo: bar\'}', (object) array('foo: ' => 'bar', 'bar: ' => 'foo: bar')), + array('{"foo:bar": "baz"}', (object) array('foo:bar' => 'baz')), + array('{"foo":"bar"}', (object) array('foo' => 'bar')), // nested sequences and mappings array('[foo, [bar, foo]]', array('foo', array('bar', 'foo'))), From 50fdcd6c4f40fb9a97515b34d1b1e60096a6422f Mon Sep 17 00:00:00 2001 From: Brandon Kelly Date: Sun, 21 May 2017 07:18:42 -0700 Subject: [PATCH 45/67] Fixed filename in help text for update-data.php --- src/Symfony/Component/Intl/Resources/bin/update-data.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Intl/Resources/bin/update-data.php b/src/Symfony/Component/Intl/Resources/bin/update-data.php index fe527efeccc11..0914d26ec608e 100644 --- a/src/Symfony/Component/Intl/Resources/bin/update-data.php +++ b/src/Symfony/Component/Intl/Resources/bin/update-data.php @@ -36,7 +36,7 @@ if ($argc > 3 || 2 === $argc && '-h' === $argv[1]) { bailout(<<<'MESSAGE' -Usage: php update-icu-component.php +Usage: php update-data.php Updates the ICU data for Symfony to the latest version of ICU. From e5455db84f668c1e69944283eedf01cb940895a7 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 21 May 2017 19:48:19 +0200 Subject: [PATCH 46/67] [PhpUnitBridge] add a changelog file --- src/Symfony/Bridge/PhpUnit/CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 src/Symfony/Bridge/PhpUnit/CHANGELOG.md diff --git a/src/Symfony/Bridge/PhpUnit/CHANGELOG.md b/src/Symfony/Bridge/PhpUnit/CHANGELOG.md new file mode 100644 index 0000000000000..950b2389113b0 --- /dev/null +++ b/src/Symfony/Bridge/PhpUnit/CHANGELOG.md @@ -0,0 +1,8 @@ +CHANGELOG +========= + +3.1.0 +----- + + * passing a numerically indexed array to the constructor of the `SymfonyTestsListenerTrait` + is deprecated, pass an array of namespaces indexed by the mocked feature instead From 49d6604ee4bd89a5d63b370151536722cf70392c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 22 May 2017 13:36:46 +0200 Subject: [PATCH 47/67] Fix file perms --- src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php | 0 src/Symfony/Component/Finder/Tests/GlobTest.php | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100755 => 100644 src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php mode change 100755 => 100644 src/Symfony/Component/Finder/Tests/GlobTest.php diff --git a/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php b/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php old mode 100755 new mode 100644 diff --git a/src/Symfony/Component/Finder/Tests/GlobTest.php b/src/Symfony/Component/Finder/Tests/GlobTest.php old mode 100755 new mode 100644 From d715cc4a27e23d3468f16c2c57deb336f3ad323d Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Tue, 23 May 2017 15:50:11 +0200 Subject: [PATCH 48/67] [WebProfilerBundle] Fix sub-requests display in time profiler panel --- .../Resources/views/Collector/time.html.twig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.html.twig b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.html.twig index ea73c8bde717e..28e3a3c8385af 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.html.twig +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/time.html.twig @@ -107,8 +107,8 @@ {% if profile.parent %} -

- Sub-Request {{ profile.getcollector('request').requestattributes.get('_controller') }} +

+ Sub-Request {{ profiler_dump(profile.getcollector('request').requestattributes.get('_controller')) }} {{ collector.events.__section__.duration }} ms Return to parent request From 4f683a9a5b745b9a00de01b80c3ec9e208221aec Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Tue, 23 May 2017 09:27:52 +0200 Subject: [PATCH 49/67] [DI] Check for privates before shared services --- UPGRADE-3.2.md | 9 ++++++++ .../WebProfilerExtensionTest.php | 7 +++++-- .../DependencyInjection/Container.php | 15 ++++++------- .../DependencyInjection/ContainerBuilder.php | 3 --- .../Tests/ContainerTest.php | 21 +++++++++++++++---- 5 files changed, 39 insertions(+), 16 deletions(-) diff --git a/UPGRADE-3.2.md b/UPGRADE-3.2.md index e151275472755..8a14f2d4b6281 100644 --- a/UPGRADE-3.2.md +++ b/UPGRADE-3.2.md @@ -64,6 +64,15 @@ DependencyInjection * Calling `get()` on a `ContainerBuilder` instance before compiling the container is deprecated and will throw an exception in Symfony 4.0. + * Setting or unsetting a private service with the `Container::set()` method is + deprecated. Only public services can be set or unset in Symfony 4.0. + + * Checking the existence of a private service with the `Container::has()` + method is deprecated and will return `false` in Symfony 4.0. + + * Requesting a private service with the `Container::get()` method is deprecated + and will no longer be supported in Symfony 4.0. + ExpressionLanguage ------------------- diff --git a/src/Symfony/Bundle/WebProfilerBundle/Tests/DependencyInjection/WebProfilerExtensionTest.php b/src/Symfony/Bundle/WebProfilerBundle/Tests/DependencyInjection/WebProfilerExtensionTest.php index b5a9b53e5dbdc..28dbb976d3fbb 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Tests/DependencyInjection/WebProfilerExtensionTest.php +++ b/src/Symfony/Bundle/WebProfilerBundle/Tests/DependencyInjection/WebProfilerExtensionTest.php @@ -27,10 +27,13 @@ class WebProfilerExtensionTest extends TestCase */ private $container; - public static function assertSaneContainer(Container $container, $message = '') + public static function assertSaneContainer(Container $container, $message = '', $knownPrivates = array()) { $errors = array(); foreach ($container->getServiceIds() as $id) { + if (in_array($id, $knownPrivates, true)) { // to be removed in 4.0 + continue; + } try { $container->get($id); } catch (\Exception $e) { @@ -98,7 +101,7 @@ public function testToolbarConfig($toolbarEnabled, $interceptRedirects, $listene $this->assertSame($listenerInjected, $this->container->has('web_profiler.debug_toolbar')); - $this->assertSaneContainer($this->getDumpedContainer()); + $this->assertSaneContainer($this->getDumpedContainer(), '', array('web_profiler.csp.handler')); if ($listenerInjected) { $this->assertSame($listenerEnabled, $this->container->get('web_profiler.debug_toolbar')->isEnabled()); diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php index da84d18acffa3..119fb432a321b 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -200,6 +200,10 @@ public function set($id, $service) public function has($id) { for ($i = 2;;) { + if (isset($this->privates[$id])) { + @trigger_error(sprintf('Checking for the existence of the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); + } + if ('service_container' === $id || isset($this->aliases[$id]) || isset($this->services[$id]) @@ -207,10 +211,6 @@ public function has($id) return true; } - if (isset($this->privates[$id])) { - @trigger_error(sprintf('Checking for the existence of the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); - } - if (isset($this->methodMap[$id])) { return true; } @@ -262,6 +262,10 @@ public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE if (isset($this->aliases[$id])) { $id = $this->aliases[$id]; } + if (isset($this->privates[$id])) { + @trigger_error(sprintf('Requesting the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); + } + // Re-use shared service instance if it exists. if (isset($this->services[$id])) { return $this->services[$id]; @@ -300,9 +304,6 @@ public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE return; } - if (isset($this->privates[$id])) { - @trigger_error(sprintf('Requesting the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); - } $this->loading[$id] = true; diff --git a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php index b2a1d77a6dd9f..b788de5a7b5c8 100644 --- a/src/Symfony/Component/DependencyInjection/ContainerBuilder.php +++ b/src/Symfony/Component/DependencyInjection/ContainerBuilder.php @@ -573,9 +573,6 @@ public function compile() $compiler->compile($this); foreach ($this->definitions as $id => $definition) { - if (!$definition->isPublic()) { - $this->privates[$id] = true; - } if ($this->trackResources && $definition->isLazy() && ($class = $definition->getClass()) && class_exists($class)) { $this->addClassResource(new \ReflectionClass($class)); } diff --git a/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php b/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php index 30173f7a1827c..8d5eda9ce5fe8 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/ContainerTest.php @@ -126,7 +126,7 @@ public function testGetServiceIds() $sc = new ProjectServiceContainer(); $sc->set('foo', $obj = new \stdClass()); - $this->assertEquals(array('service_container', 'internal', 'bar', 'foo_bar', 'foo.baz', 'circular', 'throw_exception', 'throws_exception_on_service_configuration', 'foo'), $sc->getServiceIds(), '->getServiceIds() returns defined service ids by factory methods in the method map, followed by service ids defined by set()'); + $this->assertEquals(array('service_container', 'internal', 'bar', 'foo_bar', 'foo.baz', 'circular', 'throw_exception', 'throws_exception_on_service_configuration', 'internal_dependency', 'foo'), $sc->getServiceIds(), '->getServiceIds() returns defined service ids by factory methods in the method map, followed by service ids defined by set()'); } /** @@ -397,7 +397,8 @@ public function testUnsetInternalPrivateServiceIsDeprecated() public function testChangeInternalPrivateServiceIsDeprecated() { $c = new ProjectServiceContainer(); - $c->set('internal', new \stdClass()); + $c->set('internal', $internal = new \stdClass()); + $this->assertSame($c->get('internal'), $internal); } /** @@ -407,7 +408,8 @@ public function testChangeInternalPrivateServiceIsDeprecated() public function testCheckExistenceOfAnInternalPrivateServiceIsDeprecated() { $c = new ProjectServiceContainer(); - $c->has('internal'); + $c->get('internal_dependency'); + $this->assertTrue($c->has('internal')); } /** @@ -417,6 +419,7 @@ public function testCheckExistenceOfAnInternalPrivateServiceIsDeprecated() public function testRequestAnInternalSharedPrivateServiceIsDeprecated() { $c = new ProjectServiceContainer(); + $c->get('internal_dependency'); $c->get('internal'); } } @@ -435,6 +438,7 @@ class ProjectServiceContainer extends Container 'circular' => 'getCircularService', 'throw_exception' => 'getThrowExceptionService', 'throws_exception_on_service_configuration' => 'getThrowsExceptionOnServiceConfigurationService', + 'internal_dependency' => 'getInternalDependencyService', ); public function __construct() @@ -451,7 +455,7 @@ public function __construct() protected function getInternalService() { - return $this->__internal; + return $this->services['internal'] = $this->__internal; } protected function getBarService() @@ -485,6 +489,15 @@ protected function getThrowsExceptionOnServiceConfigurationService() throw new \Exception('Something was terribly wrong while trying to configure the service!'); } + + protected function getInternalDependencyService() + { + $this->services['internal_dependency'] = $instance = new \stdClass(); + + $instance->internal = isset($this->services['internal']) ? $this->services['internal'] : $this->getInternalService(); + + return $instance; + } } class LegacyProjectServiceContainer extends Container From 6f672211292d47d4b34629b8f4d7768c831e80bd Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Tue, 23 May 2017 23:58:11 +0200 Subject: [PATCH 50/67] [Routing] remove an unused routing fixture This was initially removed in #13361 and accidentally added again in #11394. --- .../Component/Routing/Tests/Fixtures/validpattern.xml | 9 --------- .../Component/Routing/Tests/Loader/XmlFileLoaderTest.php | 2 +- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/validpattern.xml b/src/Symfony/Component/Routing/Tests/Fixtures/validpattern.xml index e8d07350b7a42..dbc72e46ddd4d 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/validpattern.xml +++ b/src/Symfony/Component/Routing/Tests/Fixtures/validpattern.xml @@ -11,14 +11,5 @@ context.getMethod() == "GET" - - MyBundle:Blog:show - GET|POST|put|OpTiOnS - hTTps - \w+ - - context.getMethod() == "GET" - - diff --git a/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php b/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php index e8e24fde58698..d24ec79a79c59 100644 --- a/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php +++ b/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php @@ -70,7 +70,7 @@ public function testLoadWithImport() $routeCollection = $loader->load('validresource.xml'); $routes = $routeCollection->all(); - $this->assertCount(3, $routes, 'Two routes are loaded'); + $this->assertCount(2, $routes, 'Two routes are loaded'); $this->assertContainsOnly('Symfony\Component\Routing\Route', $routes); foreach ($routes as $route) { From c67dd3805bc383a939d34068bbc4d7e6aa653ed7 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 24 May 2017 10:41:50 +0200 Subject: [PATCH 51/67] [Yaml] Add missing deprecation annotation --- src/Symfony/Component/Yaml/Dumper.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Yaml/Dumper.php b/src/Symfony/Component/Yaml/Dumper.php index a38bce014279a..e26a65a5076d7 100644 --- a/src/Symfony/Component/Yaml/Dumper.php +++ b/src/Symfony/Component/Yaml/Dumper.php @@ -41,6 +41,8 @@ public function __construct($indentation = 4) * Sets the indentation. * * @param int $num The amount of spaces to use for indentation of nested nodes + * + * @deprecated since version 3.1, to be removed in 4.0. Pass the indentation to the constructor instead. */ public function setIndentation($num) { From 1d9b1af4a396b10bd56982a9e9e4d16604f780b2 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 24 May 2017 16:35:51 +0200 Subject: [PATCH 52/67] [DI] Check privates before aliases consistently --- src/Symfony/Component/DependencyInjection/Container.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Container.php b/src/Symfony/Component/DependencyInjection/Container.php index 119fb432a321b..2f96abca34097 100644 --- a/src/Symfony/Component/DependencyInjection/Container.php +++ b/src/Symfony/Component/DependencyInjection/Container.php @@ -256,15 +256,15 @@ public function get($id, $invalidBehavior = self::EXCEPTION_ON_INVALID_REFERENCE // this method can be called thousands of times during a request, avoid // calling strtolower() unless necessary. for ($i = 2;;) { + if (isset($this->privates[$id])) { + @trigger_error(sprintf('Requesting the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); + } if ('service_container' === $id) { return $this; } if (isset($this->aliases[$id])) { $id = $this->aliases[$id]; } - if (isset($this->privates[$id])) { - @trigger_error(sprintf('Requesting the "%s" private service is deprecated since Symfony 3.2 and won\'t be supported anymore in Symfony 4.0.', $id), E_USER_DEPRECATED); - } // Re-use shared service instance if it exists. if (isset($this->services[$id])) { From 38a768e3cc53b86ebe8a7774c54fc31c19e32ffa Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 24 May 2017 18:45:53 +0200 Subject: [PATCH 53/67] [Cache] Fix phpunit.xml.dist --- src/Symfony/Component/Cache/phpunit.xml.dist | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Cache/phpunit.xml.dist b/src/Symfony/Component/Cache/phpunit.xml.dist index 19128dcc132f8..1f409af31cf01 100644 --- a/src/Symfony/Component/Cache/phpunit.xml.dist +++ b/src/Symfony/Component/Cache/phpunit.xml.dist @@ -33,8 +33,12 @@ - Cache\IntegrationTests - Doctrine\Common\Cache + + + Cache\IntegrationTests + Doctrine\Common\Cache + + From c224ad7770552b4b98976aaac9e276b14d9e9c1f Mon Sep 17 00:00:00 2001 From: Indra Gunawan Date: Thu, 25 May 2017 00:25:35 +0700 Subject: [PATCH 54/67] [CACHE] fix README --- src/Symfony/Component/Cache/README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/Symfony/Component/Cache/README.md b/src/Symfony/Component/Cache/README.md index 604fb1d5b410c..c4ab7520f451e 100644 --- a/src/Symfony/Component/Cache/README.md +++ b/src/Symfony/Component/Cache/README.md @@ -7,3 +7,12 @@ low overhead so that caching is fastest. It ships with a few caching adapters for the most widespread and suited to caching backends. It also provides a `doctrine/cache` proxy adapter to cover more advanced caching needs and a proxy adapter for greater interoperability between PSR-6 implementations. + +Resources +--------- + + * [Documentation](https://symfony.com/doc/current/components/cache.html) + * [Contributing](https://symfony.com/doc/current/contributing/index.html) + * [Report issues](https://github.com/symfony/symfony/issues) and + [send Pull Requests](https://github.com/symfony/symfony/pulls) + in the [main Symfony repository](https://github.com/symfony/symfony) From 3e6643bd9074e9ed93e94a66e8aa0914aa58a973 Mon Sep 17 00:00:00 2001 From: adev Date: Wed, 24 May 2017 23:07:05 +0200 Subject: [PATCH 55/67] [FrameworkBundle][Console] Fix the override of a command registered by the kernel Fix #18558 --- .../FrameworkBundle/Console/Application.php | 11 +++++++++++ .../Tests/Console/ApplicationTest.php | 15 +++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php index 6e6aca6043c67..3ccb97fe39231 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Console/Application.php +++ b/src/Symfony/Bundle/FrameworkBundle/Console/Application.php @@ -13,6 +13,7 @@ use Symfony\Component\DependencyInjection\ContainerAwareInterface; use Symfony\Component\Console\Application as BaseApplication; +use Symfony\Component\Console\Command\Command; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Output\OutputInterface; @@ -120,6 +121,16 @@ public function all($namespace = null) return parent::all($namespace); } + /** + * {@inheritdoc} + */ + public function add(Command $command) + { + $this->registerCommands(); + + return parent::add($command); + } + protected function registerCommands() { if ($this->commandsRegistered) { diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Console/ApplicationTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Console/ApplicationTest.php index fc60fd3bdd71c..25511142c9b54 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Console/ApplicationTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Console/ApplicationTest.php @@ -115,6 +115,21 @@ public function testBundleCommandsHaveRightContainer() $tester->run(array('command' => 'foo')); } + public function testBundleCommandCanOverriddeAPreExistingCommandWithTheSameName() + { + $command = new Command('example'); + + $bundle = $this->createBundleMock(array($command)); + + $kernel = $this->getKernel(array($bundle)); + + $application = new Application($kernel); + $newCommand = new Command('example'); + $application->add($newCommand); + + $this->assertSame($newCommand, $application->get('example')); + } + private function getKernel(array $bundles, $useDispatcher = false) { $container = $this->getMockBuilder('Symfony\Component\DependencyInjection\ContainerInterface')->getMock(); From a8414962389538142e65f0cb682772b102576208 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Thu, 25 May 2017 11:59:16 +0200 Subject: [PATCH 56/67] [Form] Remove DateTimeToStringTransformer $parseUsingPipe option --- .../DateTimeToStringTransformer.php | 80 +------------------ .../DateTimeToStringTransformerTest.php | 16 +--- 2 files changed, 4 insertions(+), 92 deletions(-) diff --git a/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php b/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php index 56dee3502787b..daeee5cce7799 100644 --- a/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php +++ b/src/Symfony/Component/Form/Extension/Core/DataTransformer/DateTimeToStringTransformer.php @@ -40,15 +40,6 @@ class DateTimeToStringTransformer extends BaseDateTimeTransformer */ private $parseFormat; - /** - * Whether to parse by appending a pipe "|" to the parse format. - * - * This only works as of PHP 5.3.7. - * - * @var bool - */ - private $parseUsingPipe; - /** * Transforms a \DateTime instance to a string. * @@ -57,18 +48,15 @@ class DateTimeToStringTransformer extends BaseDateTimeTransformer * @param string $inputTimezone The name of the input timezone * @param string $outputTimezone The name of the output timezone * @param string $format The date format - * @param bool $parseUsingPipe Whether to parse by appending a pipe "|" to the parse format * * @throws UnexpectedTypeException if a timezone is not a string */ - public function __construct($inputTimezone = null, $outputTimezone = null, $format = 'Y-m-d H:i:s', $parseUsingPipe = true) + public function __construct($inputTimezone = null, $outputTimezone = null, $format = 'Y-m-d H:i:s') { parent::__construct($inputTimezone, $outputTimezone); $this->generateFormat = $this->parseFormat = $format; - $this->parseUsingPipe = $parseUsingPipe || null === $parseUsingPipe; - // See http://php.net/manual/en/datetime.createfromformat.php // The character "|" in the format makes sure that the parts of a date // that are *not* specified in the format are reset to the corresponding @@ -77,7 +65,7 @@ public function __construct($inputTimezone = null, $outputTimezone = null, $form // where the time corresponds to the current server time. // With "|" and "Y-m-d", "2010-02-03" becomes "2010-02-03 00:00:00", // which is at least deterministic and thus used here. - if ($this->parseUsingPipe && false === strpos($this->parseFormat, '|')) { + if (false === strpos($this->parseFormat, '|')) { $this->parseFormat .= '|'; } } @@ -147,70 +135,6 @@ public function reverseTransform($value) } try { - // On PHP versions < 5.3.7 we need to emulate the pipe operator - // and reset parts not given in the format to their equivalent - // of the UNIX base timestamp. - if (!$this->parseUsingPipe) { - list($year, $month, $day, $hour, $minute, $second) = explode('-', $dateTime->format('Y-m-d-H-i-s')); - - // Check which of the date parts are present in the pattern - preg_match( - '/('. - '(?P[djDl])|'. - '(?P[FMmn])|'. - '(?P[Yy])|'. - '(?P[ghGH])|'. - '(?Pi)|'. - '(?Ps)|'. - '(?Pz)|'. - '(?PU)|'. - '[^djDlFMmnYyghGHiszU]'. - ')*/', - $this->parseFormat, - $matches - ); - - // preg_match() does not guarantee to set all indices, so - // set them unless given - $matches = array_merge(array( - 'day' => false, - 'month' => false, - 'year' => false, - 'hour' => false, - 'minute' => false, - 'second' => false, - 'dayofyear' => false, - 'timestamp' => false, - ), $matches); - - // Reset all parts that don't exist in the format to the - // corresponding part of the UNIX base timestamp - if (!$matches['timestamp']) { - if (!$matches['dayofyear']) { - if (!$matches['day']) { - $day = 1; - } - if (!$matches['month']) { - $month = 1; - } - } - if (!$matches['year']) { - $year = 1970; - } - if (!$matches['hour']) { - $hour = 0; - } - if (!$matches['minute']) { - $minute = 0; - } - if (!$matches['second']) { - $second = 0; - } - $dateTime->setDate($year, $month, $day); - $dateTime->setTime($hour, $minute, $second); - } - } - if ($this->inputTimezone !== $this->outputTimezone) { $dateTime->setTimezone(new \DateTimeZone($this->inputTimezone)); } diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToStringTransformerTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToStringTransformerTest.php index 883634985a2f8..e2389ebf003a8 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToStringTransformerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToStringTransformerTest.php @@ -120,21 +120,9 @@ public function testTransformExpectsDateTime() /** * @dataProvider dataProvider */ - public function testReverseTransformUsingPipe($format, $input, $output) + public function testReverseTransform($format, $input, $output) { - $reverseTransformer = new DateTimeToStringTransformer('UTC', 'UTC', $format, true); - - $output = new \DateTime($output); - - $this->assertDateTimeEquals($output, $reverseTransformer->reverseTransform($input)); - } - - /** - * @dataProvider dataProvider - */ - public function testReverseTransformWithoutUsingPipe($format, $input, $output) - { - $reverseTransformer = new DateTimeToStringTransformer('UTC', 'UTC', $format, false); + $reverseTransformer = new DateTimeToStringTransformer('UTC', 'UTC', $format); $output = new \DateTime($output); From 40f60ec60daa54fc83f4210f4715a9ccafad0a96 Mon Sep 17 00:00:00 2001 From: Ryan Weaver Date: Wed, 24 May 2017 21:00:11 -0400 Subject: [PATCH 57/67] Fixing missing abstract attribute in XmlDumper Caused mis-reporting of abstract key (always no) in debug:container --- .../DependencyInjection/Dumper/XmlDumper.php | 4 ++++ .../Tests/Dumper/XmlDumperTest.php | 8 ++++++++ .../Tests/Fixtures/containers/container_abstract.php | 12 ++++++++++++ .../Tests/Fixtures/xml/services_abstract.xml | 6 ++++++ 4 files changed, 30 insertions(+) create mode 100644 src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container_abstract.php create mode 100644 src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/services_abstract.xml diff --git a/src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php index 3306c4b1a6439..c793e9aed0f3d 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/XmlDumper.php @@ -191,6 +191,10 @@ private function addService($definition, $id, \DOMElement $parent) $service->appendChild($factory); } + if ($definition->isAbstract()) { + $service->setAttribute('abstract', 'true'); + } + if ($callable = $definition->getConfigurator()) { $configurator = $this->document->createElement('configurator'); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php b/src/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php index 72ae5897204f1..687ba1efcb55f 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Dumper/XmlDumperTest.php @@ -184,4 +184,12 @@ public function testDumpInlinedServices() $this->assertEquals(file_get_contents(self::$fixturesPath.'/xml/services21.xml'), $dumper->dump()); } + + public function testDumpAbstractServices() + { + $container = include self::$fixturesPath.'/containers/container_abstract.php'; + $dumper = new XmlDumper($container); + + $this->assertEquals(file_get_contents(self::$fixturesPath.'/xml/services_abstract.xml'), $dumper->dump()); + } } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container_abstract.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container_abstract.php new file mode 100644 index 0000000000000..9622a273d3806 --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/containers/container_abstract.php @@ -0,0 +1,12 @@ +register('foo', 'Foo') + ->setAbstract(true) +; + +return $container; diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/services_abstract.xml b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/services_abstract.xml new file mode 100644 index 0000000000000..97e5ce419befc --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/services_abstract.xml @@ -0,0 +1,6 @@ + + + + + + From 56892819e35ab2417ac989f55fc6faf93c61996e Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Thu, 25 May 2017 12:05:01 +0200 Subject: [PATCH 58/67] [DI] Avoid private call to Container::has() --- .../DependencyInjection/Dumper/PhpDumper.php | 8 ++++++++ .../Tests/Dumper/PhpDumperTest.php | 18 ++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php index 28cad05b5952d..4431418d85848 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -1191,9 +1191,17 @@ private function wrapServiceConditionals($value, $code) $conditions = array(); foreach ($services as $service) { + if ($this->container->hasDefinition($service) && !$this->container->getDefinition($service)->isPublic()) { + continue; + } + $conditions[] = sprintf("\$this->has('%s')", $service); } + if (!$conditions) { + return $code; + } + // re-indent the wrapped code $code = implode("\n", array_map(function ($line) { return $line ? ' '.$line : $line; }, explode("\n", $code))); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php b/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php index c63d5ec18315c..2ad701aa6d327 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Dumper/PhpDumperTest.php @@ -15,6 +15,7 @@ use PHPUnit\Framework\TestCase; use Symfony\Component\Config\FileLocator; use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\Dumper\PhpDumper; use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; use Symfony\Component\DependencyInjection\Reference; @@ -406,4 +407,21 @@ public function testDumpContainerBuilderWithFrozenConstructorIncludingPrivateSer $this->assertStringEqualsFile(self::$fixturesPath.'/php/services_private_frozen.php', $dumper->dump()); } + + public function testPrivateWithIgnoreOnInvalidReference() + { + require_once self::$fixturesPath.'/includes/classes.php'; + + $container = new ContainerBuilder(); + $container->register('not_invalid', 'BazClass') + ->setPublic(false); + $container->register('bar', 'BarClass') + ->addMethodCall('setBaz', array(new Reference('not_invalid', ContainerInterface::IGNORE_ON_INVALID_REFERENCE))); + + $dumper = new PhpDumper($container); + eval('?>'.$dumper->dump(array('class' => 'Symfony_DI_PhpDumper_Test_Private_With_Ignore_On_Invalid_Reference'))); + + $container = new \Symfony_DI_PhpDumper_Test_Private_With_Ignore_On_Invalid_Reference(); + $this->assertInstanceOf('BazClass', $container->get('bar')->getBaz()); + } } From 25381a2809d43348ed2ad0be0d45d433238c096e Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 25 May 2017 11:59:42 +0200 Subject: [PATCH 59/67] [Filesystem] improve error handling in lock() --- .../Component/Filesystem/LockHandler.php | 9 +++-- .../Filesystem/Tests/LockHandlerTest.php | 40 +++++++++++++++++++ 2 files changed, 46 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Filesystem/LockHandler.php b/src/Symfony/Component/Filesystem/LockHandler.php index 67e6f8f522c1c..3496faae21336 100644 --- a/src/Symfony/Component/Filesystem/LockHandler.php +++ b/src/Symfony/Component/Filesystem/LockHandler.php @@ -68,8 +68,12 @@ public function lock($blocking = false) return true; } + $error = null; + // Silence error reporting - set_error_handler(function () {}); + set_error_handler(function ($errno, $msg) use (&$error) { + $error = $msg; + }); if (!$this->handle = fopen($this->file, 'r')) { if ($this->handle = fopen($this->file, 'x')) { @@ -82,8 +86,7 @@ public function lock($blocking = false) restore_error_handler(); if (!$this->handle) { - $error = error_get_last(); - throw new IOException($error['message'], 0, null, $this->file); + throw new IOException($error, 0, null, $this->file); } // On Windows, even if PHP doc says the contrary, LOCK_NB works, see diff --git a/src/Symfony/Component/Filesystem/Tests/LockHandlerTest.php b/src/Symfony/Component/Filesystem/Tests/LockHandlerTest.php index 1fc2ebc0c1e6e..0791cebc694b8 100644 --- a/src/Symfony/Component/Filesystem/Tests/LockHandlerTest.php +++ b/src/Symfony/Component/Filesystem/Tests/LockHandlerTest.php @@ -12,6 +12,8 @@ namespace Symfony\Component\Filesystem\Tests; use PHPUnit\Framework\TestCase; +use Symfony\Component\Filesystem\Exception\IOException; +use Symfony\Component\Filesystem\Filesystem; use Symfony\Component\Filesystem\LockHandler; class LockHandlerTest extends TestCase @@ -40,6 +42,44 @@ public function testConstructWhenRepositoryIsNotWriteable() new LockHandler('lock', '/'); } + public function testErrorHandlingInLockIfLockPathBecomesUnwritable() + { + // skip test on Windows; PHP can't easily set file as unreadable on Windows + if ('\\' === DIRECTORY_SEPARATOR) { + $this->markTestSkipped('This test cannot run on Windows.'); + } + + $lockPath = sys_get_temp_dir().'/'.uniqid(); + $e = null; + $wrongMessage = null; + + try { + mkdir($lockPath); + + $lockHandler = new LockHandler('lock', $lockPath); + + chmod($lockPath, 0444); + + $lockHandler->lock(); + } catch (IOException $e) { + if (false === strpos($e->getMessage(), 'Permission denied')) { + $wrongMessage = $e->getMessage(); + } else { + $this->addToAssertionCount(1); + } + } catch (\Exception $e) { + } catch (\Throwable $e) { + } + + if (is_dir($lockPath)) { + $fs = new Filesystem(); + $fs->remove($lockPath); + } + + $this->assertInstanceOf('Symfony\Component\Filesystem\Exception\IOException', $e, sprintf('Expected IOException to be thrown, got %s instead.', get_class($e))); + $this->assertNull($wrongMessage, sprintf('Expected exception message to contain "Permission denied", got "%s" instead.', $wrongMessage)); + } + public function testConstructSanitizeName() { $lock = new LockHandler(''); From eb93ac904c0cb946f6deff1b5c59647e06d0045e Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sat, 27 May 2017 11:47:24 +0200 Subject: [PATCH 60/67] [Cache] Dont use pipelining with RedisCluster --- src/Symfony/Component/Cache/Adapter/RedisAdapter.php | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php index 377212df75f0d..f84ffa5e48a2a 100644 --- a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php @@ -303,6 +303,14 @@ private function pipeline(\Closure $generator) foreach ($results as $k => list($h, $c)) { $results[$k] = $connections[$h][$c]; } + } elseif ($this->redis instanceof \RedisCluster) { + // phpredis doesn't support pipelining with RedisCluster + // see https://github.com/phpredis/phpredis/blob/develop/cluster.markdown#pipelining + $result = array(); + foreach ($generator() as $command => $args) { + $ids[] = $args[0]; + $result[] = call_user_func_array(array($this->redis, $command), $args); + } } else { $this->redis->multi(\Redis::PIPELINE); foreach ($generator() as $command => $args) { From 2861bd7b01030f6db1fce754854de98164b3527d Mon Sep 17 00:00:00 2001 From: borNfreee Date: Mon, 15 May 2017 23:51:36 +0300 Subject: [PATCH 61/67] [Console] Fixed different behaviour of key and value user inputs in multiple choice question --- .../Console/Question/ChoiceQuestion.php | 2 +- .../Tests/Helper/QuestionHelperTest.php | 31 +++++++++++++++++++ 2 files changed, 32 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Question/ChoiceQuestion.php b/src/Symfony/Component/Console/Question/ChoiceQuestion.php index e5b6ff4ad7217..71eea72ef64a0 100644 --- a/src/Symfony/Component/Console/Question/ChoiceQuestion.php +++ b/src/Symfony/Component/Console/Question/ChoiceQuestion.php @@ -135,7 +135,7 @@ private function getDefaultValidator() if ($multiselect) { // Check for a separated comma values - if (!preg_match('/^[a-zA-Z0-9_-]+(?:,[a-zA-Z0-9_-]+)*$/', $selectedChoices, $matches)) { + if (!preg_match('/^[^,]+(?:,[^,]+)*$/', $selectedChoices, $matches)) { throw new \InvalidArgumentException(sprintf($errorMessage, $selected)); } $selectedChoices = explode(',', $selectedChoices); diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index 49ba0ee06c79a..f42a5255d5587 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -273,6 +273,37 @@ public function simpleAnswerProvider() ); } + /** + * @dataProvider specialCharacterInMultipleChoice + */ + public function testSpecialCharacterChoiceFromMultipleChoiceList($providedAnswer, $expectedValue) + { + $possibleChoices = array( + '.', + 'src', + ); + + $dialog = new QuestionHelper(); + $dialog->setInputStream($this->getInputStream($providedAnswer."\n")); + $helperSet = new HelperSet(array(new FormatterHelper())); + $dialog->setHelperSet($helperSet); + + $question = new ChoiceQuestion('Please select the directory', $possibleChoices); + $question->setMaxAttempts(1); + $question->setMultiselect(true); + $answer = $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question); + + $this->assertSame($expectedValue, $answer); + } + + public function specialCharacterInMultipleChoice() + { + return array( + array('.', array('.')), + array('., src', array('.', 'src')), + ); + } + /** * @dataProvider mixedKeysChoiceListAnswerProvider */ From 01ca2417446c37c5f45995ba090fdadf5e674490 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Sat, 27 May 2017 23:29:56 +0200 Subject: [PATCH 62/67] [Console] Fix tests --- .../Component/Console/Tests/Helper/QuestionHelperTest.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index a9be2059545c9..590c8cf30e54d 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -278,14 +278,14 @@ public function testSpecialCharacterChoiceFromMultipleChoiceList($providedAnswer ); $dialog = new QuestionHelper(); - $dialog->setInputStream($this->getInputStream($providedAnswer."\n")); + $inputStream = $this->getInputStream($providedAnswer."\n"); $helperSet = new HelperSet(array(new FormatterHelper())); $dialog->setHelperSet($helperSet); $question = new ChoiceQuestion('Please select the directory', $possibleChoices); $question->setMaxAttempts(1); $question->setMultiselect(true); - $answer = $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question); + $answer = $dialog->ask($this->createStreamableInputInterfaceMock($inputStream), $this->createOutputInterface(), $question); $this->assertSame($expectedValue, $answer); } From 029f89a7ff42f98394ddcd9e5e7afc5a0837652a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Sun, 28 May 2017 12:47:43 +0200 Subject: [PATCH 63/67] typo --- src/Symfony/Component/Cache/Adapter/RedisAdapter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php index f84ffa5e48a2a..922d3d3e5150b 100644 --- a/src/Symfony/Component/Cache/Adapter/RedisAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/RedisAdapter.php @@ -306,10 +306,10 @@ private function pipeline(\Closure $generator) } elseif ($this->redis instanceof \RedisCluster) { // phpredis doesn't support pipelining with RedisCluster // see https://github.com/phpredis/phpredis/blob/develop/cluster.markdown#pipelining - $result = array(); + $results = array(); foreach ($generator() as $command => $args) { + $results[] = call_user_func_array(array($this->redis, $command), $args); $ids[] = $args[0]; - $result[] = call_user_func_array(array($this->redis, $command), $args); } } else { $this->redis->multi(\Redis::PIPELINE); From 96e307fd5c49af88ccb581efbb61cc0d0287ca3f Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Mon, 22 May 2017 10:45:15 +0200 Subject: [PATCH 64/67] [Console] ChoiceQuestion must have choices --- .../Component/Console/Question/ChoiceQuestion.php | 4 ++++ .../Console/Tests/Helper/QuestionHelperTest.php | 9 +++++++++ 2 files changed, 13 insertions(+) diff --git a/src/Symfony/Component/Console/Question/ChoiceQuestion.php b/src/Symfony/Component/Console/Question/ChoiceQuestion.php index e5b6ff4ad7217..f07ace4b161ec 100644 --- a/src/Symfony/Component/Console/Question/ChoiceQuestion.php +++ b/src/Symfony/Component/Console/Question/ChoiceQuestion.php @@ -32,6 +32,10 @@ class ChoiceQuestion extends Question */ public function __construct($question, array $choices, $default = null) { + if (!$choices) { + throw new \LogicException('Choice question must have at least 1 choice available.'); + } + parent::__construct($question, $default); $this->choices = $choices; diff --git a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php index 49ba0ee06c79a..2309965deeff8 100644 --- a/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php +++ b/src/Symfony/Component/Console/Tests/Helper/QuestionHelperTest.php @@ -434,6 +434,15 @@ public function testAskThrowsExceptionOnMissingInputWithValidator() $dialog->ask($this->createInputInterfaceMock(), $this->createOutputInterface(), $question); } + /** + * @expectedException \LogicException + * @expectedExceptionMessage Choice question must have at least 1 choice available. + */ + public function testEmptyChoices() + { + new ChoiceQuestion('Question', array(), 'irrelevant'); + } + protected function getInputStream($input) { $stream = fopen('php://memory', 'r+', false); From 43636ba6307250bed48ed86fdd3d9f42e2fbf2d4 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 29 May 2017 09:23:31 +0200 Subject: [PATCH 65/67] [Form] fix guesed value param type in docblock --- src/Symfony/Component/Form/Guess/ValueGuess.php | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Component/Form/Guess/ValueGuess.php b/src/Symfony/Component/Form/Guess/ValueGuess.php index fe40e020ccab8..9a46207eefe42 100644 --- a/src/Symfony/Component/Form/Guess/ValueGuess.php +++ b/src/Symfony/Component/Form/Guess/ValueGuess.php @@ -18,19 +18,14 @@ */ class ValueGuess extends Guess { - /** - * The guessed value. - * - * @var array - */ private $value; /** * Constructor. * - * @param string $value The guessed value - * @param int $confidence The confidence that the guessed class name - * is correct + * @param string|int|bool|null $value The guessed value + * @param int $confidence The confidence that the guessed class name + * is correct */ public function __construct($value, $confidence) { @@ -42,7 +37,7 @@ public function __construct($value, $confidence) /** * Returns the guessed value. * - * @return mixed + * @return string|int|bool|null */ public function getValue() { From 17fd48cdfe73e83b499ad82c9cb13422074d1e30 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 29 May 2017 12:31:58 -0700 Subject: [PATCH 66/67] updated CHANGELOG for 3.2.9 --- CHANGELOG-3.2.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/CHANGELOG-3.2.md b/CHANGELOG-3.2.md index c76c8add66003..de1e0fd980928 100644 --- a/CHANGELOG-3.2.md +++ b/CHANGELOG-3.2.md @@ -7,6 +7,29 @@ in 3.2 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.2.0...v3.2.1 +* 3.2.9 (2017-05-29) + + * bug #22847 [Console] ChoiceQuestion must have choices (ro0NL) + * bug #22900 [FrameworkBundle][Console] Fix the override of a command registered by the kernel (aaa2000) + * bug #22910 [Filesystem] improve error handling in lock() (xabbuh) + * bug #22924 [Cache] Dont use pipelining with RedisCluster (nicolas-grekas) + * bug #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee) + * bug #22829 [Yaml] fix colon without space deprecation (xabbuh) + * bug #22901 Fix missing abstract key in XmlDumper (weaverryan) + * bug #22912 [DI] Avoid private call to Container::has() (ro0NL) + * bug #22866 [DI] Check for privates before shared services (ro0NL) + * bug #22874 [WebProfilerBundle] Fix sub-requests display in time profiler panel (nicolas-grekas) + * bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh) + * bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz) + * bug #22715 [FrameworkBundle] remove Security deps from the require section (xabbuh) + * bug #22647 [VarDumper] Fix dumping of non-nested stubs (nicolas-grekas) + * bug #22409 [Yaml] respect inline level when dumping objects as maps (goetas, xabbuh) + * bug #22584 [Security] Avoid unnecessary route lookup for empty logout path (ro0NL) + * bug #22690 [Console] Fix errors not rethrown even if not handled by console.error listeners (chalasr) + * bug #22669 [FrameworkBundle] AbstractConfigCommand: do not try registering bundles twice (ogizanagi) + * bug #22676 [FrameworkBundle] Adding the extension XML (flug) + * bug #22652 [Workflow] Move twig extension registration to twig bundle (ogizanagi) + * 3.2.8 (2017-05-01) * bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid) From a948880ecbd2660a73bb17c7ec0e7374ffca5df9 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 29 May 2017 12:32:04 -0700 Subject: [PATCH 67/67] updated VERSION for 3.2.9 --- src/Symfony/Component/HttpKernel/Kernel.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Kernel.php b/src/Symfony/Component/HttpKernel/Kernel.php index ddfe322cc2853..af4fcaa4f30eb 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -58,12 +58,12 @@ abstract class Kernel implements KernelInterface, TerminableInterface protected $startTime; protected $loadClassCache; - const VERSION = '3.2.9-DEV'; + const VERSION = '3.2.9'; const VERSION_ID = 30209; const MAJOR_VERSION = 3; const MINOR_VERSION = 2; const RELEASE_VERSION = 9; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '07/2017'; const END_OF_LIFE = '01/2018';