From 2967807b14dbc6af8b0e8732889b8da04e1af64b Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sat, 29 Apr 2017 20:05:30 +0200 Subject: [PATCH 01/38] [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 01e3be722fbd..e04a0a601920 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 4ad63cc3b110..1472a99b244a 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 02/38] 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 bc4c0fa89d5f..1d1f0984f198 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 03/38] 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 90b929e5efcc..9fe1d4c7e9d5 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 04/38] 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 0d37a6d05e40..35f7dcccaaec 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 05/38] 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 35f7dcccaaec..1c1928825025 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 1f1b5d4f9ecdc6e5b50fe07478729ca8aa0937f0 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 1 May 2017 10:40:16 -0700 Subject: [PATCH 06/38] 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 f7bb37d37612..51417f5dcbf3 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 a537d6c11e6a768620415b5c357f145bf2031f6c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 27 Apr 2017 15:48:43 -0400 Subject: [PATCH 07/38] [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 86a943c77c42..0ec2c5a3a00e 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 08/38] [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 df78504d51a8..3b288a55f20a 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 7123daf3a642..a5badcd67af9 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 7f76eeefa7e1..9dd49f7e6c2f 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 cf259fe2e8bc..7db0d8786dd3 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 abfaa8b2d588..00d1bdb682cb 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 95e3c98b368e..767e81f24f75 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 a0cccc6e8664..26804e714d7f 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 4c3df3603c1f..75679c039d97 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 f7c67d5e727b..c5da238b68a4 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 e47d8f9610e9..8f25c0e5a2ad 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 859b6b198dd8..a273c2b4243d 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 aeea14902745..40b0848681f9 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 a70c089be71c..d1b2d1ab8b24 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 2ff2cb58c7ed..456d91cf3c16 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 7f0e91965eab..95b0df2e9920 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 a87eda05b252..8beb7ec703f9 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 83f4bb6ff49c..8772c431ee7a 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 0603c9bdf5a8..1abadab5497e 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 efe4ce0b2229..295efd14ebe2 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 ce8e0e5dd564..8b59f8eda1b0 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 a4a5c21f77b5..0234bfc20576 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 ed5a99d0d4fa..9adf2177dd95 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 502630f92f37..da37dc859ff7 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 2556405f6e97..279ca881cbee 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 a39d9d927d21..3ec80c4ce5d2 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 9acce92b2106..eeeec5e3c1fd 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 9139ec372be0..acea2745be36 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 ba210ddb2f8f..0c2bd45b574c 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 e7460ec3831a..59325953aa1d 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 86916be5d6e4..1e6a09a7e386 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 a6556312c9a5..6010b24058f0 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 0056e3e61d96..56ef08016880 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 9cc122672852..68e2567befba 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 09bbb10f6a3b..0e557ea72665 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 21339ee0c3ad..3c13aa97226a 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 2b92604232a3..b3c2c319bed2 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 383bec0dd430..a65efeb65d3d 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 aaa978c699d5..f0d85c1a9eaa 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 32edaa85a276..f551a2dd31cf 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 32edaa85a276..f551a2dd31cf 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 90005dac4ea0..e0a4f41dafb0 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 e7504e198716..36f0ae6e69a6 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 c636cfa64ebf..e93c048d7b98 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 bfd06409e566..e745ac4ce83f 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 a6f081f1d0bf..45a39b620bcf 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 79f2b161af57..e268bbaecb35 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 24863a34b623..84a46ec1bf8a 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 7600970fba5a..db54b7a89892 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 f2a61228e27f..e1534fc422d0 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 db55329e58a3..6b0d8164269e 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 f2a61228e27f..e1534fc422d0 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 f90fcb13d6e4..4e545e98c946 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 32edaa85a276..f551a2dd31cf 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 10fb31aab03d..35207b7c96eb 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 204c7daa0242..ec0114f74008 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 882f3755ce49..b9e1b291c43d 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 32edaa85a276..f551a2dd31cf 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 67841c1b1e9b..42a66bda99c2 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 9de2f541c513..e36a8c8e74e0 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 bd274821787c..f65557c22413 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 1bb59cb7d212..ee84873589ad 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 8d52977729bf..373fbdabd214 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 67841c1b1e9b..42a66bda99c2 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 67841c1b1e9b..42a66bda99c2 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 fa6d0c13b945..6a1f6160a67f 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 710f37837d40..a776544b0f24 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 f2a61228e27f..e1534fc422d0 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 32edaa85a276..f551a2dd31cf 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 eae7f2b2fb1b..281870573824 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 32edaa85a276..f551a2dd31cf 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 8cafa6504786..15bdbf7b64d7 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 19966d0715fd..15556478575a 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 cd23e7522282..f2d917681fe9 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 6f3d5afb5342..21d185eb5afd 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 32edaa85a276..f551a2dd31cf 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 97e755492204..7f302b2b85e0 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 0e9cd08c28db..fd95a116b078 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 496b75db8a32..06040fe52402 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 fd4998eacf41..ff346bdae1a3 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 ca517971a7d4..7de7db3e0672 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 f2a61228e27f..e1534fc422d0 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 b61270d84c03..be462c4175d8 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 4a64e4e1ff55..00831e2d9f29 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 f2a61228e27f..e1534fc422d0 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 db55329e58a3..6b0d8164269e 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 db55329e58a3..6b0d8164269e 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 8647b20b3e02..e7396608ae89 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 7d1a41586a0c..8e3c186f8419 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 99c4235a2d63..201cebdfdd0a 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 db55329e58a3..6b0d8164269e 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 c46230dd4a52..bc57edd383fd 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 a344e1cdfd86..d2771bb79d3d 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 3451c073556b..d8a1118405dc 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 f15c55cc918f..a22f8f6722a3 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 3145fcec6249..2214928f25cf 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 cdd3dd090279..04744532a47b 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 33502fa2172b..36f870b81c8f 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 bf7bb3768ead..734c386e2d6d 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 874938b5fd5b..9f06b8d6a991 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 1dbee9b29007..433f1d987621 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 db55329e58a3..6b0d8164269e 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 5d23a66641aa..59a09c70d6ca 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 10586b530bb4..64fea7b6bca2 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 f2a61228e27f..e1534fc422d0 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 af6a02d05c79..d78476f68c56 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 c9ad30c2ced6..db7243d7da4d 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 32edaa85a276..f551a2dd31cf 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 4a64e4e1ff55..00831e2d9f29 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 a551f913ed6f..f74a36f66a95 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 95791ea6a413..15556478575a 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 b18306f345e1..a87801139658 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 818b43ec87e6..c036a3122eaa 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 680c2b688228..7f5346037b69 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 d36c2b64feb1..e049111ee8f4 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 657c269e1b62..34d7187674ce 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 815952037514..fed2a133aa1d 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 000000000000..b228fddd8eeb --- /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 cd6c1a9dd68a..25bac0c3b75a 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 0bf0dc8b1310..399a5cf828ce 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 d5ab35788cc6..6b94c74045f8 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 0bfa8154ce48..2aa410eba455 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 a871eab0ff9f..fce925ac290b 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 b61fca480df0..6ec4e485e868 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 214a1a95e2ad..dd83bf9ed93d 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 95288e4eba56..d14b522bbe3b 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 6d244ad41bac..490f43ba0ab1 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 8c891fef6334..fff01fa78fb3 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 a498dc3b706a..66a430c937e5 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 c982a720f7cf..45dbe193b1cd 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 784c7067043d..14748ada17ec 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 c0c06e8a6a3e..e1484871ad34 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 b61fca480df0..6ec4e485e868 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 4e955dda8a95..cae8b320d4a6 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 b61fca480df0..6ec4e485e868 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 44a2947238e1..8bf94dfbd963 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 a68a3e751826..e4d2adba7dc7 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 76b744670c39..21f914112f3b 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 4b68ffc34842..5199aad54253 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 1b1bad29ff25..6260d253f957 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 65cdaee88bf3..4223aef956eb 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 64b372dee970..08ed65d1c26c 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 ae3107455f1b..af67b59ab85d 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 5bcca9826b60..fa181650fa89 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 1785988ce25f..df8b8a6c13a6 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 c7c146fd8884..9a5ffdd13ca0 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 3cb3fd594879..4aebc1323911 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 ae82859e2e9e..d5222d47ae5c 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 39801477043a..8ccd773a90b1 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 071b4a82fcbb..a3b074beadbd 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 b2c2b3289c3a..57356f768805 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 9989b8adde13..ea857694c1cf 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 658bdb8f0f66..e61ac0a6bfbf 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 2a15feebe8c2..8a5a3b53081b 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 07766e28c982..cc3ce23bc247 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 f8ce809cbe6c..27b11c70d5b4 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 9658d53518a3..989f5fc5fd21 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 0fe75282c401..ccde779b863e 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 bc36db8a9b0c..e71b0d0f4d0d 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 289e33d74ef9..39f160e3d63c 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 3010d330bda1..4dd8ce23384d 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 bc47b9562b1b..ee80ae59594b 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 4f82e936f11e..6baded7d7b2e 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 dcd413fa7f16..572b54cf2843 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 bc09e05a9333..13fa79823fff 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 51570db5c24c..6cd281775417 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 53b58a2743d9..814eae20abbe 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 224c9386cf0c..0a0604f64e8d 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 27d857091a7b..0cbb37c07ecc 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 5512ab882cfb..95a14f8d1fcb 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 507810727d10..b1cd2f1d7d10 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 e09a54b5d36c..47f4ace5de61 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 8bebcc500b06..f00bc8de4a0b 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 114ae41592c1..d96cdde587bf 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 9675026e72b8..507cdf5b59df 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 b96209e5f958..e43dbcc250e8 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 488f91f824dc..cc041904caee 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 ca40323ac209..1924a821a56b 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 d3adee83c020..0658e8cb1312 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 ff47301b346c..0fd799627f4c 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 39575432be3e..8565262ae538 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 af456c3fc41e..44a5dc165930 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 ff47301b346c..0fd799627f4c 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 bd89c39e519e..d508caa339fc 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 a5fda55f9e32..07547f98ebd3 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 114ae41592c1..d96cdde587bf 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 2fc36a74c838..8079fc9d28d1 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 4c54c0bd40fd..ff5185ea8c96 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 ac99bdc30208..c30ee2c6d4f6 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 dfd63ff8ce5c..392aed692132 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 d52d7254eb2b..b50c7c2c063d 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 1a9778b6f1e4..2efd8e0631e1 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 435d3a9ad96a..b2bcaf4d83c5 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 106809aef5a3..4f5ba3c90262 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 4d09d7e273d6..d93978851dd8 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 6b8b302942d7..e0f56f2ef2ac 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 80795b95a12b..1b0344cbd92d 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 b7e1b87d7da8..efbf806e6b42 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 5c353313e589..e9dbc189f6d1 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 506f805620ed..ed012a2e851d 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 e1c88cd5755f..b6fa542783e3 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 410c93029b8f..fd9fcc86067d 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 1218f8250db7..7018ccecaa23 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 33f5bdb022f0..55de57f6a562 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 c2e67c6ad979..4fd187f90cd6 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 492db6cdb7c9..6d4e36f0140f 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 7d6233fdc208..de5c698c6316 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 eb7dbdb3b0c7..e223352aef72 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 7276cfe7a16d..39f345dfe366 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 115ae26c9549..dd1765b4d8e5 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 3508c60cd667..66eed58281b8 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 9ef5603a4f14..26f8abf91762 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 e4888cca29b3..3f8055c107ba 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 43167291ea24..27ef127fc7ef 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 15f9dec49118..7c3d3e56b683 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 3a734f8df925..ae65ba21425d 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 86295846587b..4ce141f94c09 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 c0f77d708d0f..e811c7c72f63 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 3126b42730ee..981dc50b15cd 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 bd030b9bff83..4576deb6f986 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 4c726ec0393b..21fa88b966e6 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 181f0f263977..b1c3e571e1bf 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 0fa1277d7912..a0c53278f5c7 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 8867f13f220a..fb670110bb26 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 0fa1277d7912..a0c53278f5c7 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 929be73d0d36..374e8f87f46a 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 86295846587b..4ce141f94c09 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 73a1dd4501fd..b309246d3d0e 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 21ba3e6d4046..0a4e2bde6b4e 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 b7412c4f2f1e..02638f6d07f1 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 adb9aa797815..3df990a9e2a8 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 7fe630ad1180..948f46351eea 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 e825e3f7f4aa..7db583d5c465 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 616d4692f19a..4c529eb08062 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 3c8ccd7fa4e9..c9de32446a94 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 60bb7f06f4ce..f0ee1e318855 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 851140363ca6..59628b9ccef7 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 7c4bc51a4de9..b90f0928e65b 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 8b073d6b2350..bc3677a86347 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 f725c1758e39..22930077f844 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 42612416d5e5..46b59e0dfa81 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 0573e4575227..756583cf9cc7 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 335fe3a11b26..b8ec8cac3db2 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 439bef558dbc..f06bdee5b03f 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 84b814eb75cd..313a70bef9c1 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 bc2d907dd7ee..51f06f135b0c 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 2d1b81050412..53315a63ed3c 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 88d5ca726efa..c97a076c66e8 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 a7ea2cf6f6f8..a1d4191fca5b 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 b855540f34be..cb66bd7400e4 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 115ae26c9549..dd1765b4d8e5 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 3926cb92c34a..fcc2c67db3df 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 7a7df0ab6e27..68a7a2b20ca7 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 65b017c6825b..891d7d5080ad 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 54e54e74172e..a02f9ad4ab16 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 5d720118ef86..c717725d44be 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 2cd15cd937a5..d0defa0197f0 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 1b039aa64610..90b7f9b8eb23 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 e06f39421ce0..5d1c1eced42c 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 0852adfe7f48..bc82881d1e3b 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 4c1936561483..a9868e816f4d 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 87a460f3a147..08b31ed67136 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 60676655d206..28da55f7079d 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 2d3ba8064158..9e328721035b 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 c4acd0c16ca3..b1dc180e6ae4 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 97f0c60d983e..6ba5d7d14cea 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 360d5e155d6d..a07daca21535 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 77cd44900c3c..5348ddead2c2 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 ba1429aa0584..e4c98ff11786 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 b27b577bbe67..0a4e2bde6b4e 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 83f075c975d6..20af1b47a217 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 45a167e4209b..aeb51f388500 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 5186f98d5645..4d05621cbbcf 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 87a460f3a147..08b31ed67136 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 1b00d12e9ba0..a13537bbeea7 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 8b89a907fa31..5b27b4d61dd0 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 89e99e13b2df..3add3fc4c04d 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 5c4ab4a1d8bb..423821937904 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 fc6ee675ea84..17fc215384fe 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 efd56a650e72..54b5d567dd33 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 979a587ed500..f8f9a3bd1f89 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 f77daea527e6..1ac4693ff3a9 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 422b85c0ea8c..3578cc5f6616 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 e171cf2da4ea..29a82dce9e58 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 07084b93cc18..7e4d938ea753 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 ab0a8eeabcc6..1b54832706f7 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 764db79ba63e..0b578d6064b9 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 ae02bcc9713f..18ab1b744d25 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 b82a5ec5a368..410b322cc394 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 ae1455ac9330..9bf96fce65e6 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 7b27577f68f4..19a49211eb70 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 17d4e257df2a..207bdd647254 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 c8d41f8d3d1b..4a77c41cbba2 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 4deddb976277..71e2c6532955 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 5e5e2aea1cf8..eedceddf658d 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 7c732b614d48..8a2a641009a8 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 650b13176190..c118fd31e798 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 29c645d0c5ff..2f359e0ba971 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 6255d054b1c9..1dcf85530662 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 0a7177cfa047..6492e1830d3e 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 cb70f59e4a8b..3e7cf35dd1b1 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 8d1392dd36e5..729ddeec1cff 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 b5e8f8743dc5..1e66f0f7b68b 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 b6e2805fea55..55d26cdcdbe5 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 a30758e677cf..820cc3d79ed5 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 13dfe0172797..444cb328cdc3 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 8d1392dd36e5..729ddeec1cff 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 2beaf4c3959d..74e891449719 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 2beaf4c3959d..74e891449719 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 a30758e677cf..820cc3d79ed5 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 607fb136be4f..d521c949d4b1 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 086768c60a3e..8d2db7788da0 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 9f6d5ce2b9ec..ad106f6edf9b 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 24dccaaee920..98b17340c705 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 0dee4ffea827..74979c6bc01a 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 6ce492dc16f8..82d056592505 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 11e849cac829..02f4cb622add 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 c683ab735cc4..5bf94a92a107 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 ec884a5b4730..1e41e0a97cc7 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 d151c8b84af6..0b4ebd84d4fc 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 d1c274640d46..0eefc58d0b48 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 7666d419ca93..1f1e3ee1435f 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 54da08cb8728..d428d2b07d3a 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 c696388371ee..8ede2e444b70 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 8acbc3a9c0d2..bf37c5d77524 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 1a2cc3e31115..1ff59d3471dc 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 eae5e9b57c24..cbf78ad53bf0 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 84c5a55fb7c0..bab1ad52bff0 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 639a5fecde44..bc6ef1131157 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 170e9ce1ed48..bdd5dff1ac29 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 2d5c92e70acf..fe141b6a42bc 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 865d2c4ea66e..ddbdc6a41731 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 dd6a35f6c55d..499aa9441faa 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 b68fbb5c8391..acab563f3eb3 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 aa161584b86c..a6503c98ee91 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 d030ca22bf53..2660636429c5 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 03a8f7d17c66..1e098c3129ca 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 a3556e398ed0..831515c7f7c8 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 062eb0bcc8bb..3da27050ccab 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 0ea5c2aef194..0eb258e3074a 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 c901b192dafd..cfe59ef2ad27 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 aa3d7e1447a4..a1a7c9602a08 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 abb1d892c18f..d069c91fa766 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 a7b137689fbc..f5b99c2f5585 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 f5e58a7d5a28..46b80d548bc7 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 e2a40b0c76a6..4fa11f1a0db2 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 cceb705e89ac..26f9871d1fa8 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 9ca4cea58a3f..6919c3450b0b 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 6ac93d2912d0..8f00375ce4f4 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 e64f710c96bf..aea2a7455472 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 0e0d965f5a28..197517b58b72 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 12e6a0ef526a..90879567d13a 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 0e0d965f5a28..197517b58b72 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 12e6a0ef526a..90879567d13a 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 e9ff9dbc3b5b..84a573c1d4e5 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 0e0d965f5a28..197517b58b72 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 925b616e27d2..e43ed11f4f5a 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 b9c9486b65a1..bddcaedd084c 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 0446ec74d6b5..4d5ad095d8d1 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 505dd2bf9804..29fe330c6945 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 605f829c246d..ba748b4b041f 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 cf39b44c81c6..14469b1a29d2 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 af84846b1457..96ce2d693d97 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 9d0f184f88fd..0223e947712c 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 6ec770c4b71f..63733eab3cf7 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 6d987ac30068..958c71ced3df 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 7a98f48b07ba..5d3416b877b6 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 e13ecce5a103..9633fb2570e6 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 221745625d8a..b18170b0510f 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 b12ad19274d5..680d09d47678 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 047eff3c5f59..ab0e42e7a538 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 17ce96e8a143..4cc442655915 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 d273e28e43fc..b03613b0eb17 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 1728e5c58413..9ab48c09ba3a 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 66cfacc7b06a..471c68fa514e 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 9ba864904de1..52f0bac67277 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 4ef69f857ad5..71f83b09bc3b 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 74317019b49e..73bf0d5b7127 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 b89bb266cb97..6217545392fa 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 e289c0af4488..361985033eaa 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 7cf0a6fbfecb..a24fbf9ac664 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 2d50558f6009..729aecf425d5 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 e289c0af4488..361985033eaa 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 14b2714c91da..b6e9135b16f7 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 095e153b5676..0f6e9202f458 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 66cfacc7b06a..471c68fa514e 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 95a2ff27d36b..473b3cf86c02 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 6c83bebe2fba..e86244f61bcc 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 ea54607c124c..3f5d74cf7d1c 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 6bab52fe5b4c..8f04a1b389e4 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 bfc65cc58708..b566d648bab7 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 6a111324f7fa..d028f580d549 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 6ef0288f70e4..e123c78e706d 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 1a884d7b2d1a..6d03a8fb02a2 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 63a8efc8a0ab..0fb9d6c62b53 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 8609e7b909fc..5a21f76f3250 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 088335056d85..3ceebcde0dae 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 c4d69e05f533..c2921f1ad907 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 a2eaa292549a..4a151629706b 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 fa76aafb4dcd..ea76e41087e1 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 2f0459324467..7cc478c468c6 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 0f65d5c533c7..7843c7ddac48 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 e79b5d76b132..dc6bca17821b 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 2b164efa5d34..95a9d133e8af 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 3cba1f2dbda6..5fa96ae47fd2 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 0b7544c733a5..5ec922ef5f8d 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 09907f9fc8ac..7d1cd8032d63 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 4ee9b6b7f4b3..57d5e250c357 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 f7ce200ffe2a..75e86f0eb444 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 0d4636b584dc..5e9e66fe04b7 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 56a003c30b77..211568c3a316 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 f0f98a73de80..9a591b35503b 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 6cc083869283..121778ad2cc7 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 cfa1930542ce..ba92b5951729 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 c634ee84e37d..a35dcc3f705e 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 0231de649a3c..bd952b48c1dc 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 2ebb04a5f6d3..87f567ca6c1e 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 742830f83b0a..2fc0c86130cb 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 d33c2de1d4f6..3cf8d939144f 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 c634ee84e37d..a35dcc3f705e 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 a2e7bea5d434..a3e99b7071fc 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 8ce434f750a2..ae839e43f3f7 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 a3332c1dcecc..aad819e42036 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 516095e57d50..c404ba0dfb6e 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 1d8593b3c9df..ae9815ff7e5c 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 82fc08f1402f..2b28c0546295 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 08197bb78a89..d45cf6ddea55 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 cb35e181ce76..8d83a8794aa2 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 352d0f52dcff..de8bcfee0c97 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 17b384463b8a..5ef4d43ea09c 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 19e8366bab68..cf112488801e 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 dbed02f9660a..268f8fae3813 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 2bd979f0aec1..73c9bd7b6cf0 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 0d4636b584dc..5e9e66fe04b7 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 d4d64076a0db..c36ad831b4f3 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 2c6d75d06d04..6b0b3fa0dcc7 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 3b475b85413a..c68daf92ac58 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 6cd2a41f577f..cd498de8aebb 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 a003e9c89b28..746e275c9620 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 7ee03cd9195f..bea1b28b6d0e 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 825f2b84340b..394d47783c42 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 d533dbac3c5b..b093295e4d9e 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 928b241c0e3f..0f11fbeb50fd 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 e056e3154187..014888e52d4e 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 f22310e3b129..656d3d1312e5 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 2649b046a0f0..c5166f963a4d 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 3f938b335d63..261a8f6be269 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 764d853d5c82..ffd906d11ab1 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 8949e45179a2..6f3416b15afd 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 8949e45179a2..6f3416b15afd 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 5519983d021a..c4883442ed0f 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 62cc878970c7..f34685057f83 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 7ee03cd9195f..bea1b28b6d0e 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 825f2b84340b..394d47783c42 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 d31b2eed5705..da8f6ebd4c70 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 27a8d96517ae..c4bab0605dd8 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 d31b2eed5705..da8f6ebd4c70 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 62cc878970c7..f34685057f83 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 87961720fa66..34d9a36ec2d2 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 8eab93efde8d..67aa9a3dfd83 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 1eed0dc1f65b..65bcc190ce6b 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 e11d34e5d107..359bace3ef78 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 3a4912794a5c..8975ae912c8d 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 f2879d29f23d..3e428d2f596b 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 2b6f7ff027bc..b72e22a7843a 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 605f51115261..4167755d166a 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 a731b83f19c0..952822520b3c 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 fb616654e5b2..4a47eb80f502 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 6f25aee68339..4cd9e92e3964 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 27c4d3dfd863..90cbaf05068e 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 2fe131390129..736c3f10cbdf 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 25f6fe6dc1d6..2733f4f966c6 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 13c5a59f451d..d04f1a79aa33 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 4eca2e13cff8..22c95d160ba6 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 ae94c1b105ba..dded4b3eba58 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 5cdb32c2314c..bf91ecabc366 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 d8e7999a5b35..e6f44f99ef2f 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 a00caa7d30aa..4606db303bde 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 5d6ceb561d89..24122929c5c7 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 56764681b200..95d5e1f6408b 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 60eaa605654a..ab5b6bcd5308 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 5c3c12bbf8d6..b5d13c0b7ca7 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 d8074a1c5f82..11039290dcac 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 de0da4fe85a8..c675d365d6fc 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 d8074a1c5f82..11039290dcac 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 3099d5f142d9..758eba6aa271 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 770073ca4b41..062f26c9ed51 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 17b3e131f94b..432958bb45f3 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 08f00de6f682..cf6748575d05 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 7776b8c547f1..a3abce9de408 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 7545e126790e..31113ff44073 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 f66cd23b3666..2519e5de3fd4 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 547b830d5356..fdb7430596e8 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 77d00aac3428..c5ad75a2418a 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 259198f81bdd..d96acf051290 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 9f5fdd4e739a..c7575e8be7d7 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 a6acea20c266..6f27c171101f 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 e51d94b7a608..d4b8fc85f530 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 1f6527bc197a..a240fe77bda5 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 48c89ac262b9..28f4fa80a5d4 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 dcaf490a4f52..19cf5626ce6b 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 e067c33130ee..e67b6d54a602 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 aee2d0676e70..5970c5932d92 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 67056cbbf028..93feab6ff7f7 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 6c7f54faff7a..621bd8a0d1f4 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 9c83d9f1616f..8a4fe9f95bb4 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 4e9f33720903..9c54da8b92d8 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 7beb36ed99b2..a250bb11606a 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 61e91a432108..514021253b41 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 5b5e1acc481a..04930bd31ce6 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 fd1adb88417d..49f4e5524f22 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 7d691b6fa00f..aaccbce6dbbf 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 595e47951367..b563146fe545 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 13cf37b569c9..f6c61e1b3659 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 3895deed89f8..d0018552a42d 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 f9a1507ce128..3fa5ac5985aa 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 4f78e3d7a90a..2d604a3a50bb 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 bf30d9e83239..f95422128999 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 9dd7d0134998..3fa02ed00140 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 34d27e38979c..5d3e85cb62ca 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 9bec67e25c39..0ee0bdd79bf4 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 a550977b21d5..f413a576a135 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 4b77e05a2e01..df571960843e 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 5bc41ff9adee..74261fb29818 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 bd4a500d031a..7a1166b6c178 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 4b3378057e74..88549916c7a3 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 e867e3a4a727..ebb41db80a1f 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 c6bd20be0925..a7989ec70580 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 9c4ea9d73466..59efe39e252d 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 b6eb047cf9c3..af6b40929d9b 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 8466eae792d2..d42b5e162071 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 363a022b42ce..91c1ea0e0876 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 222290aeec12..e258b38afeb6 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 983f189d65b8..eac3b51d1229 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 ba15c614186f..51aa1024c6d5 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 782db63adb4d..bdf8a66e81dc 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 2fee439dd1dd..414eed372a1a 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 5f4ccec6b841..9bcb6b3034b1 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 31a157289876..7b1a18d1d8e0 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 4bd1a6281c88..1f47360551a8 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 ea526c0488a6..b1898f7fe767 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 cd1f45a69f26..f898c93a27ae 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 a2ae156d8c74..b88c66c4fd93 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 3a949952a8e8..129cd06e473f 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 87ecc9da436f..caba3f0c06d7 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 0270b6b88f6e..97f7da07c2f8 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 50131c413f65..b2d57369ad82 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 d254752429d1..349020a01926 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 2551c1d61a33..2afd8516d9b4 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 35d1907a26e6..41c468a11921 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 ee24b32fc8f2..f76e2d4270f6 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 a6e5d6451201..278f9ee58a36 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 1fb0e03b5b52..8919fcaac6de 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 6e4b6520eaff..8301b3d484c4 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 16347aca4472..cc9ce540aa5c 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 96f54794c525..b05158719415 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 7f44d89d94b0..4c3649ebe6e3 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 77cff282f7f3..c369633d9966 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 27ffcc923676..9121dc3c58c7 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 7ecf289d73fc..eea9468d335b 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 e0860f0c2ce4..26dc97248755 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 84a66be45c82..a1d1015c0de4 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 17d9dee7c959..7fcfc6f38256 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 db33ea272963..f5761260515f 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 dac32932b2b4..73f1b75a35a7 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 7ffa0ec2d1b0..e4e55cba076d 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 2b2772ce5561..20261e9cbe1f 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 6a10998045e0..f1993fe1f609 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 614de530d23d..2280534bfd88 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 2f842405ac88..389fe9c9b8a9 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 fe43fc3866d8..5da97bee5c99 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 237276307167..46ab31482687 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 36c7a4de543e..0b2b796827f3 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 4647d0bcba81..cb678264cfb6 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 3d1d1d6e85d0..cb6901b1c979 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 8cdb24318ff1..3a882255a246 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 75af02d31792..7493c1e2d1e4 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 f5355db29528..8f8ac53a453a 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 1be618e2a8cd..1d7d36585202 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 f541e1ca111f..8a0f2f5995f3 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 e7054787755f..0bf259705f4c 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 a5f6cce48c32..443a82537f2e 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 e5bb38c65f9d..a97cc6118559 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 03e19b6fea1c..7dabf849a8b0 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 52afa89d495f..077a96006b07 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 e8d173ace49d..a74911d44aec 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 da22f5c52d38..80f2d2d21b74 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 2538f8d0ebb3..4593d101c78c 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 2361d83719f7..d30c06bc9102 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 b70fa9427dba..8219f6247fe6 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 41c8248f6f93..7f7baf1da475 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 fee54b353b35..077f21849780 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 b4a58fb17d33..ecc40ad75678 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 7ea75655321c..4ef836ad0ff1 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 7bca83877a3b..8ec15c077c1c 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 ec1cf7e30e2b..a80a105f006c 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 3cf806d91b3d..1dcabef33dda 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 ca7ae1a41547..8cea4809fe80 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 9288ebc9eff2..a22de213024a 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 2742722ced17..691311c878f4 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 7ca92c053be0..391f2ea3ec25 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 c3623967750e..beab6c7ad678 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 72b339e377f7..115c0c7000dc 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 d6c536706364..65e4ee519b44 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 1ed3b2a89a92..1980f475912a 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 087aa8e454f2..0cd6a08ef38a 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 6f678699f8c8..a9a60ec7db14 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 b98f76dac1ca..6ca29a02a17a 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 9caf578d2f51..d68c96c4d82f 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 9c03a5308034..e49e783887b5 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 408966462866..a26e92599707 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 4db155af0955..4047de4711f6 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 2cafd246dbc9..1ffa3701279c 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 44fcf646b636..67b96dfb74b0 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 664f519445a9..afd862110d3e 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 bc0a90ce3f16..3e1bdb55664e 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 147988e602ae..7bc82295c27b 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 f704c5c0d00c..efc678e79e9b 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 d2a4e7b1edf3..1e75344f33b7 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 628f124b4f14..32ba725064fa 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 9d267224b79f..5dde47f5d47f 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 50d1f34b41b8..727605329c41 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 f1cb07038495..f275ba72590f 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 afcb2732c8d3..58658659866c 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 737067e32c4c..b6bd6d4d1a78 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 dc718c0f026e..950fc637411e 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 331ba5a7112a..e8410de19a1b 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 ad760aa13d24..0a650e172bd9 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 9f5f0e793b53..e31f92122edd 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 84cc5bd0c2bb..78311bbb50db 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 05af2671f9e0..ba4238b5b12c 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 7b303bfb2941..3de129178493 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 b3cd323075f6..9b8c215540c4 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 28917397892a..8022a3245262 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 13d080581d58..e66378021826 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 233c28eeeae5..e0f0243852a8 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 d236097f5679..5cb2d6e0a50e 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 27fb03a5c3ee..6844e238ea1e 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 e37b80568379..d50b6873a58b 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 17716fdebb6f..b93165bfc735 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 b823decfa619..d8b05a140c10 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 17716fdebb6f..b93165bfc735 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 b823decfa619..d8b05a140c10 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 b823decfa619..43b45c77fd30 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 17716fdebb6f..b93165bfc735 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 c9405001ef8e..51d5e858faf7 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 739bba8b49e7..41471bdda76a 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 bc712c331922..9d64e201b79a 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 adec06492da0..d12d3fed714d 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 04b8bf09f4e7..529d16dcecb0 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 f4ab82a42356..cdb560563dd3 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 d9dffbbc8c96..cf7f34dd2952 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 3e65a57c2916..d2902597b781 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 d7c69ca809fb..f0587d829033 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 31e831e14c1c..cf004b0e66ed 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 bd62e890aced..ae18163a1e58 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 e4beb7f6e25d..8f50f007ad27 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 11d700122263..ca1a0d11c893 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 56af5ed6a885..cf617ce75006 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 e1d8cee967d6..955728d82ced 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 c52e8a07efa0..112150a842b3 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 57a29038e78e..a709be13efa7 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 5828bb31adf8..1655ba93a865 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 7c25e6d16397..416600d4513b 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 6df243b748ba..96c854bf1954 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 2f0636416519..fd2f36ea1b3e 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 f7615061705d..7a0d1705823c 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 4d54933cc8cd..163a78029058 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 1c8d76a7bc78..2f4b031ab94d 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 cc409962c882..be6a66e82c2f 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 4d54933cc8cd..163a78029058 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 5970e4afa4c7..499a364c856c 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 f4e71a8fe8f7..006aba5fdc03 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 5828bb31adf8..1655ba93a865 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 7798d20a7aa1..4ea4e0610322 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 cc02581eb9a1..346b65ff5c4a 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 5d9ac740df73..0fb79a2809f0 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 28a3bd8292e1..5de8337e4b80 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 5cba91fbb5c7..73588fba5c45 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 b1560f1e42fd..e0798a66e710 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 9e48a1069422..9ea647dd44da 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 98cf3380c936..3da118946eea 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 c9188ad4667b..a9004cd204e3 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 77daec5ec9f4..14cd09307bee 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 27581e9038ce..152644b9807c 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 5b39903957d9..0b0469119ac0 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 806242bae710..3187f8e6058b 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 b5035b952ac3..3afaf3185a7f 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 0328c1a2d4d0..e4ba796e1cdf 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 421abaad9a41..42bcd1461743 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 7db358bc8a15..192127319462 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 5bde5828347c..efde08d27edd 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 b64c7098ba87..36732db994b4 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 c95ca7761ca6..fc85492bde76 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 a8359f8ae894..b06d69ded3ed 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 b7761a7e8f3c..3cb49d515893 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 8ba622b60984..4fd365af0649 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 a8dc1f396e07..2428256cd459 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 785e0274a945..c338a7619bde 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 acd7202fdea9..0071ebd6ad57 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 e21e619ea0c4..c919b375de22 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 0835be6c9a41..856198de52e5 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 ca1aa7110c08..b07d2f36b43a 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 f9659eec79d6..606d66603d32 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 ba86ab853d86..f051dc3ea864 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 aacf3d7f3892..8cf9dc181d37 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 8d22f961f43f..9e376b22ddac 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 1df91ca99f5b..2979820e10be 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 f9659eec79d6..606d66603d32 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 90892d434b8b..87f0928999dd 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 e0caf934f651..bd78b24389ab 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 c0166cde5571..0da5a22c517d 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 de3bb0247073..aab26e977c84 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 ab65e07277c9..97e23dd3bff9 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 97bef7e83c5d..2f115a28b4c3 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 ec8481b1ad7b..7b06b7e76a96 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 0da2b90f9b6d..2a3a0f90e506 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 c96cb8a96d01..5bb5494a059c 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 f11d5c788a11..1b740ad58ff5 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 f0cc0394ab60..54c312b31aa0 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 9161777b1e0e..a6197ed95fcc 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 705835b6798f..238c88d1c539 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 785e0274a945..c338a7619bde 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 9a1887d3c9ae..1703a4013e23 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 c0944266b800..48d88c016ae9 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 35bd099adcd4..5bab5f06287f 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 b3c4724d83c2..7f25dac5822f 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 7d772dc329e9..444ae97f7239 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 61caf0760364..6c46a0a17d41 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 cbc505d7c285..32fcabae9eef 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 863ccb3fba72..7b60d6cf3cbd 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 ddef8a324193..35acde0a159d 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 e82d70fdc995..31b984943496 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 d44225192cbc..fb61815c026c 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 81bb30b4126b..02cd0e92e5a8 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 2afc55359082..d1d3d64da8e9 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 197f931977dd..974d52c067d4 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 ac4549f2c05b..e16e15dfab18 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 a10204fcc17e..8bbdaf957190 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 a10204fcc17e..8bbdaf957190 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 1814bb1de2c0..55e529e4e784 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 f82c4cbdc146..5f2baef3cf94 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 cbc505d7c285..32fcabae9eef 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 863ccb3fba72..7b60d6cf3cbd 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 5cd9000dcb82..4adc5e5234bc 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 86b50ad59795..9776570f402c 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 5cd9000dcb82..4adc5e5234bc 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 f82c4cbdc146..5f2baef3cf94 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 9cd8171d2c86..0042a1c566c7 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 b870b482c027..21b6ec49afba 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 ffa7d58f3da3..94ca4a02416b 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 f071e13c9310..701d0e511986 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 a20b24e2fcc6..2e6252510fde 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 d434ddf66127..3774b364a5d8 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 7cb79d72e53b..6392b6d54880 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 e5243881fea4..9286283d66cb 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 1fc7c721ec6b..d8b68c8dab5b 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 229ca98cd362..e9d223f6dd9b 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 6e8c397f7b34..45416daf361a 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 75242a56e3cc..6f627824372d 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 14b3cbf5a81a..340de7135804 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 def922cab70b..f4c90f595fca 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 089d74c1391c..e113cca98667 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 939c7559362f..396b0e6ea7a3 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 976b4b0979cf..c59c342ae63f 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 51c3601bf54f..d76ee7117be2 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 c7ffdae7baa1..03b629b38713 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 5a41bee8b949..e6171f3b500f 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 afb98110103c..730d6ca92091 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 2c0413f9157a..1c0afd2c539a 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 f974b60a5d87..412a6fc2879c 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 3701d28f95dc..025c857595af 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 f974b60a5d87..412a6fc2879c 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 f6cb4eb52a19..737a09ccd232 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 eb4e00179512..772e86c6c7ab 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 80fce8ad73fe..a7e8cbb44567 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 38fa92d5900a..4504de0e3a34 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 7fc0ba890057..2ca6d2add340 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 a1a07f3feb67..d1d145763adb 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 44cabfd94b72..9389476cf6d0 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 909350ca9d0e..279bc9808c7b 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 96150e0bd8f6..2749944c4097 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 1fd69788590f..b5e093656d04 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 b4473d5355f7..487d69f5ca8f 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 47923ad2009f..0e23d656547e 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 3df4d60319e0..83e6aeea5399 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 a55a40c7a2c0..2d3883e30f59 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 da2ff45d56bd..58b2ab09faad 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 000a5b95246b..5f4b55e2885c 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 e1417452aed1..8f1e57c27883 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 e171b8547ebe..b8525436a0d3 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 8198921dca55..3e5cb062dbd6 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 02817c0b1d14..2bfeebb1ead0 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 b058623eff63..5f1111bed19f 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 2c9ab7c9a8c9..cab3bcf4302f 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 cb27c79e4785..d573583b667a 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 829edf793b0e..a9930e8e0a62 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 0f07ea1a596c..7712a994b70b 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 f0a4b5a2767e..ce27c67bacbc 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 00f18e9b47b4..d5476e969a08 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 d5c594996d95..7b448fb9ef1c 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 b626923f5c6d..ff2c3cda3135 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 8642a3c87cba..abd603f4cc62 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 12ba1167755c..a2b6a002f685 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 10a98854399f..b01080d8db53 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 e4db30bb4da5..35915f0f88df 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 b37629052b4e..9bba681b19f2 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 4d06a9167447..b4b78f5766b2 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 79f792e8fd89..516ae8991ccc 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 5f5f72116c13..ed6c6342724b 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 79c8c7599b1b..3e2c1f4c39d8 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 3c3c25bf11aa..3c3b92daf068 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 531eb4698414..8469f3721b43 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 9e36ec999627..4e4d7265b430 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 1fe2f99e47d5..9a68a9e515a5 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 c8a890b5af43..8eda66bf9542 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 44ebb4c8d1c1..9f4a0ac673d1 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 5a9747c6d495..48f90b14e845 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 9c9d23d48440..e488bee546f0 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 722e9fba3cfa..d778e1dd4dba 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 2ff71519a3ff..ae39bb9f582f 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 722e9fba3cfa..d778e1dd4dba 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 f9b6fc54784f..c80f7c45d3aa 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 dc066444d0c4..592daea87856 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 1fe2f99e47d5..9a68a9e515a5 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 4214590c7331..bbc78df697fa 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 0069647a70be..f8c62b1cfbff 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 7d6a8a83f871..c0c630666707 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 b129077305a3..d389b3c29901 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 c3e69b1401ef..967c0589079a 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 501e3fea8229..0e8ed291c442 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 92997f3effa5..f4f7beefca39 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 8196a271c82b..aef62a9a8e5f 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 8f761b014301..b2b003022a38 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 e8f49db41295..c788e8342592 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 02b0b2477a16..541939a7829a 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 bece1e64abdc..ae6a6165569f 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 c984647a8d61..86d7167f87f3 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 90f45cfcec9b..b30f9fd5efff 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 159790dc1a1a..38353d153735 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 7a51c2ffd89a..76071ef14363 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 9dc891202974..c3f8d01d45ae 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 a7160b2e63a2..7bb622ff7ef0 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 4465dc33b118..f2b0a99a766c 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 b8041cba3d19..7721f0ca69fa 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 dc5c481e713a..f5b7d7e63bc4 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 48d6b3383417..c83e8a0080b2 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 fd1379aa13fa..6bd2efa43ab7 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 fdd26ee95ba3..f224b033d1db 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 dc5c481e713a..f5b7d7e63bc4 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 5a57b6c376f1..bfe18400fc76 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 a9efa7342a5a..76750c38c104 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 9e95e6e60bcb..9042e75829fa 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 ea2efe2da187..39cce6a6f139 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 75fa968e2d8f..92237304f719 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 05f22febd9f9..ab85b9d144aa 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 670362e0e2c2..89eb295efc37 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 9f5ec2b7c05b..26547c948a6b 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 e51e9e02a103..0897b12fcac9 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 1847a44c43d5..9d88aa14dcb7 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 5927d3a67818..9c3856a86740 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 0058c1ab7bfa..0ee324ac9f2f 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 8b4e1a140315..92d943692bd0 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 4e23ee7e49c7..6c436258a024 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 a4aeecaeaf0f..f79cd2a19262 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 5364ad7d1be3..3d36cb310213 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 e8639cbe2ac8..6dd4de3bd86c 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 eb8664fd4477..fd5cd56ca043 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 7ea667e8cb93..c8634fbb6813 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 51f34cf730bf..1e45c84e7fa3 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 fae62efcd8a3..d4f7ba0abaea 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 a4aeecaeaf0f..f79cd2a19262 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 88aaa6d9b761..5271e5809161 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 7c4f5c1f9c4b..e8c9d16f7a0a 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 527c38a31f2a..e043d3461a65 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 050cec11cfe6..5835c05f4522 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 ddce6a378bbf..f403adef3d6c 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 a0acc4e0978e..a4a4c9232826 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 3015fb14ebc9..e0d380df03d1 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 efae34c51218..842627b954a1 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 cf0a74b87508..bdb93e1b02c3 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 5f4c86d7b4d8..88e35132458b 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 aa08cb1c5cff..87f08422afd6 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 899f7cf66274..37474e315594 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 e120d19590e2..10e3655ef2ad 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 bf7fb812f7a6..52b0a001aeb3 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 356577fa2dda..48ce7be15174 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 edf646ad4fff..d73efce88ae6 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 3821f37d0df8..9201b2cba59c 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 399e228bf30d..089ae784fbf7 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 0e66fedac63b..ddc22d1a4ff4 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 dec44172b36c..5c8ea8c6c19a 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 0e66fedac63b..ddc22d1a4ff4 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 b104992cdb60..d92e134a3938 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 466469b0a9a2..c4961e2075e9 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 5132e635a5f8..2246a13a3daf 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 09/38] [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 62e33e2ea579..7781220a97fe 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 10/38] 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 ab2395cd001c..b7bdfac4155e 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 11/38] [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 ab0f52e55ae9..2ffba30e1348 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 219bce99165f0118d30226561a6329ed2be5043e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Sun, 7 May 2017 09:03:57 -0700 Subject: [PATCH 12/38] 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 56ea6c1ed23d..191afb8cddc1 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 f15771172ef1..0fede650233e 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 13/38] [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 de910517c8d2..09d22fcb5fd3 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 14/38] 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 414b6d541f1f..9f36c8d714d7 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 5a7cd354763d..1dcc5536c19b 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 0fe89f7ecaec..e5fc36f63dc3 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 fc0dee140b04..47f9e43294ba 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 fa3fc3ef8d8c..77e24ee5c7b8 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 3e71ed78a423..7387e0e47d73 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 e034aeb28a74..a1112b92a7d0 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 bbbfe6453e4b..0716eef2063d 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 60e36f29904f..5bf05d1a04fe 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 cdb98ebb83e7..deb6366a5970 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 f8c51f30ecd1..535d5f3f96fd 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 040edfec4a1b32b5cc5198bd4e4e8110697865ea Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Mon, 8 May 2017 10:50:08 +0200 Subject: [PATCH 15/38] [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 6afe16a8d2da..4e729298c152 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 16/38] [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 1392c81a59f9..a45cb3a27860 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 17/38] [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 9ed3b0807d97..ad1560ad179e 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 18/38] [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 270a6e352f69..673161c17938 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 19/38] 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 673161c17938..7d2c51298fc6 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 5a64c9f16454..a955ee44c9fb 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 5d3d1b25e076567420248ee69b2144b8ad4ed2ff Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 3 May 2017 18:59:05 +0100 Subject: [PATCH 20/38] [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 7d262fe644b0..1562071edfd1 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 65d22dbe39b7..5170bb788eb8 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 30cb5093c454..806c6275e83d 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 88cc55e9be8c..ee8b5c9447ed 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 1754a08438db..45f8ee540456 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 3d6d80d843842851f4758faacb86039573c42a5d Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Thu, 18 May 2017 11:06:54 +0200 Subject: [PATCH 21/38] 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 6bff3723d9d2..56c02685f63d 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 22/38] 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 d35bbdeb69e2..cb9b8a69c163 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 e33ea4d8764d..42cdc02bae49 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 0ec2c5a3a00e..6c7e5e1d846a 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 f23161c10b07..128b9b52f505 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 23/38] [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 ee8b5c9447ed..43001a74fc6c 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 24/38] typo --- appveyor.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appveyor.yml b/appveyor.yml index 6c7e5e1d846a..ae43082f82fd 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 25/38] [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 2e3c02621773..051d253cf27a 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 f7d1a064c6abddb5d410206bf9a4bdef5a4fe320 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Sun, 21 May 2017 10:33:50 +0200 Subject: [PATCH 26/38] 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 04abda4b9fa5..66b8762cff4e 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 27/38] update phpunit-bridge cache-id --- phpunit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit b/phpunit index 466f8fbbc235..559660b1df25 100755 --- a/phpunit +++ b/phpunit @@ -1,7 +1,7 @@ #!/usr/bin/env php Date: Sun, 21 May 2017 07:18:42 -0700 Subject: [PATCH 28/38] 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 fe527efeccc1..0914d26ec608 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 49d6604ee4bd89a5d63b370151536722cf70392c Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 22 May 2017 13:36:46 +0200 Subject: [PATCH 29/38] 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 3e6643bd9074e9ed93e94a66e8aa0914aa58a973 Mon Sep 17 00:00:00 2001 From: adev Date: Wed, 24 May 2017 23:07:05 +0200 Subject: [PATCH 30/38] [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 6e6aca6043c6..3ccb97fe3923 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 fc60fd3bdd71..25511142c9b5 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 31/38] [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 56dee3502787..daeee5cce779 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 883634985a2f..e2389ebf003a 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 32/38] 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 3306c4b1a643..c793e9aed0f3 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 72ae5897204f..687ba1efcb55 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 000000000000..9622a273d380 --- /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 000000000000..97e5ce419bef --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/xml/services_abstract.xml @@ -0,0 +1,6 @@ + + + + + + From 25381a2809d43348ed2ad0be0d45d433238c096e Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 25 May 2017 11:59:42 +0200 Subject: [PATCH 33/38] [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 67e6f8f522c1..3496faae2133 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 1fc2ebc0c1e6..0791cebc694b 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 2861bd7b01030f6db1fce754854de98164b3527d Mon Sep 17 00:00:00 2001 From: borNfreee Date: Mon, 15 May 2017 23:51:36 +0300 Subject: [PATCH 34/38] [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 e5b6ff4ad721..71eea72ef64a 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 49ba0ee06c79..f42a5255d558 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 96e307fd5c49af88ccb581efbb61cc0d0287ca3f Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Mon, 22 May 2017 10:45:15 +0200 Subject: [PATCH 35/38] [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 e5b6ff4ad721..f07ace4b161e 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 49ba0ee06c79..2309965deeff 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 36/38] [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 fe40e020ccab..9a46207eefe4 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 1140ae19308c87610e1686db8dbe5384860328d6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 29 May 2017 12:14:50 -0700 Subject: [PATCH 37/38] updated CHANGELOG for 2.8.21 --- CHANGELOG-2.8.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 52328ef28f5c..b73a0f1a2b18 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,21 @@ 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.21 (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 #22718 [Console] Fixed different behaviour of key and value user inputs in multiple choice question (borNfreee) + * bug #22901 Fix missing abstract key in XmlDumper (weaverryan) + * bug #22817 [PhpUnitBridge] optional error handler arguments (xabbuh) + * bug #22752 Improved how profiler errors are displayed on small screens (javiereguiluz) + * bug #22647 [VarDumper] Fix dumping of non-nested stubs (nicolas-grekas) + * 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) + * 2.8.20 (2017-05-01) * bug #22550 Allow Upper Case property names in ObjectNormalizer (insekticid) From ecf57807c8110681f4a599bc2e3b028d38a6b336 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 29 May 2017 12:14:58 -0700 Subject: [PATCH 38/38] updated VERSION for 2.8.21 --- 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 51417f5dcbf3..86be16e14e70 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.21-DEV'; + const VERSION = '2.8.21'; const VERSION_ID = 20821; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; const RELEASE_VERSION = 21; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019';