From 802c67c3242d6df99b3da202fab1c017c88a20a4 Mon Sep 17 00:00:00 2001 From: Pierre du Plessis Date: Mon, 2 Oct 2017 14:38:17 +0200 Subject: [PATCH 001/104] Change datetime input to datetime-local --- .../Form/Extension/Core/Type/DateTimeType.php | 13 ++++--------- .../Form/Tests/AbstractBootstrap3LayoutTest.php | 4 ++-- .../Component/Form/Tests/AbstractLayoutTest.php | 4 ++-- .../Tests/Extension/Core/Type/DateTimeTypeTest.php | 4 ++-- 4 files changed, 10 insertions(+), 15 deletions(-) diff --git a/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php b/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php index 9cd25ed7789c2..2662c3b8a2dd9 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/DateTimeType.php @@ -34,17 +34,12 @@ class DateTimeType extends AbstractType /** * This is not quite the HTML5 format yet, because ICU lacks the - * capability of parsing and generating RFC 3339 dates, which - * are like the below pattern but with a timezone suffix. The - * timezone suffix is. - * - * * "Z" for UTC - * * "(-|+)HH:mm" for other timezones (note the colon!) + * capability of parsing and generating RFC 3339 dates. * * For more information see: * * http://userguide.icu-project.org/formatparse/datetime#TOC-Date-Time-Format-Syntax - * http://www.w3.org/TR/html-markup/input.datetime.html + * https://www.w3.org/TR/html5/sec-forms.html#local-date-and-time-state-typedatetimelocal * http://tools.ietf.org/html/rfc3339 * * An ICU ticket was created: @@ -54,7 +49,7 @@ class DateTimeType extends AbstractType * yet. To temporarily circumvent this issue, DateTimeToRfc3339Transformer * is used when the format matches this constant. */ - const HTML5_FORMAT = "yyyy-MM-dd'T'HH:mm:ssZZZZZ"; + const HTML5_FORMAT = "yyyy-MM-dd'T'HH:mm:ss"; private static $acceptedFormats = array( \IntlDateFormatter::FULL, @@ -192,7 +187,7 @@ public function buildView(FormView $view, FormInterface $form, array $options) // * the format matches the one expected by HTML5 // * the html5 is set to true if ($options['html5'] && 'single_text' === $options['widget'] && self::HTML5_FORMAT === $options['format']) { - $view->vars['type'] = 'datetime'; + $view->vars['type'] = 'datetime-local'; } } diff --git a/src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php index 8d9b11d39a401..9b8ffd3abd539 100644 --- a/src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractBootstrap3LayoutTest.php @@ -1525,7 +1525,7 @@ public function testDateTimeWithWidgetSingleText() $this->assertWidgetMatchesXpath($form->createView(), array('attr' => array('class' => 'my&class')), '/input - [@type="datetime"] + [@type="datetime-local"] [@name="name"] [@class="my&class form-control"] [@value="2011-02-03T04:05:06Z"] @@ -1546,7 +1546,7 @@ public function testDateTimeWithWidgetSingleTextIgnoreDateAndTimeWidgets() $this->assertWidgetMatchesXpath($form->createView(), array('attr' => array('class' => 'my&class')), '/input - [@type="datetime"] + [@type="datetime-local"] [@name="name"] [@class="my&class form-control"] [@value="2011-02-03T04:05:06Z"] diff --git a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php index 752cddbdd798a..2d0bbf97be379 100644 --- a/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractLayoutTest.php @@ -1426,7 +1426,7 @@ public function testDateTimeWithWidgetSingleText() $this->assertWidgetMatchesXpath($form->createView(), array(), '/input - [@type="datetime"] + [@type="datetime-local"] [@name="name"] [@value="2011-02-03T04:05:06Z"] ' @@ -1446,7 +1446,7 @@ public function testDateTimeWithWidgetSingleTextIgnoreDateAndTimeWidgets() $this->assertWidgetMatchesXpath($form->createView(), array(), '/input - [@type="datetime"] + [@type="datetime-local"] [@name="name"] [@value="2011-02-03T04:05:06Z"] ' diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTimeTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTimeTypeTest.php index 1c48a777edc97..073cf8726d91b 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTimeTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTimeTypeTest.php @@ -283,7 +283,7 @@ public function testSingleTextWidgetShouldUseTheRightInputType() )) ->createView(); - $this->assertEquals('datetime', $view->vars['type']); + $this->assertEquals('datetime-local', $view->vars['type']); } public function testPassDefaultPlaceholderToViewIfNotRequired() @@ -433,7 +433,7 @@ public function testPassHtml5TypeIfSingleTextAndHtml5Format() )) ->createView(); - $this->assertSame('datetime', $view->vars['type']); + $this->assertSame('datetime-local', $view->vars['type']); } public function testDontPassHtml5TypeIfHtml5NotAllowed() From fe586acd92d67be07f269d0b48e0046cfe62efe8 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Tue, 27 Feb 2018 17:11:57 +0100 Subject: [PATCH 002/104] [Config] Backport string|null api for node names --- src/Symfony/Component/Config/Definition/BaseNode.php | 4 ++-- .../Component/Config/Definition/Builder/NodeBuilder.php | 4 ++-- .../Component/Config/Definition/Builder/NodeDefinition.php | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Config/Definition/BaseNode.php b/src/Symfony/Component/Config/Definition/BaseNode.php index 2e346d79072ed..8568bf182be7a 100644 --- a/src/Symfony/Component/Config/Definition/BaseNode.php +++ b/src/Symfony/Component/Config/Definition/BaseNode.php @@ -33,8 +33,8 @@ abstract class BaseNode implements NodeInterface protected $attributes = array(); /** - * @param string $name The name of the node - * @param NodeInterface $parent The parent of this node + * @param string|null $name The name of the node + * @param NodeInterface|null $parent The parent of this node * * @throws \InvalidArgumentException if the name contains a period */ diff --git a/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php b/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php index 152a497b14339..1fac66fd3702f 100644 --- a/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php +++ b/src/Symfony/Component/Config/Definition/Builder/NodeBuilder.php @@ -143,8 +143,8 @@ public function end() /** * Creates a child node. * - * @param string $name The name of the node - * @param string $type The type of the node + * @param string|null $name The name of the node + * @param string $type The type of the node * * @return NodeDefinition The child node * diff --git a/src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php b/src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php index 3c2610b5d1157..8546fcd5efaf4 100644 --- a/src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php +++ b/src/Symfony/Component/Config/Definition/Builder/NodeDefinition.php @@ -36,7 +36,7 @@ abstract class NodeDefinition implements NodeParentInterface protected $attributes = array(); /** - * @param string $name The name of the node + * @param string|null $name The name of the node * @param NodeParentInterface|null $parent The parent */ public function __construct($name, NodeParentInterface $parent = null) From 8f16c2e39e8392f5033ebd3848f70dd241626faa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 22 Feb 2018 18:18:05 +0100 Subject: [PATCH 003/104] [Security][Profiler] Display the original expression in 'Access decision log' --- .../Resources/views/Collector/security.html.twig | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/security.html.twig b/src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/security.html.twig index 7d993fb1f5dac..096fadd0f853f 100644 --- a/src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/security.html.twig +++ b/src/Symfony/Bundle/SecurityBundle/Resources/views/Collector/security.html.twig @@ -317,7 +317,14 @@ {% if decision.attributes|length == 1 %} - {{ decision.attributes|first }} + {% set attribute = decision.attributes|first %} + {% if attribute.expression is defined %} + Expression:
{{ attribute.expression }}
+ {% elseif attribute.type == 'string' %} + {{ attribute }} + {% else %} + {{ profiler_dump(attribute) }} + {% endif %} {% else %} {{ profiler_dump(decision.attributes) }} {% endif %} From 5b4354f46c250a6c1ca7710ffff9d333050db12f Mon Sep 17 00:00:00 2001 From: Daniel STANCU Date: Mon, 5 Mar 2018 15:16:24 +0200 Subject: [PATCH 004/104] Readd 'form_label_errors' block to disable errors on form labels --- .../Twig/Resources/views/Form/bootstrap_4_layout.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig index a3484d9036bec..d12e0d8c1ee6c 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig @@ -203,7 +203,7 @@ {% set label = name|humanize %} {%- endif -%} {%- endif -%} - <{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ translation_domain is same as(false) ? label : label|trans({}, translation_domain) }}{{- form_errors(form) -}} + <{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ translation_domain is same as(false) ? label : label|trans({}, translation_domain) }}{% block form_label_errors %}{{- form_errors(form) -}}{% endblock form_label_errors %} {%- endif -%} {%- endblock form_label %} From dc399138351361759ad3114fcabfdca49e3c1c4d Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 10:31:53 -0800 Subject: [PATCH 005/104] updated CHANGELOG for 2.7.43 --- CHANGELOG-2.7.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-2.7.md b/CHANGELOG-2.7.md index fbc5fec755ecf..2d7bfd9f74dd6 100644 --- a/CHANGELOG-2.7.md +++ b/CHANGELOG-2.7.md @@ -7,6 +7,10 @@ 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.43 (2018-03-05) + + * bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal) + * 2.7.42 (2018-02-28) * bug #26338 [Debug] Keep previous errors of Error instances (Philipp91) From 4683c3f960fef9ad37be447335a7db0a4452ea60 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 10:31:59 -0800 Subject: [PATCH 006/104] update CONTRIBUTORS for 2.7.43 --- CONTRIBUTORS.md | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 0b1fbb47f3562..1034172772791 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -43,11 +43,11 @@ Symfony is the result of the work of many people who made the code better - Diego Saint Esteben (dosten) - Alexandre Salomé (alexandresalome) - William Durand (couac) + - Hamza Amrouche (simperfit) - ornicar - Francis Besset (francisbesset) - Iltar van der Berg (kjarli) - stealth35 ‏ (stealth35) - - Hamza Amrouche (simperfit) - Alexander Mols (asm89) - Yonel Ceruto (yonelceruto) - Bulat Shakirzyanov (avalanche123) @@ -57,8 +57,8 @@ Symfony is the result of the work of many people who made the code better - Henrik Bjørnskov (henrikbjorn) - Miha Vrhovnik - Diego Saint Esteben (dii3g0) - - Dany Maillard (maidmaid) - Pierre du Plessis (pierredup) + - Dany Maillard (maidmaid) - Konstantin Kudryashov (everzet) - Kevin Bond (kbond) - Bilal Amarni (bamarni) @@ -66,6 +66,7 @@ Symfony is the result of the work of many people who made the code better - Jérémy DERUSSÉ (jderusse) - Florin Patan (florinpatan) - Samuel ROZE (sroze) + - Tobias Nyholm (tobias) - Gábor Egyed (1ed) - Michel Weimerskirch (mweimerskirch) - Andrej Hudec (pulzarraider) @@ -75,7 +76,6 @@ Symfony is the result of the work of many people who made the code better - Titouan Galopin (tgalopin) - Konstantin Myakshin (koc) - Christian Raue - - Tobias Nyholm (tobias) - Arnout Boks (aboks) - Deni - Henrik Westphal (snc) @@ -200,6 +200,7 @@ Symfony is the result of the work of many people who made the code better - Matthieu Bontemps (mbontemps) - apetitpa - Pierre Minnieur (pminnieur) + - Jannik Zschiesche (apfelbox) - fivestar - Dominique Bongiraud - Jeremy Livingston (jeremylivingston) @@ -224,7 +225,6 @@ Symfony is the result of the work of many people who made the code better - Marcel Beerta (mazen) - gadelat (gadelat) - Loïc Faugeron - - Jannik Zschiesche (apfelbox) - Hidde Wieringa (hiddewie) - Marco Pivetta (ocramius) - Rob Frawley 2nd (robfrawley) @@ -697,6 +697,7 @@ Symfony is the result of the work of many people who made the code better - Nykopol (nykopol) - Jordan Deitch - Casper Valdemar Poulsen + - Remon van de Kamp - Josiah (josiah) - Joschi Kuphal - John Bohn (jbohn) @@ -736,6 +737,7 @@ Symfony is the result of the work of many people who made the code better - Adrien Lucas (adrienlucas) - Zhuravlev Alexander (scif) - James Michael DuPont + - Xavier HAUSHERR - Tom Klingenberg - Christopher Hall (mythmakr) - Patrick Dawkins (pjcdawkins) @@ -1102,7 +1104,6 @@ Symfony is the result of the work of many people who made the code better - Pierre Tachoire (krichprollsch) - Marc J. Schmidt (marcjs) - Marco Jantke - - Remon van de Kamp - Saem Ghani - Clément LEFEBVRE - Conrad Kleinespel @@ -1225,7 +1226,6 @@ Symfony is the result of the work of many people who made the code better - Sebastian Ionescu - Thomas Ploch - Simon Neidhold - - Xavier HAUSHERR - Valentin VALCIU - Jeremiah VALERIE - Kevin Dew @@ -1573,6 +1573,7 @@ Symfony is the result of the work of many people who made the code better - Vladimir Chernyshev (volch) - Yorkie Chadwick (yorkie76) - GuillaumeVerdon + - Philipp Keck - Ondrej Mirtes - akimsko - Youpie @@ -1630,6 +1631,7 @@ Symfony is the result of the work of many people who made the code better - Jordan Hoff - znerol - Christian Eikermann + - Kai Eichinger - Antonio Angelino - Matt Fields - Niklas Keller From 4d96c086a000f562fb5563cc11d84130acf21abc Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 10:32:00 -0800 Subject: [PATCH 007/104] updated VERSION for 2.7.43 --- 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 fb24b4d650370..a27a875f18f73 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.43-DEV'; + const VERSION = '2.7.43'; const VERSION_ID = 20743; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; const RELEASE_VERSION = 43; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 1616d368d9f633df000a32c04d10b1bad67d67f4 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:05:22 -0800 Subject: [PATCH 008/104] bumped Symfony version to 2.7.44 --- 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 a27a875f18f73..ff57c10b47341 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.43'; - const VERSION_ID = 20743; + const VERSION = '2.7.44-DEV'; + const VERSION_ID = 20744; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; - const RELEASE_VERSION = 43; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 44; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 7fc8041bcb487de155cc99c1f6b2d6b88b49ccfb Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:06:21 -0800 Subject: [PATCH 009/104] updated CHANGELOG for 2.8.36 --- CHANGELOG-2.8.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 239dbb5c839c2..9f4767672eb5a 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,10 @@ 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.36 (2018-03-05) + + * bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal) + * 2.8.35 (2018-03-01) * bug #26338 [Debug] Keep previous errors of Error instances (Philipp91) From af393d7663cb24d9f763f620ed36f65482814dcd Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:06:26 -0800 Subject: [PATCH 010/104] updated VERSION for 2.8.36 --- 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 52b08bf2bc9ca..2ee19828759e9 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.36-DEV'; + const VERSION = '2.8.36'; const VERSION_ID = 20836; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; const RELEASE_VERSION = 36; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From 6e80476d64fbe5ed1a3b0f3ddcce3e5764ccbb75 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:40:00 -0800 Subject: [PATCH 011/104] bumped Symfony version to 2.8.37 --- 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 2ee19828759e9..cb055f5a67924 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.36'; - const VERSION_ID = 20836; + const VERSION = '2.8.37-DEV'; + const VERSION_ID = 20837; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; - const RELEASE_VERSION = 36; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 37; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From b010f4ffee938e513a4ae5d10baac20b3ef8fef6 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:40:57 -0800 Subject: [PATCH 012/104] updated CHANGELOG for 3.4.6 --- CHANGELOG-3.4.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/CHANGELOG-3.4.md b/CHANGELOG-3.4.md index e8f584e49635c..e735c49d847f0 100644 --- a/CHANGELOG-3.4.md +++ b/CHANGELOG-3.4.md @@ -7,6 +7,14 @@ in 3.4 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v3.4.0...v3.4.1 +* 3.4.6 (2018-03-05) + + * bug #26393 [DI] Skip resource tracking if disabled (chalasr) + * bug #26355 [DI] Fix missing "id" normalization when dumping the container (nicolas-grekas) + * bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal) + * bug #26369 Use fill instead of style for svg colors (rpkamp) + * bug #26358 [FrameworkBundle] Silence "Failed to remove directory" on cache:clear (nicolas-grekas) + * 3.4.5 (2018-03-01) * bug #26327 [Form][WCAG] Errors sign for people that do not see colors (Nyholm) From 932c275e651f4de51ae0e95f08f961bb2e50e2d3 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 11:41:07 -0800 Subject: [PATCH 013/104] updated VERSION for 3.4.6 --- 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 26236e2d22936..156a0f511fcb8 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.6-DEV'; + const VERSION = '3.4.6'; const VERSION_ID = 30406; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; const RELEASE_VERSION = 6; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021'; From d6fd5798ea3ff482d61d1c4fee426d86770b3396 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 14:26:20 -0800 Subject: [PATCH 014/104] bumped Symfony version to 3.4.7 --- 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 156a0f511fcb8..f5b8cb7213c7d 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -67,12 +67,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '3.4.6'; - const VERSION_ID = 30406; + const VERSION = '3.4.7-DEV'; + const VERSION_ID = 30407; const MAJOR_VERSION = 3; const MINOR_VERSION = 4; - const RELEASE_VERSION = 6; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 7; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2020'; const END_OF_LIFE = '11/2021'; From c83784cf2f127f802645099741c40e79698f8b55 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 5 Mar 2018 14:43:55 -0800 Subject: [PATCH 015/104] bumped Symfony version to 4.0.7 --- 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 d7038c6c1f2ff..0b1ddcb628be9 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.0.6'; - const VERSION_ID = 40006; + const VERSION = '4.0.7-DEV'; + const VERSION_ID = 40007; const MAJOR_VERSION = 4; const MINOR_VERSION = 0; - const RELEASE_VERSION = 6; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 7; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '07/2018'; const END_OF_LIFE = '01/2019'; From dff88d44be7f480ba2ec15ab88e597475d7eec56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Sun, 22 Oct 2017 13:38:09 -1000 Subject: [PATCH 016/104] [Config] Add characters to the regex This allow paths containing ~ and + (as used in version number in Debian for example) to be used while running the testsuite. --- src/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php b/src/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php index 00a7901f3a4ac..9d61c9cd83284 100644 --- a/src/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php +++ b/src/Symfony/Component/Config/Tests/Util/XmlUtilsTest.php @@ -55,7 +55,7 @@ public function testLoadFile() XmlUtils::loadFile($fixtures.'valid.xml', array($mock, 'validate')); $this->fail(); } catch (\InvalidArgumentException $e) { - $this->assertRegExp('/The XML file "[\w:\/\\\.-]+" is not valid\./', $e->getMessage()); + $this->assertRegExp('/The XML file "[\w:\/\\\.~+-]+" is not valid\./', $e->getMessage()); } $this->assertInstanceOf('DOMDocument', XmlUtils::loadFile($fixtures.'valid.xml', array($mock, 'validate'))); From 44b4fc8db56e891ec261b4ad5351a640aac945d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Pr=C3=A9vot?= Date: Mon, 5 Mar 2018 15:41:45 -1000 Subject: [PATCH 017/104] [SecurityBundle] Make extra character non mandatory in regex The extra character was introduced in 5f9471e, and breaks the testsuite in native php 7.2. --- .../Tests/Functional/UserPasswordEncoderCommandTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/UserPasswordEncoderCommandTest.php b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/UserPasswordEncoderCommandTest.php index 01b2ce303acfa..163aa5ccb41ef 100644 --- a/src/Symfony/Bundle/SecurityBundle/Tests/Functional/UserPasswordEncoderCommandTest.php +++ b/src/Symfony/Bundle/SecurityBundle/Tests/Functional/UserPasswordEncoderCommandTest.php @@ -86,7 +86,7 @@ public function testEncodePasswordArgon2i() $this->assertContains('Password encoding succeeded', $output); $encoder = new Argon2iPasswordEncoder(); - preg_match('# Encoded password\s+(\$argon2id\$[\w\d,=\$+\/]+={0,2})\s+#', $output, $matches); + preg_match('# Encoded password\s+(\$argon2id?\$[\w\d,=\$+\/]+={0,2})\s+#', $output, $matches); $hash = $matches[1]; $this->assertTrue($encoder->isPasswordValid($hash, 'password', null)); } From 028c9f23667ee02180a49b099bbf74f876cf0114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Tue, 6 Mar 2018 23:27:05 +0100 Subject: [PATCH 018/104] [DomCrawler] extract(): fix a bug when the attribute list is empty --- src/Symfony/Component/DomCrawler/Crawler.php | 2 +- src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php index cccea633dda3f..a49bb3930af8d 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -605,7 +605,7 @@ public function extract($attributes) } } - $data[] = $count > 1 ? $elements : $elements[0]; + $data[] = 1 === $count ? $elements[0] : $elements; } return $data; diff --git a/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php b/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php index 3ba9247618373..74acfdf8c6317 100644 --- a/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php +++ b/src/Symfony/Component/DomCrawler/Tests/CrawlerTest.php @@ -369,6 +369,7 @@ public function testExtract() $this->assertEquals(array('One', 'Two', 'Three'), $crawler->extract('_text'), '->extract() returns an array of extracted data from the node list'); $this->assertEquals(array(array('One', 'first'), array('Two', ''), array('Three', '')), $crawler->extract(array('_text', 'class')), '->extract() returns an array of extracted data from the node list'); + $this->assertEquals(array(array(), array(), array()), $crawler->extract(array()), '->extract() returns empty arrays if the attribute list is empty'); $this->assertEquals(array(), $this->createTestCrawler()->filterXPath('//ol')->extract('_text'), '->extract() returns an empty array if the node list is empty'); } From d00746987717125b13222214daffcbda43001e36 Mon Sep 17 00:00:00 2001 From: Alessandro Loffredo Date: Wed, 7 Mar 2018 14:52:09 +0100 Subject: [PATCH 019/104] fix the updating of timestamp in the MemcachedSessionHandler --- .../Session/Storage/Handler/MemcachedSessionHandler.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php b/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php index 9f4ef7028edbe..dd37eae14e10d 100644 --- a/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php +++ b/src/Symfony/Component/HttpFoundation/Session/Storage/Handler/MemcachedSessionHandler.php @@ -80,7 +80,9 @@ protected function doRead($sessionId) */ public function updateTimestamp($sessionId, $data) { - return $this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl); + $this->memcached->touch($this->prefix.$sessionId, time() + $this->ttl); + + return true; } /** From 16e86bc0c0e416071fbabbd5f22be0cb115e4364 Mon Sep 17 00:00:00 2001 From: Jakub Kulhan Date: Thu, 8 Mar 2018 00:00:26 +0100 Subject: [PATCH 020/104] [CssSelector] Fix CSS identifiers parsing - they can start with dash --- .../CssSelector/Parser/Tokenizer/TokenizerPatterns.php | 2 +- src/Symfony/Component/CssSelector/Tests/Parser/ParserTest.php | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php index b548905fa29c8..15dfb0eb0e78b 100644 --- a/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php +++ b/src/Symfony/Component/CssSelector/Parser/Tokenizer/TokenizerPatterns.php @@ -44,7 +44,7 @@ public function __construct() $this->nonAsciiPattern = '[^\x00-\x7F]'; $this->nmCharPattern = '[_a-z0-9-]|'.$this->escapePattern.'|'.$this->nonAsciiPattern; $this->nmStartPattern = '[_a-z]|'.$this->escapePattern.'|'.$this->nonAsciiPattern; - $this->identifierPattern = '(?:'.$this->nmStartPattern.')(?:'.$this->nmCharPattern.')*'; + $this->identifierPattern = '-?(?:'.$this->nmStartPattern.')(?:'.$this->nmCharPattern.')*'; $this->hashPattern = '#((?:'.$this->nmCharPattern.')+)'; $this->numberPattern = '[+-]?(?:[0-9]*\.[0-9]+|[0-9]+)'; $this->quotedStringPattern = '([^\n\r\f%s]|'.$this->stringEscapePattern.')*'; diff --git a/src/Symfony/Component/CssSelector/Tests/Parser/ParserTest.php b/src/Symfony/Component/CssSelector/Tests/Parser/ParserTest.php index 37a3ef1d58def..53b35a95473cc 100644 --- a/src/Symfony/Component/CssSelector/Tests/Parser/ParserTest.php +++ b/src/Symfony/Component/CssSelector/Tests/Parser/ParserTest.php @@ -186,6 +186,7 @@ public function getPseudoElementsTestData() array('foo:after', 'Element[foo]', 'after'), array('foo::selection', 'Element[foo]', 'selection'), array('lorem#ipsum ~ a#b.c[href]:empty::selection', 'CombinedSelector[Hash[Element[lorem]#ipsum] ~ Pseudo[Attribute[Class[Hash[Element[a]#b].c][href]]:empty]]', 'selection'), + array('video::-webkit-media-controls', 'Element[video]', '-webkit-media-controls'), ); } From 0beb64a77c208ed0a159c4a4c967998dcc94af72 Mon Sep 17 00:00:00 2001 From: Lukas Kahwe Smith Date: Tue, 6 Mar 2018 12:22:04 +0100 Subject: [PATCH 021/104] fix regression when extending the Container class without a constructor regression introduced in https://github.com/symfony/symfony/commit/c026ec63e33c696c422f3d72c99c8fe64f091376#diff-f7b23d463cba27ac5e4cb677f2be7623R985 --- .../Component/DependencyInjection/Dumper/PhpDumper.php | 10 +++++++--- .../Fixtures/Container/NoConstructorContainer.php | 4 +++- ...m_container_class_constructor_without_arguments.php | 1 + ...ainer_class_with_optional_constructor_arguments.php | 1 + 4 files changed, 12 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php index f4aa0582f7983..4f2c4a15cb1af 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -981,9 +981,13 @@ public function __construct() if ($this->container->isCompiled()) { if (Container::class !== $baseClassWithNamespace) { $r = $this->container->getReflectionClass($baseClassWithNamespace, false); - - if (null !== $r && (null !== $constructor = $r->getConstructor()) && 0 === $constructor->getNumberOfRequiredParameters()) { - $code .= " parent::__construct();\n\n"; + if (null !== $r + && (null !== $constructor = $r->getConstructor()) + && 0 === $constructor->getNumberOfRequiredParameters() + && Container::class !== $constructor->getDeclaringClass()->name + ) { + $code .= " parent::__construct();\n"; + $code .= " \$this->parameterBag = null;\n\n"; } } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/Container/NoConstructorContainer.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/Container/NoConstructorContainer.php index 7514cc7c1b865..b14b013f1f552 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/Container/NoConstructorContainer.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/Container/NoConstructorContainer.php @@ -2,6 +2,8 @@ namespace Symfony\Component\DependencyInjection\Tests\Fixtures\Container; -class NoConstructorContainer +use Symfony\Component\DependencyInjection\Container; + +class NoConstructorContainer extends Container { } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_constructor_without_arguments.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_constructor_without_arguments.php index 3020602b89804..0a443f3a7965c 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_constructor_without_arguments.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_constructor_without_arguments.php @@ -24,6 +24,7 @@ class ProjectServiceContainer extends \Symfony\Component\DependencyInjection\Tes public function __construct() { parent::__construct(); + $this->parameterBag = null; $this->services = array(); diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_with_optional_constructor_arguments.php b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_with_optional_constructor_arguments.php index d65ac7dfbcac9..6bf3c90613702 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_with_optional_constructor_arguments.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/custom_container_class_with_optional_constructor_arguments.php @@ -24,6 +24,7 @@ class ProjectServiceContainer extends \Symfony\Component\DependencyInjection\Tes public function __construct() { parent::__construct(); + $this->parameterBag = null; $this->services = array(); From 1debf79430f84d612f1ac0c1b7765f35bf8f1b3a Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 7 Mar 2018 23:32:04 +0000 Subject: [PATCH 022/104] [Intl] Load locale aliases to support alias fallbacks --- src/Symfony/Component/Intl/Intl.php | 6 ++ src/Symfony/Component/Intl/Tests/IntlTest.php | 84 +++++++++++++++++++ 2 files changed, 90 insertions(+) create mode 100644 src/Symfony/Component/Intl/Tests/IntlTest.php diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index 3444c10f83435..e552b994fd361 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -15,6 +15,7 @@ use Symfony\Component\Intl\Data\Bundle\Reader\BufferedBundleReader; use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReader; use Symfony\Component\Intl\Data\Bundle\Reader\BundleEntryReaderInterface; +use Symfony\Component\Intl\Data\Provider\LocaleDataProvider; use Symfony\Component\Intl\Data\Provider\ScriptDataProvider; use Symfony\Component\Intl\ResourceBundle\CurrencyBundle; use Symfony\Component\Intl\ResourceBundle\CurrencyBundleInterface; @@ -259,6 +260,11 @@ private static function getEntryReader() new JsonBundleReader(), self::BUFFER_SIZE )); + $localeDataProvider = new LocaleDataProvider( + self::getDataDirectory().'/'.self::LOCALE_DIR, + self::$entryReader + ); + self::$entryReader->setLocaleAliases($localeDataProvider->getAliases()); } return self::$entryReader; diff --git a/src/Symfony/Component/Intl/Tests/IntlTest.php b/src/Symfony/Component/Intl/Tests/IntlTest.php new file mode 100644 index 0000000000000..d77655b77d476 --- /dev/null +++ b/src/Symfony/Component/Intl/Tests/IntlTest.php @@ -0,0 +1,84 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Intl\Tests; + +use Symfony\Component\Intl\Intl; +use PHPUnit\Framework\TestCase; + +class IntlTest extends TestCase +{ + /** + * @requires extension intl + */ + public function testIsExtensionLoadedChecksIfIntlExtensionIsLoaded() + { + $this->assertTrue(Intl::isExtensionLoaded()); + } + + public function testGetCurrencyBundleCreatesTheCurrencyBundle() + { + $this->assertInstanceOf('Symfony\Component\Intl\ResourceBundle\CurrencyBundleInterface', Intl::getCurrencyBundle()); + } + + public function testGetLanguageBundleCreatesTheLanguageBundle() + { + $this->assertInstanceOf('Symfony\Component\Intl\ResourceBundle\LanguageBundleInterface', Intl::getLanguageBundle()); + } + + public function testGetLocaleBundleCreatesTheLocaleBundle() + { + $this->assertInstanceOf('Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface', Intl::getLocaleBundle()); + } + + public function testGetRegionBundleCreatesTheRegionBundle() + { + $this->assertInstanceOf('Symfony\Component\Intl\ResourceBundle\LocaleBundleInterface', Intl::getLocaleBundle()); + } + + public function testGetIcuVersionReadsTheVersionOfInstalledIcuLibrary() + { + $this->assertStringMatchesFormat('%d.%d', Intl::getIcuVersion()); + } + + public function testGetIcuDataVersionReadsTheVersionOfInstalledIcuData() + { + $this->assertStringMatchesFormat('%d.%d', Intl::getIcuDataVersion()); + } + + public function testGetIcuStubVersionReadsTheVersionOfBundledStubs() + { + $this->assertStringMatchesFormat('%d.%d', Intl::getIcuStubVersion()); + } + + public function testGetDataDirectoryReturnsThePathToIcuData() + { + $this->assertTrue(is_dir(Intl::getDataDirectory())); + } + + /** + * @requires extension intl + */ + public function testLocaleAliasesAreLoaded() + { + \Locale::setDefault('zh_TW'); + $countryNameZhTw = Intl::getRegionBundle()->getCountryName('AD'); + + \Locale::setDefault('zh_Hant_TW'); + $countryNameHantZhTw = Intl::getRegionBundle()->getCountryName('AD'); + + \Locale::setDefault('zh'); + $countryNameZh = Intl::getRegionBundle()->getCountryName('AD'); + + $this->assertSame($countryNameZhTw, $countryNameHantZhTw, 'zh_TW is an alias to zh_Hant_TW'); + $this->assertNotSame($countryNameZh, $countryNameZhTw, 'zh_TW does not fall back to zh'); + } +} From f16d99ecfa2c98a41c8ebcd42c69fd27720d634c Mon Sep 17 00:00:00 2001 From: Vladimir Reznichenko Date: Sat, 10 Mar 2018 10:27:05 +0100 Subject: [PATCH 023/104] Php Inspections (EA Ultimate): address some of one-time used local variables --- src/Symfony/Bridge/Twig/Translation/TwigExtractor.php | 3 +-- src/Symfony/Component/DomCrawler/Crawler.php | 4 +--- .../Component/Form/ChoiceList/LegacyChoiceListAdapter.php | 4 +--- .../Component/Form/Extension/Core/Type/FormType.php | 7 ++++--- .../Validator/EventListener/ValidationListener.php | 4 +--- .../Form/Extension/Validator/ValidatorTypeGuesser.php | 8 ++------ 6 files changed, 10 insertions(+), 20 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php index db388ab70ba91..a921582dbabdb 100644 --- a/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php +++ b/src/Symfony/Bridge/Twig/Translation/TwigExtractor.php @@ -54,8 +54,7 @@ public function __construct(Environment $twig) */ public function extract($resource, MessageCatalogue $catalogue) { - $files = $this->extractFiles($resource); - foreach ($files as $file) { + foreach ($this->extractFiles($resource) as $file) { try { $this->extractTemplate(file_get_contents($file->getPathname()), $catalogue); } catch (Error $e) { diff --git a/src/Symfony/Component/DomCrawler/Crawler.php b/src/Symfony/Component/DomCrawler/Crawler.php index cccea633dda3f..a387b5245ed3f 100644 --- a/src/Symfony/Component/DomCrawler/Crawler.php +++ b/src/Symfony/Component/DomCrawler/Crawler.php @@ -1039,8 +1039,6 @@ private function findNamespacePrefixes($xpath) */ private function createSubCrawler($nodes) { - $crawler = new static($nodes, $this->uri, $this->baseHref); - - return $crawler; + return new static($nodes, $this->uri, $this->baseHref); } } diff --git a/src/Symfony/Component/Form/ChoiceList/LegacyChoiceListAdapter.php b/src/Symfony/Component/Form/ChoiceList/LegacyChoiceListAdapter.php index 929ef8c290ded..57ec192e49e84 100644 --- a/src/Symfony/Component/Form/ChoiceList/LegacyChoiceListAdapter.php +++ b/src/Symfony/Component/Form/ChoiceList/LegacyChoiceListAdapter.php @@ -133,9 +133,7 @@ private function initialize() $this->values = array(); $this->structuredValues = $this->adaptedList->getValues(); - $innerChoices = $this->adaptedList->getChoices(); - - foreach ($innerChoices as $index => $choice) { + foreach ($this->adaptedList->getChoices() as $index => $choice) { $value = $this->structuredValues[$index]; $this->values[] = $value; $this->choices[$value] = $choice; diff --git a/src/Symfony/Component/Form/Extension/Core/Type/FormType.php b/src/Symfony/Component/Form/Extension/Core/Type/FormType.php index d8e8ff3176417..9c5642b11604e 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/FormType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/FormType.php @@ -81,6 +81,7 @@ public function buildView(FormView $view, FormInterface $form, array $options) } } + $formConfig = $form->getConfig(); $view->vars = array_replace($view->vars, array( 'read_only' => $readOnly, 'errors' => $form->getErrors(), @@ -92,9 +93,9 @@ public function buildView(FormView $view, FormInterface $form, array $options) 'pattern' => isset($options['attr']['pattern']) ? $options['attr']['pattern'] : null, // Deprecated 'size' => null, 'label_attr' => $options['label_attr'], - 'compound' => $form->getConfig()->getCompound(), - 'method' => $form->getConfig()->getMethod(), - 'action' => $form->getConfig()->getAction(), + 'compound' => $formConfig->getCompound(), + 'method' => $formConfig->getMethod(), + 'action' => $formConfig->getAction(), 'submitted' => $form->isSubmitted(), )); } diff --git a/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php b/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php index 4bebce09cd574..884bfca9e4120 100644 --- a/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php +++ b/src/Symfony/Component/Form/Extension/Validator/EventListener/ValidationListener.php @@ -61,9 +61,7 @@ public function validateForm(FormEvent $event) if ($form->isRoot()) { // Validate the form in group "Default" - $violations = $this->validator->validate($form); - - foreach ($violations as $violation) { + foreach ($this->validator->validate($form) as $violation) { // Allow the "invalid" constraint to be put onto // non-synchronized forms // ConstraintViolation::getConstraint() must not expect to provide a constraint as long as Symfony\Component\Validator\ExecutionContext exists (before 3.0) diff --git a/src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php b/src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php index 90dadd08d951a..f40347d2a1309 100644 --- a/src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php +++ b/src/Symfony/Component/Form/Extension/Validator/ValidatorTypeGuesser.php @@ -261,12 +261,8 @@ protected function guess($class, $property, \Closure $closure, $defaultValue = n $classMetadata = $this->metadataFactory->getMetadataFor($class); if ($classMetadata instanceof ClassMetadataInterface && $classMetadata->hasPropertyMetadata($property)) { - $memberMetadatas = $classMetadata->getPropertyMetadata($property); - - foreach ($memberMetadatas as $memberMetadata) { - $constraints = $memberMetadata->getConstraints(); - - foreach ($constraints as $constraint) { + foreach ($classMetadata->getPropertyMetadata($property) as $memberMetadata) { + foreach ($memberMetadata->getConstraints() as $constraint) { if ($guess = $closure($constraint)) { $guesses[] = $guess; } From e8df759f211a0bda4c34e6a9af8c0ab168991d2c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Fri, 9 Mar 2018 15:05:02 +0100 Subject: [PATCH 024/104] Make KernelInterface docblock more fit for bundle-less environment --- src/Symfony/Component/HttpKernel/KernelInterface.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/KernelInterface.php b/src/Symfony/Component/HttpKernel/KernelInterface.php index e58fbd2ed5b64..995edc76eef67 100644 --- a/src/Symfony/Component/HttpKernel/KernelInterface.php +++ b/src/Symfony/Component/HttpKernel/KernelInterface.php @@ -18,7 +18,7 @@ /** * The Kernel is the heart of the Symfony system. * - * It manages an environment made of bundles. + * It manages an environment made of application kernel and bundles. * * @author Fabien Potencier */ @@ -67,7 +67,7 @@ public function getBundles(); public function getBundle($name); /** - * Returns the file path for a given resource. + * Returns the file path for a given bundle resource. * * A Resource can be a file or a directory. * From 6a5f071bff7f4692a08374ed1259c0fd06acd1a7 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sun, 11 Mar 2018 17:41:28 +0100 Subject: [PATCH 025/104] [DI] Remove dead dumper check --- 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 55537643d3dc3..1ff6ed892c996 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -1604,7 +1604,7 @@ private function dumpLiteralClass(string $class): string private function dumpParameter(string $name): string { - if ($this->container->isCompiled() && $this->container->hasParameter($name)) { + if ($this->container->hasParameter($name)) { $value = $this->container->getParameter($name); $dumpedValue = $this->dumpValue($value, false); From 5b0d9340d7b8cc2a714847be9dc7e2cfaf9f367a Mon Sep 17 00:00:00 2001 From: Javier Eguiluz Date: Sun, 4 Feb 2018 17:33:12 +0100 Subject: [PATCH 026/104] Display the Welcome Page when there is no homepage defined --- .../Component/HttpKernel/Resources/welcome.html.php | 2 +- .../Routing/Matcher/Dumper/PhpMatcherDumper.php | 9 ++++----- src/Symfony/Component/Routing/Matcher/UrlMatcher.php | 2 +- .../Routing/Tests/Fixtures/dumper/url_matcher1.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher2.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher3.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher4.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher5.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher6.php | 4 ++++ .../Routing/Tests/Fixtures/dumper/url_matcher7.php | 4 ++++ 10 files changed, 34 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Component/HttpKernel/Resources/welcome.html.php b/src/Symfony/Component/HttpKernel/Resources/welcome.html.php index d8c37beb56ae2..caac7fd6ebb99 100644 --- a/src/Symfony/Component/HttpKernel/Resources/welcome.html.php +++ b/src/Symfony/Component/HttpKernel/Resources/welcome.html.php @@ -76,7 +76,7 @@

- You're seeing this message because you have debug mode enabled and you haven't configured any URLs. + You're seeing this page because debug mode is enabled and you haven't configured any homepage URL.

diff --git a/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php b/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php index b74ff8a9d79cf..78b37d744fd89 100644 --- a/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php +++ b/src/Symfony/Component/Routing/Matcher/Dumper/PhpMatcherDumper.php @@ -153,11 +153,10 @@ private function compileRoutes(RouteCollection $routes, $supportsRedirections) } } - if ('' === $code) { - $code .= " if ('/' === \$pathinfo) {\n"; - $code .= " throw new Symfony\Component\Routing\Exception\NoConfigurationException();\n"; - $code .= " }\n"; - } + // used to display the Welcome Page in apps that don't define a homepage + $code .= " if ('/' === \$pathinfo) {\n"; + $code .= " throw new Symfony\Component\Routing\Exception\NoConfigurationException();\n"; + $code .= " }\n"; return $code; } diff --git a/src/Symfony/Component/Routing/Matcher/UrlMatcher.php b/src/Symfony/Component/Routing/Matcher/UrlMatcher.php index 3cba7e66f8606..597dea079511c 100644 --- a/src/Symfony/Component/Routing/Matcher/UrlMatcher.php +++ b/src/Symfony/Component/Routing/Matcher/UrlMatcher.php @@ -76,7 +76,7 @@ public function match($pathinfo) return $ret; } - if (0 === count($this->routes) && '/' === $pathinfo) { + if ('/' === $pathinfo) { throw new NoConfigurationException(); } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher1.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher1.php index d1bb74ec1d9b0..89ab95fdcf28d 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher1.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher1.php @@ -305,6 +305,10 @@ public function match($rawPathinfo) } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher2.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher2.php index 662c2cb9a7964..6099ec4e424b4 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher2.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher2.php @@ -357,6 +357,10 @@ public function match($rawPathinfo) return $ret; } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher3.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher3.php index 40edb4386ffad..2be0c5dedc25e 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher3.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher3.php @@ -46,6 +46,10 @@ public function match($rawPathinfo) return array('_route' => 'with-condition'); } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher4.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher4.php index 89f2b10e22783..451a8b7591bb6 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher4.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher4.php @@ -97,6 +97,10 @@ public function match($rawPathinfo) } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher5.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher5.php index f88ecaf15f965..825e260218904 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher5.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher5.php @@ -200,6 +200,10 @@ public function match($rawPathinfo) } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher6.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher6.php index 91079fcef70e2..77d48f5480074 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher6.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher6.php @@ -192,6 +192,10 @@ public function match($rawPathinfo) } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher7.php b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher7.php index a9c3fd2b5f8ba..407ca13b354ee 100644 --- a/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher7.php +++ b/src/Symfony/Component/Routing/Tests/Fixtures/dumper/url_matcher7.php @@ -248,6 +248,10 @@ public function match($rawPathinfo) } + if ('/' === $pathinfo) { + throw new Symfony\Component\Routing\Exception\NoConfigurationException(); + } + throw 0 < count($allow) ? new MethodNotAllowedException(array_unique($allow)) : new ResourceNotFoundException(); } } From e85151483ccd9e2c002ba8e6808d3598056a5851 Mon Sep 17 00:00:00 2001 From: andrey1s Date: Mon, 5 Mar 2018 11:57:35 +0300 Subject: [PATCH 027/104] [Config] ReflectionClassResource check abstract ServiceSubscriberInterface and EventSubscriberInterface --- .../Component/Config/Resource/ReflectionClassResource.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Config/Resource/ReflectionClassResource.php b/src/Symfony/Component/Config/Resource/ReflectionClassResource.php index 149789aa367da..822b78568d3b1 100644 --- a/src/Symfony/Component/Config/Resource/ReflectionClassResource.php +++ b/src/Symfony/Component/Config/Resource/ReflectionClassResource.php @@ -155,12 +155,16 @@ private function generateSignature(\ReflectionClass $class) } } - if ($class->isSubclassOf(EventSubscriberInterface::class)) { + if ($class->isAbstract() || $class->isInterface() || $class->isTrait()) { + return; + } + + if (interface_exists(EventSubscriberInterface::class, false) && $class->isSubclassOf(EventSubscriberInterface::class)) { yield EventSubscriberInterface::class; yield print_r(\call_user_func(array($class->name, 'getSubscribedEvents')), true); } - if ($class->isSubclassOf(ServiceSubscriberInterface::class)) { + if (interface_exists(ServiceSubscriberInterface::class, false) && $class->isSubclassOf(ServiceSubscriberInterface::class)) { yield ServiceSubscriberInterface::class; yield print_r(\call_user_func(array($class->name, 'getSubscribedServices')), true); } From 6ca8b4beeb2d44e4dd821446092c709ffeb97666 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Mon, 12 Mar 2018 14:37:54 +0100 Subject: [PATCH 028/104] [DomCrawler] FormField: remove an useless return statement --- src/Symfony/Component/DomCrawler/Field/FormField.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Field/FormField.php b/src/Symfony/Component/DomCrawler/Field/FormField.php index 567164d0461d6..33c0bbeac042f 100644 --- a/src/Symfony/Component/DomCrawler/Field/FormField.php +++ b/src/Symfony/Component/DomCrawler/Field/FormField.php @@ -75,8 +75,6 @@ public function getLabel() if ($labels->length > 0) { return $labels->item(0); } - - return; } /** From 77e643d0baa2b0cbf3132a14daaf2ed2fd238ed4 Mon Sep 17 00:00:00 2001 From: amcastror Date: Sat, 10 Mar 2018 15:48:33 -0300 Subject: [PATCH 029/104] [PhpUnitBridge] Ability to use different composer.json file --- src/Symfony/Bridge/PhpUnit/bin/simple-phpunit | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit index 2f97e32e11819..a549cd7da4fb7 100755 --- a/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit +++ b/src/Symfony/Bridge/PhpUnit/bin/simple-phpunit @@ -26,8 +26,13 @@ if (PHP_VERSION_ID >= 70200) { $PHPUNIT_VERSION = '4.8'; } +if ('composer.json' !== $COMPOSER_JSON = getenv('COMPOSER') ?: 'composer.json') { + putenv('COMPOSER=composer.json'); + $_SERVER['COMPOSER'] = $_ENV['COMPOSER'] = 'composer.json'; +} + $root = __DIR__; -while (!file_exists($root.'/composer.json') || file_exists($root.'/DeprecationErrorHandler.php')) { +while (!file_exists($root.'/'.$COMPOSER_JSON) || file_exists($root.'/DeprecationErrorHandler.php')) { if ($root === dirname($root)) { break; } From 5d7b13110b9136e390af82df7b4e81c61db0e57b Mon Sep 17 00:00:00 2001 From: Jean Ragouin Date: Tue, 13 Mar 2018 18:00:05 +0800 Subject: [PATCH 030/104] Update Client.php --- src/Symfony/Component/BrowserKit/Client.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/Client.php b/src/Symfony/Component/BrowserKit/Client.php index 63d4be77cff58..e9e0d1963f624 100644 --- a/src/Symfony/Component/BrowserKit/Client.php +++ b/src/Symfony/Component/BrowserKit/Client.php @@ -78,7 +78,7 @@ public function isFollowingRedirects() } /** - * Sets the maximum number of requests that crawler can follow. + * Sets the maximum number of redirects that crawler can follow. * * @param int $maxRedirects */ @@ -89,7 +89,7 @@ public function setMaxRedirects($maxRedirects) } /** - * Returns the maximum number of requests that crawler can follow. + * Returns the maximum number of redirects that crawler can follow. * * @return int */ From 4d075da9347c693045e57130d5c92655996f1180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Thu, 1 Mar 2018 14:58:28 +0100 Subject: [PATCH 031/104] [FrameworkBundle] HttpCache is not longer abstract --- .../Bundle/FrameworkBundle/HttpCache/HttpCache.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php index fa89292804a86..8455baafc7b3f 100644 --- a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php +++ b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php @@ -11,7 +11,7 @@ namespace Symfony\Bundle\FrameworkBundle\HttpCache; -use Symfony\Component\HttpKernel\HttpKernelInterface; +use Symfony\Component\HttpKernel\KernelInterface; use Symfony\Component\HttpKernel\HttpCache\HttpCache as BaseHttpCache; use Symfony\Component\HttpKernel\HttpCache\Esi; use Symfony\Component\HttpKernel\HttpCache\Store; @@ -23,16 +23,16 @@ * * @author Fabien Potencier */ -abstract class HttpCache extends BaseHttpCache +class HttpCache extends BaseHttpCache { protected $cacheDir; protected $kernel; /** - * @param HttpKernelInterface $kernel An HttpKernelInterface instance - * @param string $cacheDir The cache directory (default used if null) + * @param KernelInterface $kernel A KernelInterface instance + * @param string $cacheDir The cache directory (default used if null) */ - public function __construct(HttpKernelInterface $kernel, $cacheDir = null) + public function __construct(KernelInterface $kernel, $cacheDir = null) { $this->kernel = $kernel; $this->cacheDir = $cacheDir; From c77d1428e8fb77faf8fbc4c6a71d1cd27063616e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Thu, 15 Mar 2018 17:07:34 +0100 Subject: [PATCH 032/104] [DomCrawler] Avoid a useless call to strtolower --- src/Symfony/Component/DomCrawler/Field/InputFormField.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Field/InputFormField.php b/src/Symfony/Component/DomCrawler/Field/InputFormField.php index 090913efa36bd..1c3c84d7217be 100644 --- a/src/Symfony/Component/DomCrawler/Field/InputFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/InputFormField.php @@ -32,11 +32,12 @@ protected function initialize() throw new \LogicException(sprintf('An InputFormField can only be created from an input or button tag (%s given).', $this->node->nodeName)); } - if ('checkbox' === strtolower($this->node->getAttribute('type'))) { + $type = strtolower($this->node->getAttribute('type')); + if ('checkbox' === $type) { throw new \LogicException('Checkboxes should be instances of ChoiceFormField.'); } - if ('file' === strtolower($this->node->getAttribute('type'))) { + if ('file' === $type) { throw new \LogicException('File inputs should be instances of FileFormField.'); } From 0c62f659fb2b3be9d7403505febf4d7952697c43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Thu, 15 Mar 2018 17:51:38 +0100 Subject: [PATCH 033/104] [DomCrawler] Fix the PHPDoc of ChoiceFormField::setValue --- src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php index c479daa75ee78..0553c54563399 100644 --- a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php @@ -113,7 +113,7 @@ public function untick() /** * Sets the value of the field. * - * @param string $value The value of the field + * @param string|array $value The value of the field * * @throws \InvalidArgumentException When value type provided is not correct */ From a4ec6d3c9c33ac4472615e049643a5bf882a3338 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Thu, 15 Mar 2018 18:10:20 +0100 Subject: [PATCH 034/104] [DomCrawler] Change bad wording in ChoiceFormField::untick --- src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php index c479daa75ee78..ce22edc2db826 100644 --- a/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php +++ b/src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php @@ -97,14 +97,14 @@ public function tick() } /** - * Ticks a checkbox. + * Unticks a checkbox. * * @throws \LogicException When the type provided is not correct */ public function untick() { if ('checkbox' !== $this->type) { - throw new \LogicException(sprintf('You cannot tick "%s" as it is not a checkbox (%s).', $this->name, $this->type)); + throw new \LogicException(sprintf('You cannot untick "%s" as it is not a checkbox (%s).', $this->name, $this->type)); } $this->setValue(false); From 25312c4671bedb40b4a07c8bfe5127c182fea4c0 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Thu, 15 Mar 2018 20:08:29 +0100 Subject: [PATCH 035/104] [Serializer] Remove const override --- .../Component/Serializer/Normalizer/AbstractObjectNormalizer.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php index 08fbc5fa3fd88..25d6ff6a9d64e 100644 --- a/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php +++ b/src/Symfony/Component/Serializer/Normalizer/AbstractObjectNormalizer.php @@ -31,7 +31,6 @@ abstract class AbstractObjectNormalizer extends AbstractNormalizer { const ENABLE_MAX_DEPTH = 'enable_max_depth'; const DEPTH_KEY_PATTERN = 'depth_%s::%s'; - const ALLOW_EXTRA_ATTRIBUTES = 'allow_extra_attributes'; const DISABLE_TYPE_ENFORCEMENT = 'disable_type_enforcement'; private $propertyTypeExtractor; From 83c4f4c7f072aff6db39d2b22cac0605173ba831 Mon Sep 17 00:00:00 2001 From: okorneliuk Date: Thu, 15 Mar 2018 18:53:08 +0200 Subject: [PATCH 036/104] Extra line to bootstrap 3 horizontal layout This file ends with no newline character. It won't render properly on a terminal, and it's considered a bad practice. --- .../views/Form/bootstrap_3_horizontal_layout.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_horizontal_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_horizontal_layout.html.twig index f0c4626daf45e..d6b08f76375c4 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_horizontal_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_horizontal_layout.html.twig @@ -62,4 +62,4 @@ col-sm-10 {{- form_errors(form) -}} {#--#} -{%- endblock checkbox_row %} \ No newline at end of file +{%- endblock checkbox_row %} From 4ac5d3c3159d1762f5715103c40ae4919c51e2e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 16 Mar 2018 16:11:23 +0100 Subject: [PATCH 037/104] [BrowserKit] Fix Cookie's PHPDoc --- src/Symfony/Component/BrowserKit/Cookie.php | 22 ++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/Cookie.php b/src/Symfony/Component/BrowserKit/Cookie.php index e6159da74dc0b..1afd8da5f8e35 100644 --- a/src/Symfony/Component/BrowserKit/Cookie.php +++ b/src/Symfony/Component/BrowserKit/Cookie.php @@ -44,14 +44,14 @@ class Cookie /** * Sets a cookie. * - * @param string $name The cookie name - * @param string $value The value of the cookie - * @param string $expires The time the cookie expires - * @param string $path The path on the server in which the cookie will be available on - * @param string $domain The domain that the cookie is available - * @param bool $secure Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client - * @param bool $httponly The cookie httponly flag - * @param bool $encodedValue Whether the value is encoded or not + * @param string $name The cookie name + * @param string $value The value of the cookie + * @param string|null $expires The time the cookie expires + * @param string|null $path The path on the server in which the cookie will be available on + * @param string $domain The domain that the cookie is available + * @param bool $secure Indicates that the cookie should only be transmitted over a secure HTTPS connection from the client + * @param bool $httponly The cookie httponly flag + * @param bool $encodedValue Whether the value is encoded or not */ public function __construct($name, $value, $expires = null, $path = null, $domain = '', $secure = false, $httponly = true, $encodedValue = false) { @@ -112,8 +112,8 @@ public function __toString() /** * Creates a Cookie instance from a Set-Cookie header value. * - * @param string $cookie A Set-Cookie header value - * @param string $url The base URL + * @param string $cookie A Set-Cookie header value + * @param string|null $url The base URL * * @return static * @@ -242,7 +242,7 @@ public function getRawValue() /** * Gets the expires time of the cookie. * - * @return string The cookie expires time + * @return string|null The cookie expires time */ public function getExpiresTime() { From 57993143a9a57ac39d846a2118e891464e971b3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 16 Mar 2018 17:11:50 +0100 Subject: [PATCH 038/104] [BrowserKit] Improves CookieJar::get --- src/Symfony/Component/BrowserKit/CookieJar.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/CookieJar.php b/src/Symfony/Component/BrowserKit/CookieJar.php index 232cefc8b6647..faa8f6ec441a7 100644 --- a/src/Symfony/Component/BrowserKit/CookieJar.php +++ b/src/Symfony/Component/BrowserKit/CookieJar.php @@ -47,13 +47,13 @@ public function get($name, $path = '/', $domain = null) foreach ($this->cookieJar as $cookieDomain => $pathCookies) { if ($cookieDomain) { $cookieDomain = '.'.ltrim($cookieDomain, '.'); - if ($cookieDomain != substr('.'.$domain, -strlen($cookieDomain))) { + if ($cookieDomain !== substr('.'.$domain, -\strlen($cookieDomain))) { continue; } } foreach ($pathCookies as $cookiePath => $namedCookies) { - if ($cookiePath != substr($path, 0, strlen($cookiePath))) { + if (0 !== strpos($path, $cookiePath)) { continue; } if (isset($namedCookies[$name])) { From f656dc2082a12fdcc9033f9b4043b1ff316848a8 Mon Sep 17 00:00:00 2001 From: Thomas Calvet Date: Fri, 16 Mar 2018 17:35:29 +0100 Subject: [PATCH 039/104] [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore --- .../Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php | 6 +++--- .../Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php | 8 ++------ 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php b/src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php index ebdcb02ca77a4..26079cd09f2b2 100644 --- a/src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php +++ b/src/Symfony/Bridge/Doctrine/Form/DoctrineOrmTypeGuesser.php @@ -95,7 +95,7 @@ public function guessRequired($class, $property) $classMetadata = $classMetadatas[0]; // Check whether the field exists and is nullable or not - if ($classMetadata->hasField($property)) { + if (isset($classMetadata->fieldMappings[$property])) { if (!$classMetadata->isNullable($property) && Type::BOOLEAN !== $classMetadata->getTypeOfField($property)) { return new ValueGuess(true, Guess::HIGH_CONFIDENCE); } @@ -124,7 +124,7 @@ public function guessRequired($class, $property) public function guessMaxLength($class, $property) { $ret = $this->getMetadata($class); - if ($ret && $ret[0]->hasField($property) && !$ret[0]->hasAssociation($property)) { + if ($ret && isset($ret[0]->fieldMappings[$property]) && !$ret[0]->hasAssociation($property)) { $mapping = $ret[0]->getFieldMapping($property); if (isset($mapping['length'])) { @@ -143,7 +143,7 @@ public function guessMaxLength($class, $property) public function guessPattern($class, $property) { $ret = $this->getMetadata($class); - if ($ret && $ret[0]->hasField($property) && !$ret[0]->hasAssociation($property)) { + if ($ret && isset($ret[0]->fieldMappings[$property]) && !$ret[0]->hasAssociation($property)) { if (in_array($ret[0]->getTypeOfField($property), array(Type::DECIMAL, Type::FLOAT))) { return new ValueGuess(null, Guess::MEDIUM_CONFIDENCE); } diff --git a/src/Symfony/Bridge/Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php b/src/Symfony/Bridge/Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php index 12296729e2d87..0eda4a3ba6f0a 100644 --- a/src/Symfony/Bridge/Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php +++ b/src/Symfony/Bridge/Doctrine/Tests/Form/DoctrineOrmTypeGuesserTest.php @@ -33,21 +33,20 @@ public function requiredProvider() // Simple field, not nullable $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(true)); + $classMetadata->fieldMappings['field'] = true; $classMetadata->expects($this->once())->method('isNullable')->with('field')->will($this->returnValue(false)); $return[] = array($classMetadata, new ValueGuess(true, Guess::HIGH_CONFIDENCE)); // Simple field, nullable $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(true)); + $classMetadata->fieldMappings['field'] = true; $classMetadata->expects($this->once())->method('isNullable')->with('field')->will($this->returnValue(true)); $return[] = array($classMetadata, new ValueGuess(false, Guess::MEDIUM_CONFIDENCE)); // One-to-one, nullable (by default) $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(false)); $classMetadata->expects($this->once())->method('isAssociationWithSingleJoinColumn')->with('field')->will($this->returnValue(true)); $mapping = array('joinColumns' => array(array())); @@ -57,7 +56,6 @@ public function requiredProvider() // One-to-one, nullable (explicit) $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(false)); $classMetadata->expects($this->once())->method('isAssociationWithSingleJoinColumn')->with('field')->will($this->returnValue(true)); $mapping = array('joinColumns' => array(array('nullable' => true))); @@ -67,7 +65,6 @@ public function requiredProvider() // One-to-one, not nullable $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(false)); $classMetadata->expects($this->once())->method('isAssociationWithSingleJoinColumn')->with('field')->will($this->returnValue(true)); $mapping = array('joinColumns' => array(array('nullable' => false))); @@ -77,7 +74,6 @@ public function requiredProvider() // One-to-many, no clue $classMetadata = $this->getMockBuilder('Doctrine\ORM\Mapping\ClassMetadata')->disableOriginalConstructor()->getMock(); - $classMetadata->expects($this->once())->method('hasField')->with('field')->will($this->returnValue(false)); $classMetadata->expects($this->once())->method('isAssociationWithSingleJoinColumn')->with('field')->will($this->returnValue(false)); $return[] = array($classMetadata, null); From 47a3d7a08454200acc5a9c37fdd0478bb653c6da Mon Sep 17 00:00:00 2001 From: David Maicher Date: Fri, 16 Mar 2018 19:07:30 +0100 Subject: [PATCH 040/104] [TwigBundle] document TwigRenderer BC break in UPGRADE-3.4 --- UPGRADE-3.4.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/UPGRADE-3.4.md b/UPGRADE-3.4.md index 2638d84c802b1..38891caf76944 100644 --- a/UPGRADE-3.4.md +++ b/UPGRADE-3.4.md @@ -410,6 +410,14 @@ TwigBridge * deprecated the `Symfony\Bridge\Twig\Form\TwigRenderer` class, use the `FormRenderer` class from the Form component instead + + * the service `twig.form.renderer` is now an instance of `FormRenderer`. + So you might have to adjust your type-hints to `FormRendererInterface` if you are still relying on + the `TwigRendererInterface` which was deprecated in Symfony 3.2 + + * retrieving the Renderer runtime from the twig environment via + `$twig->getRuntime('Symfony\Bridge\Twig\Form\TwigRenderer')` is not working anymore + and should be replaced with `$twig->getRuntime('Symfony\Component\Form\FormRenderer')` instead * deprecated `Symfony\Bridge\Twig\Command\DebugCommand::set/getTwigEnvironment` and the ability to pass a command name as first argument From acc20fc7553a941e03c85407c7f9536197708998 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Fri, 16 Mar 2018 18:29:18 +0100 Subject: [PATCH 041/104] [BrowserKit] Fix cookie path handling when $domain is null --- .../Component/BrowserKit/CookieJar.php | 35 +++++++------------ .../BrowserKit/Tests/CookieJarTest.php | 2 ++ 2 files changed, 14 insertions(+), 23 deletions(-) diff --git a/src/Symfony/Component/BrowserKit/CookieJar.php b/src/Symfony/Component/BrowserKit/CookieJar.php index faa8f6ec441a7..7a4d64c10e5e2 100644 --- a/src/Symfony/Component/BrowserKit/CookieJar.php +++ b/src/Symfony/Component/BrowserKit/CookieJar.php @@ -43,32 +43,21 @@ public function get($name, $path = '/', $domain = null) { $this->flushExpiredCookies(); - if (!empty($domain)) { - foreach ($this->cookieJar as $cookieDomain => $pathCookies) { - if ($cookieDomain) { - $cookieDomain = '.'.ltrim($cookieDomain, '.'); - if ($cookieDomain !== substr('.'.$domain, -\strlen($cookieDomain))) { - continue; - } - } - - foreach ($pathCookies as $cookiePath => $namedCookies) { - if (0 !== strpos($path, $cookiePath)) { - continue; - } - if (isset($namedCookies[$name])) { - return $namedCookies[$name]; - } + foreach ($this->cookieJar as $cookieDomain => $pathCookies) { + if ($cookieDomain && $domain) { + $cookieDomain = '.'.ltrim($cookieDomain, '.'); + if ($cookieDomain !== substr('.'.$domain, -\strlen($cookieDomain))) { + continue; } } - return; - } - - // avoid relying on this behavior that is mainly here for BC reasons - foreach ($this->cookieJar as $cookies) { - if (isset($cookies[$path][$name])) { - return $cookies[$path][$name]; + foreach ($pathCookies as $cookiePath => $namedCookies) { + if (0 !== strpos($path, $cookiePath)) { + continue; + } + if (isset($namedCookies[$name])) { + return $namedCookies[$name]; + } } } } diff --git a/src/Symfony/Component/BrowserKit/Tests/CookieJarTest.php b/src/Symfony/Component/BrowserKit/Tests/CookieJarTest.php index 9c9e122e86b71..3117e5ce47326 100644 --- a/src/Symfony/Component/BrowserKit/Tests/CookieJarTest.php +++ b/src/Symfony/Component/BrowserKit/Tests/CookieJarTest.php @@ -237,6 +237,8 @@ public function testCookieGetWithSubdirectory() $this->assertEquals($cookie1, $cookieJar->get('foo', '/test', 'example.com')); $this->assertEquals($cookie2, $cookieJar->get('foo1', '/', 'example.com')); $this->assertEquals($cookie2, $cookieJar->get('foo1', '/bar', 'example.com')); + + $this->assertEquals($cookie2, $cookieJar->get('foo1', '/bar')); } public function testCookieWithWildcardDomain() From f36cfd4fc8b4dac845dbcbbb71767a88ccb50489 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Sat, 17 Mar 2018 13:20:09 +0100 Subject: [PATCH 042/104] [HttpKernel] Allow generators in registerBundle --- src/Symfony/Component/HttpKernel/KernelInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/KernelInterface.php b/src/Symfony/Component/HttpKernel/KernelInterface.php index b341e3e9fcda9..9ec4e7a9fc054 100644 --- a/src/Symfony/Component/HttpKernel/KernelInterface.php +++ b/src/Symfony/Component/HttpKernel/KernelInterface.php @@ -27,7 +27,7 @@ interface KernelInterface extends HttpKernelInterface, \Serializable /** * Returns an array of bundles to register. * - * @return BundleInterface[] An array of bundle instances + * @return iterable|BundleInterface[] An iterable of bundle instances */ public function registerBundles(); From 44008c404703b6f0b4d6cd0440fd454a9016780b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gabriel=20Ostroluck=C3=BD?= Date: Sat, 17 Mar 2018 23:42:44 +0100 Subject: [PATCH 043/104] [Validator] Fix docblock of ClassMetadata#members Structure of this array is in reality >, so MemberMetadata is 2 levels deep in this array, instead of one --- src/Symfony/Component/Validator/Mapping/ClassMetadata.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Validator/Mapping/ClassMetadata.php b/src/Symfony/Component/Validator/Mapping/ClassMetadata.php index c79f1259e7958..6472066c83827 100644 --- a/src/Symfony/Component/Validator/Mapping/ClassMetadata.php +++ b/src/Symfony/Component/Validator/Mapping/ClassMetadata.php @@ -48,7 +48,7 @@ class ClassMetadata extends ElementMetadata implements ClassMetadataInterface public $defaultGroup; /** - * @var MemberMetadata[] + * @var MemberMetadata[][] * * @internal This property is public in order to reduce the size of the * class' serialized representation. Do not access it. Use From 5dcaaadb5e8c01148b67d009c95a5118849f9a55 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sun, 18 Mar 2018 15:29:46 +0100 Subject: [PATCH 044/104] Make sure form errors is valid HTML --- .../views/Form/bootstrap_4_layout.html.twig | 14 ++++---- ...AbstractBootstrap4HorizontalLayoutTest.php | 14 ++++---- .../Tests/AbstractBootstrap4LayoutTest.php | 36 ++++++++----------- 3 files changed, 28 insertions(+), 36 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig index a3484d9036bec..6b5183592eded 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig @@ -261,12 +261,12 @@ {% block form_errors -%} {%- if errors|length > 0 -%} -
-
    - {%- for error in errors -%} -
  • {{ 'Error'|trans({}, 'validators') }} {{ error.message }}
  • - {%- endfor -%} -
-
+ + {%- for error in errors -%} + + {{ 'Error'|trans({}, 'validators') }} {{ error.message }} + + {%- endfor -%} + {%- endif %} {%- endblock form_errors %} diff --git a/src/Symfony/Component/Form/Tests/AbstractBootstrap4HorizontalLayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractBootstrap4HorizontalLayoutTest.php index e8ede167b3802..c906c6549ad2f 100644 --- a/src/Symfony/Component/Form/Tests/AbstractBootstrap4HorizontalLayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractBootstrap4HorizontalLayoutTest.php @@ -32,14 +32,12 @@ public function testRow() [ ./label[@for="name"] [ - ./div[ - ./ul - [./li - [./span[.="[trans]Error[/trans]"]] - [./span[.="[trans]Error![/trans]"]] - ] - [count(./li)=1] - ] + ./span[@class="alert alert-danger"] + [./span[@class="mb-0 d-block"] + [./span[.="[trans]Error[/trans]"]] + [./span[.="[trans]Error![/trans]"]] + ] + [count(./span)=1] ] /following-sibling::div[./input[@id="name"]] ] diff --git a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php index ec97577818d4d..aa0600e58fa3e 100644 --- a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php @@ -32,14 +32,12 @@ public function testRow() [ ./label[@for="name"] [ - ./div[ - ./ul - [./li - [./span[.="[trans]Error[/trans]"]] - [./span[.="[trans]Error![/trans]"]] - ] - [count(./li)=1] - ] + ./span[@class="alert alert-danger"] + [./span[@class="mb-0 d-block"] + [./span[.="[trans]Error[/trans]"]] + [./span[.="[trans]Error![/trans]"]] + ] + [count(./span)=1] ] /following-sibling::input[@id="name"] ] @@ -162,22 +160,18 @@ public function testErrors() $html = $this->renderErrors($view); $this->assertMatchesXpath($html, -'/div +'/span [@class="alert alert-danger"] [ - ./ul - [@class="list-unstyled mb-0"] - [ - ./li - [./span[.="[trans]Error[/trans]"]] - [./span[.="[trans]Error 1[/trans]"]] - - /following-sibling::li - [./span[.="[trans]Error[/trans]"]] - [./span[.="[trans]Error 2[/trans]"]] - ] - [count(./li)=2] + ./span[@class="mb-0 d-block"] + [./span[.="[trans]Error[/trans]"]] + [./span[.="[trans]Error 1[/trans]"]] + + /following-sibling::span[@class="mb-0 d-block"] + [./span[.="[trans]Error[/trans]"]] + [./span[.="[trans]Error 2[/trans]"]] ] + [count(./span)=2] ' ); } From d8f3de91d5907df505281803c482fd7edb2b5eb7 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sun, 18 Mar 2018 15:50:20 +0100 Subject: [PATCH 045/104] Make sure we always render errors. Eventhough labels are disabled --- .../Resources/views/Form/bootstrap_4_layout.html.twig | 6 ++++++ .../Form/Tests/AbstractBootstrap4LayoutTest.php | 10 ++++++++++ 2 files changed, 16 insertions(+) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig index a3484d9036bec..e2061c29ba305 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig @@ -204,6 +204,12 @@ {%- endif -%} {%- endif -%} <{{ element|default('label') }}{% if label_attr %}{% with { attr: label_attr } %}{{ block('attributes') }}{% endwith %}{% endif %}>{{ translation_domain is same as(false) ? label : label|trans({}, translation_domain) }}{{- form_errors(form) -}} + {%- else -%} + {%- if errors|length > 0 -%} +
+ {{- form_errors(form) -}} +
+ {%- endif -%} {%- endif -%} {%- endblock form_label %} diff --git a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php index ec97577818d4d..b9e8a38e0f403 100644 --- a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php @@ -182,6 +182,16 @@ public function testErrors() ); } + public function testErrorWithNoLabel() + { + $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\TextType', array('label'=>false)); + $form->addError(new FormError('[trans]Error 1[/trans]')); + $view = $form->createView(); + $html = $this->renderLabel($view); + + $this->assertMatchesXpath($html, '//span[.="[trans]Error[/trans]"]'); + } + public function testCheckedCheckbox() { $form = $this->factory->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\CheckboxType', true); From 986f9151fee81e6022a9203484131ab9755cba38 Mon Sep 17 00:00:00 2001 From: Florent Mata Date: Sat, 17 Mar 2018 16:10:21 +0100 Subject: [PATCH 046/104] add hint in Github pull request template --- .github/PULL_REQUEST_TEMPLATE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 2d64894f413fe..94f0fabcc4676 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -4,7 +4,7 @@ | Bug fix? | yes/no | New feature? | yes/no | BC breaks? | no -| Deprecations? | yes/no +| Deprecations? | yes/no | Tests pass? | yes | Fixed tickets | #... | License | MIT From 6b6fdab562eb3aca282d1966551e8d4d2cc07bf0 Mon Sep 17 00:00:00 2001 From: Jake Bishop Date: Fri, 16 Mar 2018 13:42:48 +0100 Subject: [PATCH 047/104] [Bridge\PhpUnit] Fix #26430 Cannot autoload listeners --- src/Symfony/Bridge/PhpUnit/CoverageListener.php | 6 ++++++ src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/src/Symfony/Bridge/PhpUnit/CoverageListener.php b/src/Symfony/Bridge/PhpUnit/CoverageListener.php index 79333fbd00221..d41c26968fad3 100644 --- a/src/Symfony/Bridge/PhpUnit/CoverageListener.php +++ b/src/Symfony/Bridge/PhpUnit/CoverageListener.php @@ -18,3 +18,9 @@ class_alias('Symfony\Bridge\PhpUnit\Legacy\CoverageListenerForV6', 'Symfony\Brid } else { class_alias('Symfony\Bridge\PhpUnit\Legacy\CoverageListenerForV7', 'Symfony\Bridge\PhpUnit\CoverageListener'); } + +if (false) { + class CoverageListener + { + } +} diff --git a/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php b/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php index d46a79e00eadc..a753525b76eed 100644 --- a/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php +++ b/src/Symfony/Bridge/PhpUnit/SymfonyTestsListener.php @@ -18,3 +18,9 @@ class_alias('Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerForV6', 'Symfony\ } else { class_alias('Symfony\Bridge\PhpUnit\Legacy\SymfonyTestsListenerForV7', 'Symfony\Bridge\PhpUnit\SymfonyTestsListener'); } + +if (false) { + class SymfonyTestsListener + { + } +} From f7e1bb05e24d4340e7bea42a6f2b0f4caa271f45 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 16 Mar 2018 17:37:42 +0100 Subject: [PATCH 048/104] [Debug] Reset previous exception handler ealier to prevent infinite loop --- src/Symfony/Component/Debug/ErrorHandler.php | 7 ++++--- .../Component/Debug/Tests/ErrorHandlerTest.php | 13 +++++++++++++ 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Debug/ErrorHandler.php b/src/Symfony/Component/Debug/ErrorHandler.php index 8875e03e8442b..e056862b8e675 100644 --- a/src/Symfony/Component/Debug/ErrorHandler.php +++ b/src/Symfony/Component/Debug/ErrorHandler.php @@ -544,15 +544,16 @@ public function handleException($exception, array $error = null) } } } + $exceptionHandler = $this->exceptionHandler; + $this->exceptionHandler = null; try { - if (null !== $this->exceptionHandler) { - return \call_user_func($this->exceptionHandler, $exception); + if (null !== $exceptionHandler) { + return \call_user_func($exceptionHandler, $exception); } $handlerException = $handlerException ?: $exception; } catch (\Exception $handlerException) { } catch (\Throwable $handlerException) { } - $this->exceptionHandler = null; if ($exception === $handlerException) { self::$reservedMemory = null; // Disable the fatal error handler throw $exception; // Give back $exception to the native handler diff --git a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php index f2d0fc8b0bc85..18834badae21c 100644 --- a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php @@ -530,4 +530,17 @@ public function testLegacyInterface() throw $e; } } + + /** + * @expectedException \Exception + */ + public function testCustomExceptionHandler() + { + $handler = new ErrorHandler(); + $handler->setExceptionHandler(function ($e) use ($handler) { + $handler->handleException($e); + }); + + $handler->handleException(new \Exception()); + } } From f6066532ea4e04429a8d6b23f43bf620db668bca Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 19 Mar 2018 13:09:45 +0100 Subject: [PATCH 049/104] typo --- src/Symfony/Component/Routing/RouteCompiler.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Routing/RouteCompiler.php b/src/Symfony/Component/Routing/RouteCompiler.php index 42ddde0077b1a..7ec10fa3b4604 100644 --- a/src/Symfony/Component/Routing/RouteCompiler.php +++ b/src/Symfony/Component/Routing/RouteCompiler.php @@ -247,7 +247,7 @@ private static function determineStaticPrefix(Route $route, array $tokens): stri } /** - * Returns the next static character in the Route pattern that will serve as a separator (or the empty string when none available) + * Returns the next static character in the Route pattern that will serve as a separator (or the empty string when none available). */ private static function findNextSeparator(string $pattern, bool $useUtf8): string { From 7a049769bfd8da96ed3015ea170cfe0499f3a201 Mon Sep 17 00:00:00 2001 From: temperatur <36632383+temperatur@users.noreply.github.com> Date: Mon, 19 Mar 2018 14:47:13 +0100 Subject: [PATCH 050/104] Fixes #26563 (open_basedir restriction in effect) If the open_basedir is set is_file(PHP_BINARY) is false. --- src/Symfony/Component/Process/PhpExecutableFinder.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/PhpExecutableFinder.php b/src/Symfony/Component/Process/PhpExecutableFinder.php index 4bc27fe4d4574..9b3b0f4f68337 100644 --- a/src/Symfony/Component/Process/PhpExecutableFinder.php +++ b/src/Symfony/Component/Process/PhpExecutableFinder.php @@ -44,7 +44,7 @@ public function find($includeArgs = true) } // PHP_BINARY return the current sapi executable - if (defined('PHP_BINARY') && PHP_BINARY && in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg')) && is_file(PHP_BINARY)) { + if (defined('PHP_BINARY') && PHP_BINARY && in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg'))) { return PHP_BINARY.$args; } From 2992bb3fd322de866f22e1aacf6552e87fccd917 Mon Sep 17 00:00:00 2001 From: Fred Cox Date: Thu, 15 Mar 2018 13:20:27 +0200 Subject: [PATCH 051/104] [DI] Add tests for EnvVarProcessor --- .../Tests/EnvVarProcessorTest.php | 304 ++++++++++++++++++ 1 file changed, 304 insertions(+) create mode 100644 src/Symfony/Component/DependencyInjection/Tests/EnvVarProcessorTest.php diff --git a/src/Symfony/Component/DependencyInjection/Tests/EnvVarProcessorTest.php b/src/Symfony/Component/DependencyInjection/Tests/EnvVarProcessorTest.php new file mode 100644 index 0000000000000..b1ee044e9e5c0 --- /dev/null +++ b/src/Symfony/Component/DependencyInjection/Tests/EnvVarProcessorTest.php @@ -0,0 +1,304 @@ +setParameter('env(foo)', $value); + $container->compile(); + + $processor = new EnvVarProcessor($container); + + $result = $processor->getEnv('string', 'foo', function () { + $this->fail('Should not be called'); + }); + + $this->assertSame($processed, $result); + } + + public function validStrings() + { + return array( + array('hello', 'hello'), + array('true', 'true'), + array('false', 'false'), + array('null', 'null'), + array('1', '1'), + array('0', '0'), + array('1.1', '1.1'), + array('1e1', '1e1'), + ); + } + + /** + * @dataProvider validBools + */ + public function testGetEnvBool($value, $processed) + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('bool', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + + $this->assertSame($processed, $result); + } + + public function validBools() + { + return array( + array('true', true), + array('false', false), + array('null', false), + array('1', true), + array('0', false), + array('1.1', true), + array('1e1', true), + ); + } + + /** + * @dataProvider validInts + */ + public function testGetEnvInt($value, $processed) + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('int', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + + $this->assertSame($processed, $result); + } + + public function validInts() + { + return array( + array('1', 1), + array('1.1', 1), + array('1e1', 10), + ); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage Non-numeric env var + * @dataProvider invalidInts + */ + public function testGetEnvIntInvalid($value) + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('int', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + } + + public function invalidInts() + { + return array( + array('foo'), + array('true'), + array('null'), + ); + } + + /** + * @dataProvider validFloats + */ + public function testGetEnvFloat($value, $processed) + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('float', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + + $this->assertSame($processed, $result); + } + + public function validFloats() + { + return array( + array('1', 1.0), + array('1.1', 1.1), + array('1e1', 10.0), + ); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage Non-numeric env var + * @dataProvider invalidFloats + */ + public function testGetEnvFloatInvalid($value) + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('float', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + } + + public function invalidFloats() + { + return array( + array('foo'), + array('true'), + array('null'), + ); + } + + /** + * @dataProvider validConsts + */ + public function testGetEnvConst($value, $processed) + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('const', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + + $this->assertSame($processed, $result); + } + + public function validConsts() + { + return array( + array('Symfony\Component\DependencyInjection\Tests\EnvVarProcessorTest::TEST_CONST', self::TEST_CONST), + array('E_ERROR', E_ERROR), + ); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage undefined constant + * @dataProvider invalidConsts + */ + public function testGetEnvConstInvalid($value) + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('const', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return $value; + }); + } + + public function invalidConsts() + { + return array( + array('Symfony\Component\DependencyInjection\Tests\EnvVarProcessorTest::UNDEFINED_CONST'), + array('UNDEFINED_CONST'), + ); + } + + public function testGetEnvBase64() + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('base64', 'foo', function ($name) { + $this->assertSame('foo', $name); + + return base64_encode('hello'); + }); + + $this->assertSame('hello', $result); + } + + public function testGetEnvJson() + { + $processor = new EnvVarProcessor(new Container()); + + $result = $processor->getEnv('json', 'foo', function ($name) { + $this->assertSame('foo', $name); + + return json_encode(array(1)); + }); + + $this->assertSame(array(1), $result); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage Syntax error + */ + public function testGetEnvInvalidJson() + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('json', 'foo', function ($name) { + $this->assertSame('foo', $name); + + return 'invalid_json'; + }); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage Invalid JSON env var + * @dataProvider otherJsonValues + */ + public function testGetEnvJsonOther($value) + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('json', 'foo', function ($name) use ($value) { + $this->assertSame('foo', $name); + + return json_encode($value); + }); + } + + public function otherJsonValues() + { + return array( + array(1), + array(1.1), + array(true), + array(false), + ); + } + + /** + * @expectedException \Symfony\Component\DependencyInjection\Exception\RuntimeException + * @expectedExceptionMessage Unsupported env var prefix + */ + public function testGetEnvUnknown() + { + $processor = new EnvVarProcessor(new Container()); + + $processor->getEnv('unknown', 'foo', function ($name) { + $this->assertSame('foo', $name); + + return 'foo'; + }); + } +} From cc38c6bb62ad7ea4cf2f7840288f2640953fd321 Mon Sep 17 00:00:00 2001 From: Egor Gorbachev Date: Mon, 19 Mar 2018 20:40:47 +0300 Subject: [PATCH 052/104] Fix typo in test method name --- src/Symfony/Component/Config/Tests/ConfigCacheFactoryTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Config/Tests/ConfigCacheFactoryTest.php b/src/Symfony/Component/Config/Tests/ConfigCacheFactoryTest.php index c523e5cd5e6a4..24e3224ce5ba0 100644 --- a/src/Symfony/Component/Config/Tests/ConfigCacheFactoryTest.php +++ b/src/Symfony/Component/Config/Tests/ConfigCacheFactoryTest.php @@ -20,7 +20,7 @@ class ConfigCacheFactoryTest extends TestCase * @expectedException \InvalidArgumentException * @expectedExceptionMessage Invalid type for callback argument. Expected callable, but got "object". */ - public function testCachWithInvalidCallback() + public function testCacheWithInvalidCallback() { $cacheFactory = new ConfigCacheFactory(true); From ee47236a4c08c39ba5fb33ee9ff13bb838f3a4d9 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 19 Mar 2018 19:37:04 +0100 Subject: [PATCH 053/104] [Debug] fix test --- src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php index 18834badae21c..4eb4aef0c0fa9 100644 --- a/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php +++ b/src/Symfony/Component/Debug/Tests/ErrorHandlerTest.php @@ -533,6 +533,7 @@ public function testLegacyInterface() /** * @expectedException \Exception + * @group no-hhvm */ public function testCustomExceptionHandler() { From cb9c92d06553f60a0b7b6b036c4b2a3c1813e738 Mon Sep 17 00:00:00 2001 From: Boris Vujicic Date: Fri, 2 Mar 2018 09:14:52 +0100 Subject: [PATCH 054/104] [Security] added userChecker to SimpleAuthenticationProvider --- .../Security/Factory/SimpleFormFactory.php | 1 + .../Provider/SimpleAuthenticationProvider.php | 16 +++- .../SimpleAuthenticationProviderTest.php | 89 +++++++++++++++++++ 3 files changed, 102 insertions(+), 4 deletions(-) create mode 100644 src/Symfony/Component/Security/Core/Tests/Authentication/Provider/SimpleAuthenticationProviderTest.php diff --git a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php index 6241cf4f3912f..69b8b943abac0 100644 --- a/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php +++ b/src/Symfony/Bundle/SecurityBundle/DependencyInjection/Security/Factory/SimpleFormFactory.php @@ -55,6 +55,7 @@ protected function createAuthProvider(ContainerBuilder $container, $id, $config, ->replaceArgument(0, new Reference($config['authenticator'])) ->replaceArgument(1, new Reference($userProviderId)) ->replaceArgument(2, $id) + ->replaceArgument(3, new Reference('security.user_checker.'.$id)) ; return $provider; diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php index ffbc72c055a0f..a82fb7eea4279 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/SimpleAuthenticationProvider.php @@ -11,6 +11,8 @@ namespace Symfony\Component\Security\Core\Authentication\Provider; +use Symfony\Component\Security\Core\User\UserChecker; +use Symfony\Component\Security\Core\User\UserCheckerInterface; use Symfony\Component\Security\Core\User\UserProviderInterface; use Symfony\Component\Security\Core\Authentication\Token\TokenInterface; use Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface; @@ -24,23 +26,29 @@ class SimpleAuthenticationProvider implements AuthenticationProviderInterface private $simpleAuthenticator; private $userProvider; private $providerKey; + private $userChecker; - public function __construct(SimpleAuthenticatorInterface $simpleAuthenticator, UserProviderInterface $userProvider, $providerKey) + public function __construct(SimpleAuthenticatorInterface $simpleAuthenticator, UserProviderInterface $userProvider, $providerKey, UserCheckerInterface $userChecker = null) { $this->simpleAuthenticator = $simpleAuthenticator; $this->userProvider = $userProvider; $this->providerKey = $providerKey; + $this->userChecker = $userChecker ?: new UserChecker(); } public function authenticate(TokenInterface $token) { $authToken = $this->simpleAuthenticator->authenticateToken($token, $this->userProvider, $this->providerKey); - if ($authToken instanceof TokenInterface) { - return $authToken; + if (!$authToken instanceof TokenInterface) { + throw new AuthenticationException('Simple authenticator failed to return an authenticated token.'); } - throw new AuthenticationException('Simple authenticator failed to return an authenticated token.'); + $user = $authToken->getUser(); + $this->userChecker->checkPreAuth($user); + $this->userChecker->checkPostAuth($user); + + return $authToken; } public function supports(TokenInterface $token) diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/SimpleAuthenticationProviderTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/SimpleAuthenticationProviderTest.php new file mode 100644 index 0000000000000..1e7069c1fa0bb --- /dev/null +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/SimpleAuthenticationProviderTest.php @@ -0,0 +1,89 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Security\Core\Tests\Authentication\Provider; + +use PHPUnit\Framework\TestCase; +use Symfony\Component\Security\Core\Exception\DisabledException; +use Symfony\Component\Security\Core\Authentication\Provider\SimpleAuthenticationProvider; +use Symfony\Component\Security\Core\Exception\LockedException; + +class SimpleAuthenticationProviderTest extends TestCase +{ + /** + * @expectedException \Symfony\Component\Security\Core\Exception\DisabledException + */ + public function testAuthenticateWhenPreChecksFails() + { + $user = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserInterface')->getMock(); + + $token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock(); + $token->expects($this->any()) + ->method('getUser') + ->will($this->returnValue($user)); + + $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); + $userChecker->expects($this->once()) + ->method('checkPreAuth') + ->will($this->throwException(new DisabledException())); + + $authenticator = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface')->getMock(); + $authenticator->expects($this->once()) + ->method('authenticateToken') + ->will($this->returnValue($token)); + + $provider = $this->getProvider($authenticator, null, $userChecker); + + $provider->authenticate($token); + } + + /** + * @expectedException \Symfony\Component\Security\Core\Exception\LockedException + */ + public function testAuthenticateWhenPostChecksFails() + { + $user = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserInterface')->getMock(); + + $token = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\Token\TokenInterface')->getMock(); + $token->expects($this->any()) + ->method('getUser') + ->will($this->returnValue($user)); + + $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); + $userChecker->expects($this->once()) + ->method('checkPostAuth') + ->will($this->throwException(new LockedException())); + + $authenticator = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface')->getMock(); + $authenticator->expects($this->once()) + ->method('authenticateToken') + ->will($this->returnValue($token)); + + $provider = $this->getProvider($authenticator, null, $userChecker); + + $provider->authenticate($token); + } + + protected function getProvider($simpleAuthenticator = null, $userProvider = null, $userChecker = null, $key = 'test') + { + if (null === $userChecker) { + $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); + } + if (null === $simpleAuthenticator) { + $simpleAuthenticator = $this->getMockBuilder('Symfony\Component\Security\Core\Authentication\SimpleAuthenticatorInterface')->getMock(); + } + if (null === $userProvider) { + $userProvider = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserProviderInterface')->getMock(); + } + + return new SimpleAuthenticationProvider($simpleAuthenticator, $userProvider, $key, $userChecker); + } +} From 5c3e6a95b307e5065855daaf05ace19e09c81203 Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Tue, 27 Feb 2018 16:54:37 +0100 Subject: [PATCH 055/104] [Config] Handle nullable node name + fix inheritdocs --- .../Component/Config/Definition/ArrayNode.php | 14 ++----- .../Component/Config/Definition/BaseNode.php | 38 ++++--------------- .../Builder/ArrayNodeDefinition.php | 18 ++------- .../Builder/ParentNodeDefinitionInterface.php | 23 +++++++++++ .../Config/Definition/NodeInterface.php | 16 +++++++- .../Config/Definition/PrototypedArrayNode.php | 8 +--- .../Config/Definition/VariableNode.php | 3 -- 7 files changed, 52 insertions(+), 68 deletions(-) diff --git a/src/Symfony/Component/Config/Definition/ArrayNode.php b/src/Symfony/Component/Config/Definition/ArrayNode.php index 2c2738ac4c968..3ec00350a8568 100644 --- a/src/Symfony/Component/Config/Definition/ArrayNode.php +++ b/src/Symfony/Component/Config/Definition/ArrayNode.php @@ -150,9 +150,7 @@ public function setIgnoreExtraKeys($boolean) } /** - * Sets the node Name. - * - * @param string $name The node's name + * {@inheritdoc} */ public function setName($name) { @@ -160,9 +158,7 @@ public function setName($name) } /** - * Checks if the node has a default value. - * - * @return bool + * {@inheritdoc} */ public function hasDefaultValue() { @@ -170,11 +166,7 @@ public function hasDefaultValue() } /** - * Retrieves the default value. - * - * @return array The default value - * - * @throws \RuntimeException if the node has no default value + * {@inheritdoc} */ public function getDefaultValue() { diff --git a/src/Symfony/Component/Config/Definition/BaseNode.php b/src/Symfony/Component/Config/Definition/BaseNode.php index 2e346d79072ed..63aac0874c4c1 100644 --- a/src/Symfony/Component/Config/Definition/BaseNode.php +++ b/src/Symfony/Component/Config/Definition/BaseNode.php @@ -40,7 +40,7 @@ abstract class BaseNode implements NodeInterface */ public function __construct($name, NodeInterface $parent = null) { - if (false !== strpos($name, '.')) { + if (false !== strpos($name = (string) $name, '.')) { throw new \InvalidArgumentException('The name must not contain ".".'); } @@ -170,9 +170,7 @@ public function setFinalValidationClosures(array $closures) } /** - * Checks if this node is required. - * - * @return bool + * {@inheritdoc} */ public function isRequired() { @@ -180,9 +178,7 @@ public function isRequired() } /** - * Returns the name of this node. - * - * @return string The Node's name + * {@inheritdoc} */ public function getName() { @@ -190,9 +186,7 @@ public function getName() } /** - * Retrieves the path of this node. - * - * @return string The Node's path + * {@inheritdoc} */ public function getPath() { @@ -206,14 +200,7 @@ public function getPath() } /** - * Merges two values together. - * - * @param mixed $leftSide - * @param mixed $rightSide - * - * @return mixed The merged value - * - * @throws ForbiddenOverwriteException + * {@inheritdoc} */ final public function merge($leftSide, $rightSide) { @@ -233,11 +220,7 @@ final public function merge($leftSide, $rightSide) } /** - * Normalizes a value, applying all normalization closures. - * - * @param mixed $value Value to normalize - * - * @return mixed The normalized value + * {@inheritdoc} */ final public function normalize($value) { @@ -285,14 +268,7 @@ public function getParent() } /** - * Finalizes a value, applying all finalization closures. - * - * @param mixed $value The value to finalize - * - * @return mixed The finalized value - * - * @throws Exception - * @throws InvalidConfigurationException + * {@inheritdoc} */ final public function finalize($value) { diff --git a/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php b/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php index a0ad77edd0796..bb751c237a5ec 100644 --- a/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php +++ b/src/Symfony/Component/Config/Definition/Builder/ArrayNodeDefinition.php @@ -47,7 +47,7 @@ public function __construct($name, NodeParentInterface $parent = null) } /** - * Sets a custom children builder. + * {@inheritdoc} */ public function setBuilder(NodeBuilder $builder) { @@ -55,9 +55,7 @@ public function setBuilder(NodeBuilder $builder) } /** - * Returns a builder to add children nodes. - * - * @return NodeBuilder + * {@inheritdoc} */ public function children() { @@ -306,17 +304,7 @@ public function normalizeKeys($bool) } /** - * Appends a node definition. - * - * $node = new ArrayNodeDefinition() - * ->children() - * ->scalarNode('foo')->end() - * ->scalarNode('baz')->end() - * ->end() - * ->append($this->getBarNodeDefinition()) - * ; - * - * @return $this + * {@inheritdoc} */ public function append(NodeDefinition $node) { diff --git a/src/Symfony/Component/Config/Definition/Builder/ParentNodeDefinitionInterface.php b/src/Symfony/Component/Config/Definition/Builder/ParentNodeDefinitionInterface.php index 575495bb684db..1bf2ad4bf6d96 100644 --- a/src/Symfony/Component/Config/Definition/Builder/ParentNodeDefinitionInterface.php +++ b/src/Symfony/Component/Config/Definition/Builder/ParentNodeDefinitionInterface.php @@ -18,9 +18,32 @@ */ interface ParentNodeDefinitionInterface { + /** + * Returns a builder to add children nodes. + * + * @return NodeBuilder + */ public function children(); + /** + * Appends a node definition. + * + * Usage: + * + * $node = $parentNode + * ->children() + * ->scalarNode('foo')->end() + * ->scalarNode('baz')->end() + * ->append($this->getBarNodeDefinition()) + * ->end() + * ; + * + * @return $this + */ public function append(NodeDefinition $node); + /** + * Sets a custom children builder. + */ public function setBuilder(NodeBuilder $builder); } diff --git a/src/Symfony/Component/Config/Definition/NodeInterface.php b/src/Symfony/Component/Config/Definition/NodeInterface.php index b9bddc49385a3..45f1f681c1ea5 100644 --- a/src/Symfony/Component/Config/Definition/NodeInterface.php +++ b/src/Symfony/Component/Config/Definition/NodeInterface.php @@ -11,6 +11,10 @@ namespace Symfony\Component\Config\Definition; +use Symfony\Component\Config\Definition\Exception\ForbiddenOverwriteException; +use Symfony\Component\Config\Definition\Exception\InvalidConfigurationException; +use Symfony\Component\Config\Definition\Exception\InvalidTypeException; + /** * Common Interface among all nodes. * @@ -59,11 +63,13 @@ public function hasDefaultValue(); public function getDefaultValue(); /** - * Normalizes the supplied value. + * Normalizes a value. * * @param mixed $value The value to normalize * * @return mixed The normalized value + * + * @throws InvalidTypeException if the value type is invalid */ public function normalize($value); @@ -73,7 +79,10 @@ public function normalize($value); * @param mixed $leftSide * @param mixed $rightSide * - * @return mixed The merged values + * @return mixed The merged value + * + * @throws ForbiddenOverwriteException if the configuration path cannot be overwritten + * @throws InvalidTypeException if the value type is invalid */ public function merge($leftSide, $rightSide); @@ -83,6 +92,9 @@ public function merge($leftSide, $rightSide); * @param mixed $value The value to finalize * * @return mixed The finalized value + * + * @throws InvalidTypeException if the value type is invalid + * @throws InvalidConfigurationException if the value is invalid configuration */ public function finalize($value); } diff --git a/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php b/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php index 08f335a015f30..d377b73e6c802 100644 --- a/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php +++ b/src/Symfony/Component/Config/Definition/PrototypedArrayNode.php @@ -102,9 +102,7 @@ public function setDefaultValue($value) } /** - * Checks if the node has a default value. - * - * @return bool + * {@inheritdoc} */ public function hasDefaultValue() { @@ -126,12 +124,10 @@ public function setAddChildrenIfNoneSet($children = array('defaults')) } /** - * Retrieves the default value. + * {@inheritdoc} * * The default value could be either explicited or derived from the prototype * default value. - * - * @return array The default value */ public function getDefaultValue() { diff --git a/src/Symfony/Component/Config/Definition/VariableNode.php b/src/Symfony/Component/Config/Definition/VariableNode.php index a9c35284cdcdb..0cd84c72bf303 100644 --- a/src/Symfony/Component/Config/Definition/VariableNode.php +++ b/src/Symfony/Component/Config/Definition/VariableNode.php @@ -27,9 +27,6 @@ class VariableNode extends BaseNode implements PrototypeNodeInterface protected $defaultValue; protected $allowEmptyValue = true; - /** - * {@inheritdoc} - */ public function setDefaultValue($value) { $this->defaultValueSet = true; From dad27b0b2a7b105648ae8b35a0095006001861b6 Mon Sep 17 00:00:00 2001 From: Tim Goudriaan Date: Mon, 19 Mar 2018 21:46:57 +0100 Subject: [PATCH 056/104] [Console] Fix docblock of DescriptorInterface::describe --- .../Component/Console/Descriptor/DescriptorInterface.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php b/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php index 3929b6d9ed776..5d3339a9e608a 100644 --- a/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php +++ b/src/Symfony/Component/Console/Descriptor/DescriptorInterface.php @@ -21,7 +21,7 @@ interface DescriptorInterface { /** - * Describes an InputArgument instance. + * Describes an object if supported. * * @param OutputInterface $output * @param object $object From f3ec39616c96ce0037a3bb62c8d31f7a4ac638a1 Mon Sep 17 00:00:00 2001 From: Artur Eshenbrener Date: Tue, 13 Mar 2018 19:09:28 +0300 Subject: [PATCH 057/104] [FrameworkBundle] Respect debug mode when warm up annotations --- .../CacheWarmer/AnnotationsCacheWarmer.php | 7 +- .../Resources/config/annotations.xml | 1 + .../AnnotationsCacheWarmerTest.php | 103 ++++++++++++++++++ 3 files changed, 109 insertions(+), 2 deletions(-) create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/AnnotationsCacheWarmerTest.php diff --git a/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/AnnotationsCacheWarmer.php b/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/AnnotationsCacheWarmer.php index ec55e9c6fc93a..3c32cb1c4a33a 100644 --- a/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/AnnotationsCacheWarmer.php +++ b/src/Symfony/Bundle/FrameworkBundle/CacheWarmer/AnnotationsCacheWarmer.php @@ -28,17 +28,20 @@ class AnnotationsCacheWarmer extends AbstractPhpFileCacheWarmer { private $annotationReader; private $excludeRegexp; + private $debug; /** * @param Reader $annotationReader * @param string $phpArrayFile The PHP file where annotations are cached * @param CacheItemPoolInterface $fallbackPool The pool where runtime-discovered annotations are cached + * @param bool $debug Run in debug mode */ - public function __construct(Reader $annotationReader, $phpArrayFile, CacheItemPoolInterface $fallbackPool, $excludeRegexp = null) + public function __construct(Reader $annotationReader, $phpArrayFile, CacheItemPoolInterface $fallbackPool, $excludeRegexp = null, $debug = false) { parent::__construct($phpArrayFile, $fallbackPool); $this->annotationReader = $annotationReader; $this->excludeRegexp = $excludeRegexp; + $this->debug = $debug; } /** @@ -53,7 +56,7 @@ protected function doWarmUp($cacheDir, ArrayAdapter $arrayAdapter) } $annotatedClasses = include $annotatedClassPatterns; - $reader = new CachedReader($this->annotationReader, new DoctrineProvider($arrayAdapter)); + $reader = new CachedReader($this->annotationReader, new DoctrineProvider($arrayAdapter), $this->debug); foreach ($annotatedClasses as $class) { if (null !== $this->excludeRegexp && preg_match($this->excludeRegexp, $class)) { diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml b/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml index 6e8cc4f9e6639..2b4ea429628e3 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/config/annotations.xml @@ -38,6 +38,7 @@ %kernel.cache_dir%/annotations.php #^Symfony\\(?:Component\\HttpKernel\\|Bundle\\FrameworkBundle\\Controller\\(?!AbstractController$|Controller$))# + %kernel.debug% diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/AnnotationsCacheWarmerTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/AnnotationsCacheWarmerTest.php new file mode 100644 index 0000000000000..b32274e7e7a80 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/CacheWarmer/AnnotationsCacheWarmerTest.php @@ -0,0 +1,103 @@ +cacheDir = sys_get_temp_dir().'/'.uniqid(); + $fs = new Filesystem(); + $fs->mkdir($this->cacheDir); + parent::setUp(); + } + + protected function tearDown() + { + $fs = new Filesystem(); + $fs->remove($this->cacheDir); + parent::tearDown(); + } + + public function testAnnotationsCacheWarmerWithDebugDisabled() + { + file_put_contents($this->cacheDir.'/annotations.map', sprintf('cacheDir, __FUNCTION__); + $reader = new AnnotationReader(); + $fallbackPool = new ArrayAdapter(); + $warmer = new AnnotationsCacheWarmer( + $reader, + $cacheFile, + $fallbackPool, + null + ); + $warmer->warmUp($this->cacheDir); + $this->assertFileExists($cacheFile); + + // Assert cache is valid + $reader = new CachedReader( + $this->getReadOnlyReader(), + new DoctrineProvider(new PhpArrayAdapter($cacheFile, new NullAdapter())) + ); + $refClass = new \ReflectionClass($this); + $reader->getClassAnnotations($refClass); + $reader->getMethodAnnotations($refClass->getMethod(__FUNCTION__)); + $reader->getPropertyAnnotations($refClass->getProperty('cacheDir')); + } + + public function testAnnotationsCacheWarmerWithDebugEnabled() + { + file_put_contents($this->cacheDir.'/annotations.map', sprintf('cacheDir, __FUNCTION__); + $reader = new AnnotationReader(); + $fallbackPool = new ArrayAdapter(); + $warmer = new AnnotationsCacheWarmer( + $reader, + $cacheFile, + $fallbackPool, + null, + true + ); + $warmer->warmUp($this->cacheDir); + $this->assertFileExists($cacheFile); + // Assert cache is valid + $reader = new CachedReader( + $this->getReadOnlyReader(), + new DoctrineProvider(new PhpArrayAdapter($cacheFile, new NullAdapter())), + true + ); + $refClass = new \ReflectionClass($this); + $reader->getClassAnnotations($refClass); + $reader->getMethodAnnotations($refClass->getMethod(__FUNCTION__)); + $reader->getPropertyAnnotations($refClass->getProperty('cacheDir')); + } + + /** + * @return \PHPUnit_Framework_MockObject_MockObject|Reader + */ + private function getReadOnlyReader() + { + $readerMock = $this->getMockBuilder('Doctrine\Common\Annotations\Reader')->getMock(); + $readerMock->expects($this->exactly(0))->method('getClassAnnotations'); + $readerMock->expects($this->exactly(0))->method('getClassAnnotation'); + $readerMock->expects($this->exactly(0))->method('getMethodAnnotations'); + $readerMock->expects($this->exactly(0))->method('getMethodAnnotation'); + $readerMock->expects($this->exactly(0))->method('getPropertyAnnotations'); + $readerMock->expects($this->exactly(0))->method('getPropertyAnnotation'); + + return $readerMock; + } +} From e4973ad8dcc3b30ea2116d8b933e098ffee1e40f Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 19 Mar 2018 23:12:11 +0100 Subject: [PATCH 058/104] [Cache] Rely on mock for Doctrine ArrayCache --- phpunit.xml.dist | 1 + .../Tests/Adapter/DoctrineAdapterTest.php | 2 +- .../Cache/Tests/Fixtures/ArrayCache.php | 52 +++++++++++++++++++ .../Cache/Tests/Simple/DoctrineCacheTest.php | 2 +- src/Symfony/Component/Cache/phpunit.xml.dist | 1 + 5 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php diff --git a/phpunit.xml.dist b/phpunit.xml.dist index e44535a81a19e..59ec7725254f3 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -65,6 +65,7 @@ Cache\IntegrationTests Doctrine\Common\Cache Symfony\Component\Cache + Symfony\Component\Cache\Tests\Fixtures Symfony\Component\Cache\Traits Symfony\Component\Console Symfony\Component\HttpFoundation diff --git a/src/Symfony/Component/Cache/Tests/Adapter/DoctrineAdapterTest.php b/src/Symfony/Component/Cache/Tests/Adapter/DoctrineAdapterTest.php index 93ec9824388e1..8d4dfe285821e 100644 --- a/src/Symfony/Component/Cache/Tests/Adapter/DoctrineAdapterTest.php +++ b/src/Symfony/Component/Cache/Tests/Adapter/DoctrineAdapterTest.php @@ -11,8 +11,8 @@ namespace Symfony\Component\Cache\Tests\Adapter; -use Doctrine\Common\Cache\ArrayCache; use Symfony\Component\Cache\Adapter\DoctrineAdapter; +use Symfony\Component\Cache\Tests\Fixtures\ArrayCache; /** * @group time-sensitive diff --git a/src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php b/src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php new file mode 100644 index 0000000000000..1a6157e822117 --- /dev/null +++ b/src/Symfony/Component/Cache/Tests/Fixtures/ArrayCache.php @@ -0,0 +1,52 @@ +doContains($id) ? $this->data[$id][0] : false; + } + + protected function doContains($id) + { + if (!isset($this->data[$id])) { + return false; + } + + $expiry = $this->data[$id][1]; + + return !$expiry || time() <= $expiry || !$this->doDelete($id); + } + + protected function doSave($id, $data, $lifeTime = 0) + { + $this->data[$id] = array($data, $lifeTime ? time() + $lifeTime : false); + + return true; + } + + protected function doDelete($id) + { + unset($this->data[$id]); + + return true; + } + + protected function doFlush() + { + $this->data = array(); + + return true; + } + + protected function doGetStats() + { + return null; + } +} diff --git a/src/Symfony/Component/Cache/Tests/Simple/DoctrineCacheTest.php b/src/Symfony/Component/Cache/Tests/Simple/DoctrineCacheTest.php index 0a185297ab453..127c96858cbe3 100644 --- a/src/Symfony/Component/Cache/Tests/Simple/DoctrineCacheTest.php +++ b/src/Symfony/Component/Cache/Tests/Simple/DoctrineCacheTest.php @@ -11,8 +11,8 @@ namespace Symfony\Component\Cache\Tests\Simple; -use Doctrine\Common\Cache\ArrayCache; use Symfony\Component\Cache\Simple\DoctrineCache; +use Symfony\Component\Cache\Tests\Fixtures\ArrayCache; /** * @group time-sensitive diff --git a/src/Symfony/Component/Cache/phpunit.xml.dist b/src/Symfony/Component/Cache/phpunit.xml.dist index 6b5c79331d14f..9b3c30d76fc38 100644 --- a/src/Symfony/Component/Cache/phpunit.xml.dist +++ b/src/Symfony/Component/Cache/phpunit.xml.dist @@ -39,6 +39,7 @@ Cache\IntegrationTests Doctrine\Common\Cache Symfony\Component\Cache + Symfony\Component\Cache\Tests\Fixtures Symfony\Component\Cache\Traits From ed028fc4f491b2b2606b1f155614e59bbce3f606 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 19 Mar 2018 23:30:33 +0100 Subject: [PATCH 059/104] [Form] fix tests and deps --- src/Symfony/Bridge/Twig/composer.json | 4 ++-- .../Component/Form/Tests/AbstractBootstrap4LayoutTest.php | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Bridge/Twig/composer.json b/src/Symfony/Bridge/Twig/composer.json index 8a531dcc62f30..40c6767dbb1e6 100644 --- a/src/Symfony/Bridge/Twig/composer.json +++ b/src/Symfony/Bridge/Twig/composer.json @@ -23,7 +23,7 @@ "symfony/asset": "~2.8|~3.0|~4.0", "symfony/dependency-injection": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/form": "^3.4.5|^4.0.5", + "symfony/form": "^3.4.7|^4.0.7", "symfony/http-foundation": "^3.3.11|~4.0", "symfony/http-kernel": "~3.2|~4.0", "symfony/polyfill-intl-icu": "~1.0", @@ -41,7 +41,7 @@ "symfony/workflow": "~3.3|~4.0" }, "conflict": { - "symfony/form": "<3.4.5|<4.0.5,>=4.0", + "symfony/form": "<3.4.7|<4.0.7,>=4.0", "symfony/console": "<3.4" }, "suggest": { diff --git a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php index 6e448c413ac3a..beabaa21cdb1a 100644 --- a/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php +++ b/src/Symfony/Component/Form/Tests/AbstractBootstrap4LayoutTest.php @@ -166,10 +166,10 @@ public function testErrors() ./span[@class="mb-0 d-block"] [./span[.="[trans]Error[/trans]"]] [./span[.="[trans]Error 1[/trans]"]] - + /following-sibling::span[@class="mb-0 d-block"] [./span[.="[trans]Error[/trans]"]] - [./span[.="[trans]Error 2[/trans]"]] + [./span[.="[trans]Error 2[/trans]"]] ] [count(./span)=2] ' From 01c9e3ce70c5524c43aa451a5ef108ca61b3456a Mon Sep 17 00:00:00 2001 From: Karolis Date: Sun, 18 Mar 2018 00:19:09 +0000 Subject: [PATCH 060/104] allow html5 compatible rendering of forms with null names --- .../Bridge/Twig/Resources/views/Form/form_div_layout.html.twig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig index a5b72c17622c1..922b3ec7a7cee 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig @@ -275,7 +275,7 @@ {%- else -%} {% set form_method = "POST" %} {%- endif -%} -
+ {%- if form_method != method -%} {%- endif -%} From e17a63457aa0e9b2598173a16da5ffcf0a8f7198 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Tue, 27 Feb 2018 19:47:13 +0100 Subject: [PATCH 061/104] [Finder] Fixed leading/trailing / in filename Without this patch, we go this: ``` --- Expected +++ Actual @@ @@ Array ( - 0 => '/tmp/symfony_finder/foo bar' - 1 => '/tmp/symfony_finder/foo/bar.tmp' - 2 => '/tmp/symfony_finder/test.php' - 3 => '/tmp/symfony_finder/test.py' + 0 => '///tmp/symfony_finder///foo bar' + 1 => '///tmp/symfony_finder///foo/bar.tmp' + 2 => '///tmp/symfony_finder///test.php' + 3 => '///tmp/symfony_finder///test.py' ) ``` --- src/Symfony/Component/Finder/SplFileInfo.php | 2 +- .../Component/Finder/Tests/FinderTest.php | 18 ++++++++++++++++-- .../Tests/Iterator/FilePathsIteratorTest.php | 2 +- 3 files changed, 18 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/Finder/SplFileInfo.php b/src/Symfony/Component/Finder/SplFileInfo.php index 19f95e26be69a..2cf3a27fa9f6b 100644 --- a/src/Symfony/Component/Finder/SplFileInfo.php +++ b/src/Symfony/Component/Finder/SplFileInfo.php @@ -28,7 +28,7 @@ class SplFileInfo extends \SplFileInfo */ public function __construct($file, $relativePath, $relativePathname) { - parent::__construct($file); + parent::__construct(realpath($file) ?: $file); $this->relativePath = $relativePath; $this->relativePathname = $relativePathname; } diff --git a/src/Symfony/Component/Finder/Tests/FinderTest.php b/src/Symfony/Component/Finder/Tests/FinderTest.php index 6e13e9c3832d3..dd90c4e844b86 100644 --- a/src/Symfony/Component/Finder/Tests/FinderTest.php +++ b/src/Symfony/Component/Finder/Tests/FinderTest.php @@ -48,6 +48,20 @@ public function testFiles() $this->assertIterator($this->toAbsolute(array('foo/bar.tmp', 'test.php', 'test.py', 'foo bar')), $finder->in(self::$tmpDir)->getIterator()); } + public function testRemoveTrailingSlash() + { + if ('\\' === \DIRECTORY_SEPARATOR) { + $this->markTestSkipped('This test cannot be run on Windows.'); + } + + $finder = $this->buildFinder(); + + $expected = $this->toAbsolute(array('foo/bar.tmp', 'test.php', 'test.py', 'foo bar')); + $in = '//'.realpath(self::$tmpDir).'//'; + + $this->assertIterator($expected, $finder->in($in)->files()->getIterator()); + } + public function testDepth() { $finder = $this->buildFinder(); @@ -504,8 +518,8 @@ public function testMultipleLocationsWithSubDirectories() $finder->in($locations)->depth('< 10')->name('*.neon'); $expected = array( - __DIR__.'/Fixtures/one'.DIRECTORY_SEPARATOR.'b'.DIRECTORY_SEPARATOR.'c.neon', - __DIR__.'/Fixtures/one'.DIRECTORY_SEPARATOR.'b'.DIRECTORY_SEPARATOR.'d.neon', + __DIR__.DIRECTORY_SEPARATOR.'Fixtures'.DIRECTORY_SEPARATOR.'one'.DIRECTORY_SEPARATOR.'b'.DIRECTORY_SEPARATOR.'c.neon', + __DIR__.DIRECTORY_SEPARATOR.'Fixtures'.DIRECTORY_SEPARATOR.'one'.DIRECTORY_SEPARATOR.'b'.DIRECTORY_SEPARATOR.'d.neon', ); $this->assertIterator($expected, $finder); diff --git a/src/Symfony/Component/Finder/Tests/Iterator/FilePathsIteratorTest.php b/src/Symfony/Component/Finder/Tests/Iterator/FilePathsIteratorTest.php index fdf810bebd3db..3c805086afec2 100644 --- a/src/Symfony/Component/Finder/Tests/Iterator/FilePathsIteratorTest.php +++ b/src/Symfony/Component/Finder/Tests/Iterator/FilePathsIteratorTest.php @@ -31,7 +31,7 @@ public function testSubPath($baseDir, array $paths, array $subPaths, array $subP public function getSubPathData() { - $tmpDir = sys_get_temp_dir().'/symfony_finder'; + $tmpDir = sys_get_temp_dir().DIRECTORY_SEPARATOR.'symfony_finder'; return array( array( From f7f81892a0df39e27d75a47cec74806a49b93f0f Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Tue, 20 Mar 2018 15:40:39 +0100 Subject: [PATCH 062/104] Fix check of color support on Windows If the stream is redirected, the script should behave the same on Windows and on POSIX systems. --- .../Component/Console/Output/StreamOutput.php | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Component/Console/Output/StreamOutput.php b/src/Symfony/Component/Console/Output/StreamOutput.php index d36e6f9560159..182622a29a5c8 100644 --- a/src/Symfony/Component/Console/Output/StreamOutput.php +++ b/src/Symfony/Component/Console/Output/StreamOutput.php @@ -81,17 +81,26 @@ protected function doWrite($message, $newline) * * Colorization is disabled if not supported by the stream: * - * - Windows != 10.0.10586 without Ansicon, ConEmu or Mintty + * - the stream is redirected (eg php file.php >log) + * - Windows without VT100 support, Ansicon, ConEmu, Mintty * - non tty consoles * * @return bool true if the stream supports colorization, false otherwise */ protected function hasColorSupport() { + if (function_exists('stream_isatty') && !@stream_isatty($this->stream)) { + return false; + } if (DIRECTORY_SEPARATOR === '\\') { + if (function_exists('sapi_windows_vt100_support')) { + $vt100Enabled = @sapi_windows_vt100_support($this->stream); + } else { + $vt100Enabled = '10.0.10586' === PHP_WINDOWS_VERSION_MAJOR.'.'.PHP_WINDOWS_VERSION_MINOR.'.'.PHP_WINDOWS_VERSION_BUILD; + } + return - function_exists('sapi_windows_vt100_support') && @sapi_windows_vt100_support($this->stream) - || '10.0.10586' === PHP_WINDOWS_VERSION_MAJOR.'.'.PHP_WINDOWS_VERSION_MINOR.'.'.PHP_WINDOWS_VERSION_BUILD + $vt100Enabled || false !== getenv('ANSICON') || 'ON' === getenv('ConEmuANSI') || 'xterm' === getenv('TERM'); From 8b8541e680ebe31304b76dbd63dd28da1320ec98 Mon Sep 17 00:00:00 2001 From: Daniel Bannert Date: Wed, 21 Mar 2018 00:37:33 +0100 Subject: [PATCH 063/104] [PHPunit] suite variable should be used --- src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerForV7.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerForV7.php b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerForV7.php index 699d4bde35cc4..1d29a88441b1f 100644 --- a/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerForV7.php +++ b/src/Symfony/Bridge/PhpUnit/Legacy/CoverageListenerForV7.php @@ -36,6 +36,6 @@ public function __construct(callable $sutFqcnResolver = null, $warningOnSutNotFo public function startTestSuite(TestSuite $suite): void { - $this->trait->startTest($test); + $this->trait->startTest($suite); } } From 60730666abf806b2a95e25e0f699b1da672f841a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gr=C3=A9goire=20Pineau?= Date: Wed, 21 Mar 2018 10:56:17 +0100 Subject: [PATCH 064/104] [FrameworkBundle] Partially revert HttpCache is not longer abstract (4d075da) --- src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php index 8455baafc7b3f..57ff1c7c40b84 100644 --- a/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php +++ b/src/Symfony/Bundle/FrameworkBundle/HttpCache/HttpCache.php @@ -23,7 +23,7 @@ * * @author Fabien Potencier */ -class HttpCache extends BaseHttpCache +abstract class HttpCache extends BaseHttpCache { protected $cacheDir; protected $kernel; From 4217cc1348f03b23aae4946155ad3e77d8609f81 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Wed, 21 Mar 2018 18:01:56 +0100 Subject: [PATCH 065/104] no type errors with invalid submitted data types --- .../Core/EventListener/FixUrlProtocolListener.php | 2 +- .../Form/Tests/Extension/Core/Type/UrlTypeTest.php | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php b/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php index c18ca8a8b47af..9e7761705e531 100644 --- a/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php +++ b/src/Symfony/Component/Form/Extension/Core/EventListener/FixUrlProtocolListener.php @@ -36,7 +36,7 @@ public function onSubmit(FormEvent $event) { $data = $event->getData(); - if ($this->defaultProtocol && $data && !preg_match('~^[\w+.-]+://~', $data)) { + if ($this->defaultProtocol && $data && is_string($data) && !preg_match('~^[\w+.-]+://~', $data)) { $event->setData($this->defaultProtocol.'://'.$data); } } diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/UrlTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/UrlTypeTest.php index 2b4783e4d32f8..2be6b520d766a 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/UrlTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/UrlTypeTest.php @@ -82,4 +82,12 @@ public function testThrowExceptionIfDefaultProtocolIsInvalid() 'default_protocol' => array(), )); } + + public function testSubmitWithNonStringDataDoesNotBreakTheFixUrlProtocolListener() + { + $form = $this->factory->create(static::TESTED_TYPE); + $form->submit(array('domain.com', 'www.domain.com')); + + $this->assertSame(array('domain.com', 'www.domain.com'), $form->getData()); + } } From 2d5ce0dd2af67f9274c2a84f08e56134bb987c22 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Dunglas?= Date: Wed, 21 Mar 2018 20:07:03 +0100 Subject: [PATCH 066/104] [Process] Remove a useless cast --- src/Symfony/Component/Process/Process.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index 83c8a0726de35..5660daaeb0810 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -1441,7 +1441,7 @@ private function doSignal(int $signal, bool $throwException): bool } } - $this->latestSignal = (int) $signal; + $this->latestSignal = $signal; $this->fallbackStatus['signaled'] = true; $this->fallbackStatus['exitcode'] = -1; $this->fallbackStatus['termsig'] = $this->latestSignal; From 2cfc57315e597f08c3b4ad83fb7bde44c19ecb7a Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 21 Mar 2018 20:24:29 +0100 Subject: [PATCH 067/104] [WebProfilerBundle] use the router to resolve file links --- .../Resources/config/profiler.xml | 15 ++++++++++++++- src/Symfony/Component/Routing/Router.php | 8 ++++++-- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml b/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml index 85634882bd416..f56b1f2f50d1a 100644 --- a/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml +++ b/src/Symfony/Bundle/WebProfilerBundle/Resources/config/profiler.xml @@ -56,7 +56,20 @@ %debug.file_link_format% %kernel.project_dir% - /_profiler/open?file=%%f&line=%%l#line%%l + + + + + + + + _profiler_open_file + + + ?file=%%f&line=%%l#line%%l + + + diff --git a/src/Symfony/Component/Routing/Router.php b/src/Symfony/Component/Routing/Router.php index 0de921853f875..ed56332ecd5f5 100644 --- a/src/Symfony/Component/Routing/Router.php +++ b/src/Symfony/Component/Routing/Router.php @@ -302,7 +302,9 @@ function (ConfigCacheInterface $cache) { } ); - require_once $cache->getPath(); + if (!class_exists($this->options['matcher_cache_class'], false)) { + require_once $cache->getPath(); + } return $this->matcher = new $this->options['matcher_cache_class']($this->context); } @@ -334,7 +336,9 @@ function (ConfigCacheInterface $cache) { } ); - require_once $cache->getPath(); + if (!class_exists($this->options['generator_cache_class'], false)) { + require_once $cache->getPath(); + } $this->generator = new $this->options['generator_cache_class']($this->context, $this->logger); } From 4e515e1f54a85dc0c9983c0144287edfcbdd263e Mon Sep 17 00:00:00 2001 From: Indra Gunawan Date: Wed, 21 Mar 2018 23:54:21 +0700 Subject: [PATCH 068/104] [Validator] sync validator translation id --- .../Validator/Resources/translations/validators.id.xlf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.id.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.id.xlf index ce8db48639efc..535bdac08238c 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.id.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.id.xlf @@ -314,6 +314,10 @@ This is not a valid Business Identifier Code (BIC). Ini bukan Business Identifier Code (BIC) yang sah. + + Error + Galat + From 74afff88885777d86714460fa88ae1167dc4cdcf Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 22 Mar 2018 11:00:28 +0100 Subject: [PATCH 069/104] [DI] Cleanup remainings from autoregistration --- .../Compiler/AutowirePass.php | 29 ++++--------------- .../Tests/Compiler/AutowirePassTest.php | 2 +- 2 files changed, 7 insertions(+), 24 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php index cd6ad8721827e..e379a8a21853d 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -29,7 +29,6 @@ class AutowirePass extends AbstractRecursivePass { private $types; private $ambiguousServiceTypes = array(); - private $autowired = array(); private $lastFailure; private $throwOnAutowiringException; @@ -48,7 +47,6 @@ public function process(ContainerBuilder $container) } finally { $this->types = null; $this->ambiguousServiceTypes = array(); - $this->autowired = array(); } } @@ -73,7 +71,7 @@ protected function processValue($value, $isRoot = false) private function doProcessValue($value, $isRoot = false) { if ($value instanceof TypedReference) { - if ($ref = $this->getAutowiredReference($value, $value->getRequiringClass() ? sprintf('for "%s" in "%s"', $value->getType(), $value->getRequiringClass()) : '')) { + if ($ref = $this->getAutowiredReference($value)) { return $ref; } $this->container->log($this, $this->createTypeNotFoundMessage($value, 'it')); @@ -190,7 +188,7 @@ private function autowireMethod(\ReflectionFunctionAbstract $reflectionMethod, a continue; } - if (!$value = $this->getAutowiredReference($ref = new TypedReference($type, $type, !$parameter->isOptional() ? $class : ''), 'for '.sprintf('argument "$%s" of method "%s()"', $parameter->name, $class.'::'.$method))) { + if (!$value = $this->getAutowiredReference($ref = new TypedReference($type, $type, !$parameter->isOptional() ? $class : ''))) { $failureMessage = $this->createTypeNotFoundMessage($ref, sprintf('argument "$%s" of method "%s()"', $parameter->name, $class !== $this->currentId ? $class.'::'.$method : $method)); if ($parameter->isDefaultValueAvailable()) { @@ -224,7 +222,7 @@ private function autowireMethod(\ReflectionFunctionAbstract $reflectionMethod, a /** * @return TypedReference|null A reference to the service matching the given type, if any */ - private function getAutowiredReference(TypedReference $reference, $deprecationMessage) + private function getAutowiredReference(TypedReference $reference) { $this->lastFailure = null; $type = $reference->getType(); @@ -232,22 +230,6 @@ private function getAutowiredReference(TypedReference $reference, $deprecationMe if ($type !== (string) $reference || ($this->container->has($type) && !$this->container->findDefinition($type)->isAbstract())) { return $reference; } - - if (!$reference->canBeAutoregistered()) { - return; - } - - if (null === $this->types) { - $this->populateAvailableTypes(); - } - - if (isset($this->types[$type]) || isset($this->ambiguousServiceTypes[$type])) { - return; - } - - if (isset($this->autowired[$type])) { - return $this->autowired[$type] ? new TypedReference($this->autowired[$type], $type) : null; - } } /** @@ -351,6 +333,9 @@ private function createTypeAlternatives(TypedReference $reference) if ($message = $this->getAliasesSuggestionForType($type = $reference->getType())) { return ' '.$message; } + if (null === $this->types) { + $this->populateAvailableTypes(); + } $servicesAndAliases = $this->container->getServiceIds(); if (!$this->container->has($type) && false !== $key = array_search(strtolower($type), array_map('strtolower', $servicesAndAliases))) { @@ -359,8 +344,6 @@ private function createTypeAlternatives(TypedReference $reference) $message = sprintf('one of these existing services: "%s"', implode('", "', $this->ambiguousServiceTypes[$type])); } elseif (isset($this->types[$type])) { $message = sprintf('the existing "%s" service', $this->types[$type]); - } elseif ($reference->getRequiringClass() && !$reference->canBeAutoregistered()) { - return ' It cannot be auto-registered because it is from a different root namespace.'; } else { return; } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php index fb07f47932265..3c4b0a04cf58a 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php @@ -697,7 +697,7 @@ public function provideNotWireableCalls() { return array( array('setNotAutowireable', 'Cannot autowire service "foo": argument "$n" of method "Symfony\Component\DependencyInjection\Tests\Compiler\NotWireable::setNotAutowireable()" has type "Symfony\Component\DependencyInjection\Tests\Compiler\NotARealClass" but this class was not found.'), - array('setDifferentNamespace', 'Cannot autowire service "foo": argument "$n" of method "Symfony\Component\DependencyInjection\Tests\Compiler\NotWireable::setDifferentNamespace()" references class "stdClass" but no such service exists. It cannot be auto-registered because it is from a different root namespace.'), + array('setDifferentNamespace', 'Cannot autowire service "foo": argument "$n" of method "Symfony\Component\DependencyInjection\Tests\Compiler\NotWireable::setDifferentNamespace()" references class "stdClass" but no such service exists.'), array(null, 'Invalid service "foo": method "Symfony\Component\DependencyInjection\Tests\Compiler\NotWireable::setProtectedMethod()" must be public.'), ); } From 5e922db4de0c25c9cc062508f43afc37a5608449 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Thu, 22 Mar 2018 11:04:59 +0100 Subject: [PATCH 070/104] [DI] Dont tell about autoregistration in strict autowiring mode --- .../Compiler/AutowirePass.php | 24 +++++++++++++------ 1 file changed, 17 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php index 59fa1b502c3b1..b29bba5efdd21 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -30,7 +30,7 @@ class AutowirePass extends AbstractRecursivePass { private $definedTypes = array(); private $types; - private $ambiguousServiceTypes = array(); + private $ambiguousServiceTypes; private $autowired = array(); private $lastFailure; private $throwOnAutowiringException; @@ -71,7 +71,7 @@ public function process(ContainerBuilder $container) } finally { $this->definedTypes = array(); $this->types = null; - $this->ambiguousServiceTypes = array(); + $this->ambiguousServiceTypes = null; $this->autowired = array(); } } @@ -286,7 +286,7 @@ private function getAutowiredReference(TypedReference $reference, $deprecationMe } if (null === $this->types) { - $this->populateAvailableTypes(); + $this->populateAvailableTypes($this->strictMode); } if (isset($this->definedTypes[$type])) { @@ -322,12 +322,15 @@ private function getAutowiredReference(TypedReference $reference, $deprecationMe /** * Populates the list of available types. */ - private function populateAvailableTypes() + private function populateAvailableTypes($onlyAutowiringTypes = false) { $this->types = array(); + if (!$onlyAutowiringTypes) { + $this->ambiguousServiceTypes = array(); + } foreach ($this->container->getDefinitions() as $id => $definition) { - $this->populateAvailableType($id, $definition); + $this->populateAvailableType($id, $definition, $onlyAutowiringTypes); } } @@ -337,7 +340,7 @@ private function populateAvailableTypes() * @param string $id * @param Definition $definition */ - private function populateAvailableType($id, Definition $definition) + private function populateAvailableType($id, Definition $definition, $onlyAutowiringTypes) { // Never use abstract services if ($definition->isAbstract()) { @@ -350,6 +353,10 @@ private function populateAvailableType($id, Definition $definition) unset($this->ambiguousServiceTypes[$type]); } + if ($onlyAutowiringTypes) { + return; + } + if (preg_match('/^\d+_[^~]++~[._a-zA-Z\d]{7}$/', $id) || $definition->isDeprecated() || !$reflectionClass = $this->container->getReflectionClass($definition->getClass(), false)) { return; } @@ -479,12 +486,15 @@ private function createTypeAlternatives(TypedReference $reference) if ($message = $this->getAliasesSuggestionForType($type = $reference->getType())) { return ' '.$message; } + if (null === $this->ambiguousServiceTypes) { + $this->populateAvailableTypes(); + } if (isset($this->ambiguousServiceTypes[$type])) { $message = sprintf('one of these existing services: "%s"', implode('", "', $this->ambiguousServiceTypes[$type])); } elseif (isset($this->types[$type])) { $message = sprintf('the existing "%s" service', $this->types[$type]); - } elseif ($reference->getRequiringClass() && !$reference->canBeAutoregistered()) { + } elseif ($reference->getRequiringClass() && !$reference->canBeAutoregistered() && !$this->strictMode) { return ' It cannot be auto-registered because it is from a different root namespace.'; } else { return; From f276989b489d8975d06aee7e43ead70f326d3bc0 Mon Sep 17 00:00:00 2001 From: ismail1432 Date: Sun, 18 Mar 2018 14:56:17 +0100 Subject: [PATCH 071/104] [Ldap] cast to string when checking empty passwords --- .../Provider/LdapBindAuthenticationProvider.php | 2 +- .../LdapBindAuthenticationProviderTest.php | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Security/Core/Authentication/Provider/LdapBindAuthenticationProvider.php b/src/Symfony/Component/Security/Core/Authentication/Provider/LdapBindAuthenticationProvider.php index 613c9ee00d423..a43775bd8ca5d 100644 --- a/src/Symfony/Component/Security/Core/Authentication/Provider/LdapBindAuthenticationProvider.php +++ b/src/Symfony/Component/Security/Core/Authentication/Provider/LdapBindAuthenticationProvider.php @@ -71,7 +71,7 @@ protected function checkAuthentication(UserInterface $user, UsernamePasswordToke $username = $token->getUsername(); $password = $token->getCredentials(); - if ('' === $password) { + if ('' === (string) $password) { throw new BadCredentialsException('The presented password must not be empty.'); } diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php index 779aefeea0696..f6f67595ff6e3 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php @@ -39,6 +39,23 @@ public function testEmptyPasswordShouldThrowAnException() $reflection->invoke($provider, new User('foo', null), new UsernamePasswordToken('foo', '', 'key')); } + /** + * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException + * @expectedExceptionMessage The presented password must not be empty. + */ + public function testNullPasswordShouldThrowAnException() + { + $userProvider = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserProviderInterface')->getMock(); + $ldap = $this->getMockBuilder('Symfony\Component\Ldap\LdapClientInterface')->getMock(); + $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); + + $provider = new LdapBindAuthenticationProvider($userProvider, $userChecker, 'key', $ldap); + $reflection = new \ReflectionMethod($provider, 'checkAuthentication'); + $reflection->setAccessible(true); + + $reflection->invoke($provider, new User('foo', null), new UsernamePasswordToken('foo', null, 'key')); + } + /** * @expectedException \Symfony\Component\Security\Core\Exception\BadCredentialsException * @expectedExceptionMessage The presented password is invalid. From 948b4cfe3e15841a7023610a26a428043f914b22 Mon Sep 17 00:00:00 2001 From: Pascal Luna Date: Mon, 19 Mar 2018 15:17:28 +0000 Subject: [PATCH 072/104] [Routing] Fixed the importing of files using glob patterns that match multiple resources --- .../Configurator/RoutingConfigurator.php | 12 +++++- .../Routing/Loader/XmlFileLoader.php | 43 +++++++++++-------- .../Routing/Loader/YamlFileLoader.php | 43 +++++++++++-------- .../Routing/Tests/Fixtures/glob/bar.xml | 8 ++++ .../Routing/Tests/Fixtures/glob/bar.yml | 4 ++ .../Routing/Tests/Fixtures/glob/baz.xml | 8 ++++ .../Routing/Tests/Fixtures/glob/baz.yml | 4 ++ .../Tests/Fixtures/glob/import_multiple.xml | 8 ++++ .../Tests/Fixtures/glob/import_multiple.yml | 2 + .../Tests/Fixtures/glob/import_single.xml | 8 ++++ .../Tests/Fixtures/glob/import_single.yml | 2 + .../Routing/Tests/Fixtures/glob/php_dsl.php | 7 +++ .../Tests/Fixtures/glob/php_dsl_bar.php | 12 ++++++ .../Tests/Fixtures/glob/php_dsl_baz.php | 12 ++++++ .../Tests/Loader/PhpFileLoaderTest.php | 13 ++++++ .../Tests/Loader/XmlFileLoaderTest.php | 21 +++++++++ .../Tests/Loader/YamlFileLoaderTest.php | 21 +++++++++ 17 files changed, 190 insertions(+), 38 deletions(-) create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.xml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.yml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.xml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.yml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.xml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.yml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.xml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.yml create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl.php create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_bar.php create mode 100644 src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_baz.php diff --git a/src/Symfony/Component/Routing/Loader/Configurator/RoutingConfigurator.php b/src/Symfony/Component/Routing/Loader/Configurator/RoutingConfigurator.php index 4591a86ba5cf9..d992cef843975 100644 --- a/src/Symfony/Component/Routing/Loader/Configurator/RoutingConfigurator.php +++ b/src/Symfony/Component/Routing/Loader/Configurator/RoutingConfigurator.php @@ -39,9 +39,17 @@ public function __construct(RouteCollection $collection, PhpFileLoader $loader, final public function import($resource, $type = null, $ignoreErrors = false) { $this->loader->setCurrentDir(dirname($this->path)); - $subCollection = $this->loader->import($resource, $type, $ignoreErrors, $this->file); + $imported = $this->loader->import($resource, $type, $ignoreErrors, $this->file); + if (!is_array($imported)) { + return new ImportConfigurator($this->collection, $imported); + } - return new ImportConfigurator($this->collection, $subCollection); + $mergedCollection = new RouteCollection(); + foreach ($imported as $subCollection) { + $mergedCollection->addCollection($subCollection); + } + + return new ImportConfigurator($this->collection, $mergedCollection); } /** diff --git a/src/Symfony/Component/Routing/Loader/XmlFileLoader.php b/src/Symfony/Component/Routing/Loader/XmlFileLoader.php index 3a77890703ce2..f3f66055e675a 100644 --- a/src/Symfony/Component/Routing/Loader/XmlFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/XmlFileLoader.php @@ -146,26 +146,33 @@ protected function parseImport(RouteCollection $collection, \DOMElement $node, $ $this->setCurrentDir(dirname($path)); - $subCollection = $this->import($resource, ('' !== $type ? $type : null), false, $file); - /* @var $subCollection RouteCollection */ - $subCollection->addPrefix($prefix); - if (null !== $host) { - $subCollection->setHost($host); - } - if (null !== $condition) { - $subCollection->setCondition($condition); - } - if (null !== $schemes) { - $subCollection->setSchemes($schemes); - } - if (null !== $methods) { - $subCollection->setMethods($methods); + $imported = $this->import($resource, ('' !== $type ? $type : null), false, $file); + + if (!is_array($imported)) { + $imported = array($imported); } - $subCollection->addDefaults($defaults); - $subCollection->addRequirements($requirements); - $subCollection->addOptions($options); - $collection->addCollection($subCollection); + foreach ($imported as $subCollection) { + /* @var $subCollection RouteCollection */ + $subCollection->addPrefix($prefix); + if (null !== $host) { + $subCollection->setHost($host); + } + if (null !== $condition) { + $subCollection->setCondition($condition); + } + if (null !== $schemes) { + $subCollection->setSchemes($schemes); + } + if (null !== $methods) { + $subCollection->setMethods($methods); + } + $subCollection->addDefaults($defaults); + $subCollection->addRequirements($requirements); + $subCollection->addOptions($options); + + $collection->addCollection($subCollection); + } } /** diff --git a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php index 037d581d05eab..f59f9097f6c6d 100644 --- a/src/Symfony/Component/Routing/Loader/YamlFileLoader.php +++ b/src/Symfony/Component/Routing/Loader/YamlFileLoader.php @@ -158,26 +158,33 @@ protected function parseImport(RouteCollection $collection, array $config, $path $this->setCurrentDir(dirname($path)); - $subCollection = $this->import($config['resource'], $type, false, $file); - /* @var $subCollection RouteCollection */ - $subCollection->addPrefix($prefix); - if (null !== $host) { - $subCollection->setHost($host); - } - if (null !== $condition) { - $subCollection->setCondition($condition); - } - if (null !== $schemes) { - $subCollection->setSchemes($schemes); - } - if (null !== $methods) { - $subCollection->setMethods($methods); + $imported = $this->import($config['resource'], $type, false, $file); + + if (!is_array($imported)) { + $imported = array($imported); } - $subCollection->addDefaults($defaults); - $subCollection->addRequirements($requirements); - $subCollection->addOptions($options); - $collection->addCollection($subCollection); + foreach ($imported as $subCollection) { + /* @var $subCollection RouteCollection */ + $subCollection->addPrefix($prefix); + if (null !== $host) { + $subCollection->setHost($host); + } + if (null !== $condition) { + $subCollection->setCondition($condition); + } + if (null !== $schemes) { + $subCollection->setSchemes($schemes); + } + if (null !== $methods) { + $subCollection->setMethods($methods); + } + $subCollection->addDefaults($defaults); + $subCollection->addRequirements($requirements); + $subCollection->addOptions($options); + + $collection->addCollection($subCollection); + } } /** diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.xml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.xml new file mode 100644 index 0000000000000..0d31eeb178fc9 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.yml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.yml new file mode 100644 index 0000000000000..ba3bc2294b340 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/bar.yml @@ -0,0 +1,4 @@ +bar_route: + path: /bar + defaults: + _controller: AppBundle:Bar:view diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.xml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.xml new file mode 100644 index 0000000000000..3abba1acede10 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.yml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.yml new file mode 100644 index 0000000000000..f7d8c67f266a8 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/baz.yml @@ -0,0 +1,4 @@ +baz_route: + path: /baz + defaults: + _controller: AppBundle:Baz:view diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.xml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.xml new file mode 100644 index 0000000000000..ca6b1b5a927bb --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.yml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.yml new file mode 100644 index 0000000000000..d1ae5854a51c1 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_multiple.yml @@ -0,0 +1,2 @@ +_static: + resource: ba?.yml diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.xml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.xml new file mode 100644 index 0000000000000..15f5698ccd712 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.xml @@ -0,0 +1,8 @@ + + + + + diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.yml b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.yml new file mode 100644 index 0000000000000..f56ddbd0be9f7 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/import_single.yml @@ -0,0 +1,2 @@ +_static: + resource: b?r.yml diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl.php b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl.php new file mode 100644 index 0000000000000..897fa11f282af --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl.php @@ -0,0 +1,7 @@ +import('php_dsl_ba?.php'); +}; diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_bar.php b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_bar.php new file mode 100644 index 0000000000000..e2b91b17da490 --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_bar.php @@ -0,0 +1,12 @@ +collection(); + + $collection->add('bar_route', '/bar') + ->defaults(array('_controller' => 'AppBundle:Bar:view')); + + return $collection; +}; diff --git a/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_baz.php b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_baz.php new file mode 100644 index 0000000000000..ca8f188a7633e --- /dev/null +++ b/src/Symfony/Component/Routing/Tests/Fixtures/glob/php_dsl_baz.php @@ -0,0 +1,12 @@ +collection(); + + $collection->add('baz_route', '/baz') + ->defaults(array('_controller' => 'AppBundle:Baz:view')); + + return $collection; +}; diff --git a/src/Symfony/Component/Routing/Tests/Loader/PhpFileLoaderTest.php b/src/Symfony/Component/Routing/Tests/Loader/PhpFileLoaderTest.php index 608d84ed7a20f..0dcf5d4941bef 100644 --- a/src/Symfony/Component/Routing/Tests/Loader/PhpFileLoaderTest.php +++ b/src/Symfony/Component/Routing/Tests/Loader/PhpFileLoaderTest.php @@ -117,4 +117,17 @@ public function testRoutingConfigurator() $this->assertEquals($expectedCollection, $routeCollection); } + + public function testRoutingConfiguratorCanImportGlobPatterns() + { + $locator = new FileLocator(array(__DIR__.'/../Fixtures/glob')); + $loader = new PhpFileLoader($locator); + $routeCollection = $loader->load('php_dsl.php'); + + $route = $routeCollection->get('bar_route'); + $this->assertSame('AppBundle:Bar:view', $route->getDefault('_controller')); + + $route = $routeCollection->get('baz_route'); + $this->assertSame('AppBundle:Baz:view', $route->getDefault('_controller')); + } } diff --git a/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php b/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php index 221434b0068aa..21fc3400f249e 100644 --- a/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php +++ b/src/Symfony/Component/Routing/Tests/Loader/XmlFileLoaderTest.php @@ -361,4 +361,25 @@ public function testImportWithOverriddenController() $loader = new XmlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/controller'))); $loader->load('import_override_defaults.xml'); } + + public function testImportRouteWithGlobMatchingSingleFile() + { + $loader = new XmlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/glob'))); + $routeCollection = $loader->load('import_single.xml'); + + $route = $routeCollection->get('bar_route'); + $this->assertSame('AppBundle:Bar:view', $route->getDefault('_controller')); + } + + public function testImportRouteWithGlobMatchingMultipleFiles() + { + $loader = new XmlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/glob'))); + $routeCollection = $loader->load('import_multiple.xml'); + + $route = $routeCollection->get('bar_route'); + $this->assertSame('AppBundle:Bar:view', $route->getDefault('_controller')); + + $route = $routeCollection->get('baz_route'); + $this->assertSame('AppBundle:Baz:view', $route->getDefault('_controller')); + } } diff --git a/src/Symfony/Component/Routing/Tests/Loader/YamlFileLoaderTest.php b/src/Symfony/Component/Routing/Tests/Loader/YamlFileLoaderTest.php index 1f7fd43897ae3..822bddf1f0c34 100644 --- a/src/Symfony/Component/Routing/Tests/Loader/YamlFileLoaderTest.php +++ b/src/Symfony/Component/Routing/Tests/Loader/YamlFileLoaderTest.php @@ -182,4 +182,25 @@ public function testImportWithOverriddenController() $loader = new YamlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/controller'))); $loader->load('import_override_defaults.yml'); } + + public function testImportRouteWithGlobMatchingSingleFile() + { + $loader = new YamlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/glob'))); + $routeCollection = $loader->load('import_single.yml'); + + $route = $routeCollection->get('bar_route'); + $this->assertSame('AppBundle:Bar:view', $route->getDefault('_controller')); + } + + public function testImportRouteWithGlobMatchingMultipleFiles() + { + $loader = new YamlFileLoader(new FileLocator(array(__DIR__.'/../Fixtures/glob'))); + $routeCollection = $loader->load('import_multiple.yml'); + + $route = $routeCollection->get('bar_route'); + $this->assertSame('AppBundle:Bar:view', $route->getDefault('_controller')); + + $route = $routeCollection->get('baz_route'); + $this->assertSame('AppBundle:Baz:view', $route->getDefault('_controller')); + } } From 7fd4d74493743556b7eed0496192ca628fc772b0 Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Thu, 22 Mar 2018 22:44:16 +0100 Subject: [PATCH 073/104] [Routing] fix tests --- src/Symfony/Component/Routing/composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Routing/composer.json b/src/Symfony/Component/Routing/composer.json index 2ad746ec53c24..4d820cc213882 100644 --- a/src/Symfony/Component/Routing/composer.json +++ b/src/Symfony/Component/Routing/composer.json @@ -19,7 +19,7 @@ "php": "^5.5.9|>=7.0.8" }, "require-dev": { - "symfony/config": "~2.8|~3.0|~4.0", + "symfony/config": "^3.3.1|~4.0", "symfony/http-foundation": "~2.8|~3.0|~4.0", "symfony/yaml": "~3.4|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", @@ -29,7 +29,7 @@ "psr/log": "~1.0" }, "conflict": { - "symfony/config": "<2.8", + "symfony/config": "<3.3.1", "symfony/dependency-injection": "<3.3", "symfony/yaml": "<3.4" }, From 599dbca3cde76e729deab6b0750a81eab32143e4 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Fri, 23 Mar 2018 21:53:39 +0100 Subject: [PATCH 074/104] [DI] Fix hardcoded cache dir for warmups --- .../DependencyInjection/Dumper/PhpDumper.php | 23 +++--- .../Tests/Fixtures/php/services9_as_files.txt | 76 ++++++++++--------- 2 files changed, 51 insertions(+), 48 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php index 4f2c4a15cb1af..a92e11e503c49 100644 --- a/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php +++ b/src/Symfony/Component/DependencyInjection/Dumper/PhpDumper.php @@ -241,7 +241,7 @@ public function dump(array $options = array()) 'container.build_hash' => '$hash', 'container.build_id' => '$id', 'container.build_time' => $time, -)); +), __DIR__.\\DIRECTORY_SEPARATOR.'Container{$hash}'); EOF; } else { @@ -789,7 +789,7 @@ protected function {$methodName}($lazyInitialization) } if ($this->getProxyDumper()->isProxyCandidate($definition)) { - $factoryCode = $asFile ? "\$this->load(__DIR__.'/%s.php', false)" : '$this->%s(false)'; + $factoryCode = $asFile ? "\$this->load('%s.php', false)" : '$this->%s(false)'; $code .= $this->getProxyDumper()->getProxyFactoryCode($definition, $id, sprintf($factoryCode, $methodName)); } @@ -963,7 +963,7 @@ public function __construct() EOF; if (null !== $this->targetDirRegex) { - $dir = $this->asFiles ? '$this->targetDirs[0] = \\dirname(__DIR__)' : '__DIR__'; + $dir = $this->asFiles ? '$this->targetDirs[0] = \\dirname($containerDir)' : '__DIR__'; $code .= <<targetDirMaxMatches}; ++\$i) { @@ -973,9 +973,10 @@ public function __construct() EOF; } if ($this->asFiles) { - $code = str_replace('$parameters', "\$buildParameters;\n private \$parameters", $code); - $code = str_replace('__construct()', '__construct(array $buildParameters = array())', $code); + $code = str_replace('$parameters', "\$buildParameters;\n private \$containerDir;\n private \$parameters", $code); + $code = str_replace('__construct()', '__construct(array $buildParameters = array(), $containerDir = __DIR__)', $code); $code .= " \$this->buildParameters = \$buildParameters;\n"; + $code .= " \$this->containerDir = \$containerDir;\n"; } if ($this->container->isCompiled()) { @@ -1042,7 +1043,7 @@ public function isFrozen() protected function load(\$file, \$lazyLoad = true) { - return require \$file; + return require \$this->containerDir.\\DIRECTORY_SEPARATOR.\$file; } EOF; @@ -1054,7 +1055,7 @@ protected function load(\$file, \$lazyLoad = true) continue; } if ($this->asFiles) { - $proxyLoader = '$this->load(__DIR__."/{$class}.php")'; + $proxyLoader = '$this->load("{$class}.php")'; } elseif ($this->namespace) { $proxyLoader = 'class_alias("'.$this->namespace.'\\\\{$class}", $class, false)'; } else { @@ -1126,7 +1127,7 @@ private function addRemovedIds() return ''; } if ($this->asFiles) { - $code = "require __DIR__.'/removed-ids.php'"; + $code = "require \$this->containerDir.\\DIRECTORY_SEPARATOR.'removed-ids.php'"; } else { $code = ''; $ids = array_keys($ids); @@ -1179,7 +1180,7 @@ private function addFileMap() ksort($definitions); foreach ($definitions as $id => $definition) { if (!$definition->isSynthetic() && $definition->isShared() && !$this->isHotPath($definition)) { - $code .= sprintf(" %s => __DIR__.'/%s.php',\n", $this->doExport($id), $this->generateMethodName($id)); + $code .= sprintf(" %s => '%s.php',\n", $this->doExport($id), $this->generateMethodName($id)); } } @@ -1901,7 +1902,7 @@ private function getServiceCall($id, Reference $reference = null) $code = sprintf('$this->services[\'%s\'] = %s', $id, $code); } } elseif ($this->asFiles && $definition->isShared() && !$this->isHotPath($definition)) { - $code = sprintf("\$this->load(__DIR__.'/%s.php')", $this->generateMethodName($id)); + $code = sprintf("\$this->load('%s.php')", $this->generateMethodName($id)); } else { $code = sprintf('$this->%s()', $this->generateMethodName($id)); } @@ -2043,7 +2044,7 @@ private function export($value) $prefix = $matches[0][1] ? $this->doExport(substr($value, 0, $matches[0][1]), true).'.' : ''; $suffix = $matches[0][1] + strlen($matches[0][0]); $suffix = isset($value[$suffix]) ? '.'.$this->doExport(substr($value, $suffix), true) : ''; - $dirname = '__DIR__'; + $dirname = $this->asFiles ? '$this->containerDir' : '__DIR__'; $offset = 1 + $this->targetDirMaxMatches - count($matches); if ($this->asFiles || 0 < $offset) { diff --git a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_as_files.txt b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_as_files.txt index 19e538b1846e5..fa89e04949bde 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_as_files.txt +++ b/src/Symfony/Component/DependencyInjection/Tests/Fixtures/php/services9_as_files.txt @@ -24,7 +24,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; $this->services['baz'] = $instance = new \Baz(); -$instance->setFoo(${($_ = isset($this->services['foo_with_inline']) ? $this->services['foo_with_inline'] : $this->load(__DIR__.'/getFooWithInlineService.php')) && false ?: '_'}); +$instance->setFoo(${($_ = isset($this->services['foo_with_inline']) ? $this->services['foo_with_inline'] : $this->load('getFooWithInlineService.php')) && false ?: '_'}); return $instance; @@ -38,7 +38,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; $this->services['configured_service'] = $instance = new \stdClass(); $a = new \ConfClass(); -$a->setFoo(${($_ = isset($this->services['baz']) ? $this->services['baz'] : $this->load(__DIR__.'/getBazService.php')) && false ?: '_'}); +$a->setFoo(${($_ = isset($this->services['baz']) ? $this->services['baz'] : $this->load('getBazService.php')) && false ?: '_'}); $a->configureStdClass($instance); @@ -93,7 +93,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; // This file has been auto-generated by the Symfony Dependency Injection Component for internal use. // Returns the public 'factory_service' shared service. -return $this->services['factory_service'] = ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load(__DIR__.'/getFoo_BazService.php')) && false ?: '_'}->getInstance(); +return $this->services['factory_service'] = ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load('getFoo_BazService.php')) && false ?: '_'}->getInstance(); [Container%s/getFactoryServiceSimpleService.php] => services['factory_service_simple'] = ${($_ = isset($this->services['factory_simple']) ? $this->services['factory_simple'] : $this->load(__DIR__.'/getFactorySimpleService.php')) && false ?: '_'}->getInstance(); +return $this->services['factory_service_simple'] = ${($_ = isset($this->services['factory_simple']) ? $this->services['factory_simple'] : $this->load('getFactorySimpleService.php')) && false ?: '_'}->getInstance(); [Container%s/getFactorySimpleService.php] => services['foo.baz']) ? $this->services['foo.baz'] : $this->load(__DIR__.'/getFoo_BazService.php')) && false ?: '_'}; +$a = ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load('getFoo_BazService.php')) && false ?: '_'}; $this->services['foo'] = $instance = \Bar\FooClass::getInstance('foo', $a, array('bar' => 'foo is bar', 'foobar' => 'bar'), true, $this); @@ -160,7 +160,7 @@ $this->services['foo_with_inline'] = $instance = new \Foo(); $a = new \Bar(); $a->pub = 'pub'; -$a->setBaz(${($_ = isset($this->services['baz']) ? $this->services['baz'] : $this->load(__DIR__.'/getBazService.php')) && false ?: '_'}); +$a->setBaz(${($_ = isset($this->services['baz']) ? $this->services['baz'] : $this->load('getBazService.php')) && false ?: '_'}); $instance->setBar($a); @@ -174,7 +174,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; // Returns the public 'lazy_context' shared service. return $this->services['lazy_context'] = new \LazyContext(new RewindableGenerator(function () { - yield 'k1' => ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load(__DIR__.'/getFoo_BazService.php')) && false ?: '_'}; + yield 'k1' => ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load('getFoo_BazService.php')) && false ?: '_'}; yield 'k2' => $this; }, 2), new RewindableGenerator(function () { return new \EmptyIterator(); @@ -188,7 +188,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; // Returns the public 'lazy_context_ignore_invalid_ref' shared service. return $this->services['lazy_context_ignore_invalid_ref'] = new \LazyContext(new RewindableGenerator(function () { - yield 0 => ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load(__DIR__.'/getFoo_BazService.php')) && false ?: '_'}; + yield 0 => ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load('getFoo_BazService.php')) && false ?: '_'}; }, 1), new RewindableGenerator(function () { return new \EmptyIterator(); }, 0)); @@ -204,9 +204,9 @@ include_once ($this->targetDirs[0].'/Fixtures/includes/foo.php'); $this->services['method_call1'] = $instance = new \Bar\FooClass(); -$instance->setBar(${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load(__DIR__.'/getFooService.php')) && false ?: '_'}); +$instance->setBar(${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load('getFooService.php')) && false ?: '_'}); $instance->setBar(NULL); -$instance->setBar((${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load(__DIR__.'/getFooService.php')) && false ?: '_'}->foo() . (($this->hasParameter("foo")) ? ($this->getParameter("foo")) : ("default")))); +$instance->setBar((${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load('getFooService.php')) && false ?: '_'}->foo() . (($this->hasParameter("foo")) ? ($this->getParameter("foo")) : ("default")))); return $instance; @@ -243,7 +243,7 @@ use Symfony\Component\DependencyInjection\Argument\RewindableGenerator; // Returns the public 'tagged_iterator' shared service. return $this->services['tagged_iterator'] = new \Bar(new RewindableGenerator(function () { - yield 0 => ${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load(__DIR__.'/getFooService.php')) && false ?: '_'}; + yield 0 => ${($_ = isset($this->services['foo']) ? $this->services['foo'] : $this->load('getFooService.php')) && false ?: '_'}; yield 1 => ${($_ = isset($this->services['tagged_iterator_foo']) ? $this->services['tagged_iterator_foo'] : $this->services['tagged_iterator_foo'] = new \Bar()) && false ?: '_'}; }, 2)); @@ -277,16 +277,18 @@ use Symfony\Component\DependencyInjection\ParameterBag\FrozenParameterBag; class ProjectServiceContainer extends Container { private $buildParameters; + private $containerDir; private $parameters; private $targetDirs = array(); - public function __construct(array $buildParameters = array()) + public function __construct(array $buildParameters = array(), $containerDir = __DIR__) { - $dir = $this->targetDirs[0] = \dirname(__DIR__); + $dir = $this->targetDirs[0] = \dirname($containerDir); for ($i = 1; $i <= 5; ++$i) { $this->targetDirs[$i] = $dir = \dirname($dir); } $this->buildParameters = $buildParameters; + $this->containerDir = $containerDir; $this->parameters = $this->getDefaultParameters(); $this->services = array(); @@ -298,25 +300,25 @@ class ProjectServiceContainer extends Container 'foo_bar' => 'getFooBarService', ); $this->fileMap = array( - 'baz' => __DIR__.'/getBazService.php', - 'configured_service' => __DIR__.'/getConfiguredServiceService.php', - 'configured_service_simple' => __DIR__.'/getConfiguredServiceSimpleService.php', - 'decorator_service' => __DIR__.'/getDecoratorServiceService.php', - 'decorator_service_with_name' => __DIR__.'/getDecoratorServiceWithNameService.php', - 'deprecated_service' => __DIR__.'/getDeprecatedServiceService.php', - 'factory_service' => __DIR__.'/getFactoryServiceService.php', - 'factory_service_simple' => __DIR__.'/getFactoryServiceSimpleService.php', - 'factory_simple' => __DIR__.'/getFactorySimpleService.php', - 'foo' => __DIR__.'/getFooService.php', - 'foo.baz' => __DIR__.'/getFoo_BazService.php', - 'foo_with_inline' => __DIR__.'/getFooWithInlineService.php', - 'lazy_context' => __DIR__.'/getLazyContextService.php', - 'lazy_context_ignore_invalid_ref' => __DIR__.'/getLazyContextIgnoreInvalidRefService.php', - 'method_call1' => __DIR__.'/getMethodCall1Service.php', - 'new_factory_service' => __DIR__.'/getNewFactoryServiceService.php', - 'service_from_static_method' => __DIR__.'/getServiceFromStaticMethodService.php', - 'tagged_iterator' => __DIR__.'/getTaggedIteratorService.php', - 'tagged_iterator_foo' => __DIR__.'/getTaggedIteratorFooService.php', + 'baz' => 'getBazService.php', + 'configured_service' => 'getConfiguredServiceService.php', + 'configured_service_simple' => 'getConfiguredServiceSimpleService.php', + 'decorator_service' => 'getDecoratorServiceService.php', + 'decorator_service_with_name' => 'getDecoratorServiceWithNameService.php', + 'deprecated_service' => 'getDeprecatedServiceService.php', + 'factory_service' => 'getFactoryServiceService.php', + 'factory_service_simple' => 'getFactoryServiceSimpleService.php', + 'factory_simple' => 'getFactorySimpleService.php', + 'foo' => 'getFooService.php', + 'foo.baz' => 'getFoo_BazService.php', + 'foo_with_inline' => 'getFooWithInlineService.php', + 'lazy_context' => 'getLazyContextService.php', + 'lazy_context_ignore_invalid_ref' => 'getLazyContextIgnoreInvalidRefService.php', + 'method_call1' => 'getMethodCall1Service.php', + 'new_factory_service' => 'getNewFactoryServiceService.php', + 'service_from_static_method' => 'getServiceFromStaticMethodService.php', + 'tagged_iterator' => 'getTaggedIteratorService.php', + 'tagged_iterator_foo' => 'getTaggedIteratorFooService.php', ); $this->privates = array( 'factory_simple' => true, @@ -331,7 +333,7 @@ class ProjectServiceContainer extends Container public function getRemovedIds() { - return require __DIR__.'/removed-ids.php'; + return require $this->containerDir.\DIRECTORY_SEPARATOR.'removed-ids.php'; } public function compile() @@ -353,7 +355,7 @@ class ProjectServiceContainer extends Container protected function load($file, $lazyLoad = true) { - return require $file; + return require $this->containerDir.\DIRECTORY_SEPARATOR.$file; } /** @@ -363,7 +365,7 @@ class ProjectServiceContainer extends Container */ protected function getBarService() { - $a = ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load(__DIR__.'/getFoo_BazService.php')) && false ?: '_'}; + $a = ${($_ = isset($this->services['foo.baz']) ? $this->services['foo.baz'] : $this->load('getFoo_BazService.php')) && false ?: '_'}; $this->services['bar'] = $instance = new \Bar\FooClass('foo', $a, $this->getParameter('foo_bar')); @@ -379,7 +381,7 @@ class ProjectServiceContainer extends Container */ protected function getFooBarService() { - return new \Bar\FooClass(${($_ = isset($this->services['deprecated_service']) ? $this->services['deprecated_service'] : $this->load(__DIR__.'/getDeprecatedServiceService.php')) && false ?: '_'}); + return new \Bar\FooClass(${($_ = isset($this->services['deprecated_service']) ? $this->services['deprecated_service'] : $this->load('getDeprecatedServiceService.php')) && false ?: '_'}); } public function getParameter($name) @@ -502,6 +504,6 @@ return new \Container%s\ProjectServiceContainer(array( 'container.build_hash' => '%s', 'container.build_id' => '%s', 'container.build_time' => %d, -)); +), __DIR__.\DIRECTORY_SEPARATOR.'Container%s'); ) From 11a0392516a0cdf0e4632ba4dfa4e5e51ec93ee6 Mon Sep 17 00:00:00 2001 From: Maxime Steinhausser Date: Mon, 26 Mar 2018 19:04:09 +0200 Subject: [PATCH 075/104] [HttpKernel] DumpDataCollector: do not flush when a dumper is provided --- .../DataCollector/DumpDataCollector.php | 2 +- .../DataCollector/DumpDataCollectorTest.php | 21 +++++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php b/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php index 049053150fef2..a3880a6e8bb32 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php @@ -67,7 +67,7 @@ public function dump(Data $data) if ($this->stopwatch) { $this->stopwatch->start('dump'); } - if ($this->isCollected) { + if ($this->isCollected && !$this->dumper) { $this->isCollected = false; } diff --git a/src/Symfony/Component/HttpKernel/Tests/DataCollector/DumpDataCollectorTest.php b/src/Symfony/Component/HttpKernel/Tests/DataCollector/DumpDataCollectorTest.php index 23b1d87d1ca69..2dbb799109708 100644 --- a/src/Symfony/Component/HttpKernel/Tests/DataCollector/DumpDataCollectorTest.php +++ b/src/Symfony/Component/HttpKernel/Tests/DataCollector/DumpDataCollectorTest.php @@ -16,6 +16,7 @@ use Symfony\Component\HttpFoundation\Request; use Symfony\Component\HttpFoundation\Response; use Symfony\Component\VarDumper\Cloner\Data; +use Symfony\Component\VarDumper\Dumper\CliDumper; /** * @author Nicolas Grekas @@ -130,4 +131,24 @@ public function testFlush() $this->assertSame("\"DumpDataCollectorTest.php on line {$line}:\"\n456\n", ob_get_clean()); } } + + public function testFlushNothingWhenDataDumperIsProvided() + { + $data = new Data(array(array(456))); + $dumper = new CliDumper('php://output'); + $collector = new DumpDataCollector(null, null, null, null, $dumper); + + ob_start(); + $collector->dump($data); + $line = __LINE__ - 1; + if (\PHP_VERSION_ID >= 50400) { + $this->assertSame("DumpDataCollectorTest.php on line {$line}:\n456\n", ob_get_clean()); + } else { + $this->assertSame("\"DumpDataCollectorTest.php on line {$line}:\"\n456\n", ob_get_clean()); + } + + ob_start(); + $collector->__destruct(); + $this->assertEmpty(ob_get_clean()); + } } From 49a144f28c9f5b9c2d151c9d4eadd170ac6af8fa Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Mon, 26 Mar 2018 23:55:11 +0300 Subject: [PATCH 076/104] Support phpdbg SAPI in Debug::enable() --- src/Symfony/Component/Debug/Debug.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/Debug/Debug.php b/src/Symfony/Component/Debug/Debug.php index 2075d39e3409e..1e29d45826d66 100644 --- a/src/Symfony/Component/Debug/Debug.php +++ b/src/Symfony/Component/Debug/Debug.php @@ -45,7 +45,7 @@ public static function enable($errorReportingLevel = null, $displayErrors = true error_reporting(-1); } - if ('cli' !== PHP_SAPI) { + if (!in_array(PHP_SAPI, array('cli', 'phpdbg'))) { ini_set('display_errors', 0); ExceptionHandler::register(); } elseif ($displayErrors && (!ini_get('log_errors') || ini_get('error_log'))) { From 360298df295eaad15b831ae8c07e5b5f1d065b07 Mon Sep 17 00:00:00 2001 From: "Issei.M" Date: Tue, 27 Mar 2018 20:18:41 +0900 Subject: [PATCH 077/104] [Validator] Add Japanese translation --- .../Validator/Resources/translations/validators.ja.xlf | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf index a58f5b8d8c660..a9d6b0812bf9d 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.ja.xlf @@ -310,6 +310,14 @@ This value does not match the expected {{ charset }} charset. この値は予期される文字コード({{ charset }})と異なります。 + + This is not a valid Business Identifier Code (BIC). + 有効なSWIFTコードではありません。 + + + Error + エラー + From e467e4cc6ee19e4e7d2517b232f5d2100bd5745e Mon Sep 17 00:00:00 2001 From: Marco Petersen Date: Tue, 27 Mar 2018 23:05:35 +0200 Subject: [PATCH 078/104] Use 3rd person verb form in command description --- .../Bundle/FrameworkBundle/Command/CachePoolPruneCommand.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bundle/FrameworkBundle/Command/CachePoolPruneCommand.php b/src/Symfony/Bundle/FrameworkBundle/Command/CachePoolPruneCommand.php index 1c9cef9b93eda..deee376945dd5 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Command/CachePoolPruneCommand.php +++ b/src/Symfony/Bundle/FrameworkBundle/Command/CachePoolPruneCommand.php @@ -44,7 +44,7 @@ public function __construct($pools) protected function configure() { $this - ->setDescription('Prune cache pools') + ->setDescription('Prunes cache pools') ->setHelp(<<<'EOF' The %command.name% command deletes all expired items from all pruneable pools. From f73d378f9c2a2dafb1468b61d53d4ce2ab666a84 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Wed, 28 Mar 2018 19:31:17 +1100 Subject: [PATCH 079/104] [Intl] Update ICU data to 61.1 --- src/Symfony/Component/Intl/Intl.php | 2 +- .../Component/Intl/Resources/bin/icu.ini | 1 + .../Intl/Resources/data/currencies/af.json | 10 +- .../Intl/Resources/data/currencies/af_NA.json | 2 +- .../Intl/Resources/data/currencies/ak.json | 10 +- .../Intl/Resources/data/currencies/am.json | 10 +- .../Intl/Resources/data/currencies/ar.json | 10 +- .../Intl/Resources/data/currencies/ar_DJ.json | 2 +- .../Intl/Resources/data/currencies/ar_ER.json | 2 +- .../Intl/Resources/data/currencies/ar_KM.json | 2 +- .../Intl/Resources/data/currencies/ar_LB.json | 2 +- .../Intl/Resources/data/currencies/ar_SO.json | 2 +- .../Intl/Resources/data/currencies/ar_SS.json | 2 +- .../Intl/Resources/data/currencies/as.json | 318 +++++----- .../Intl/Resources/data/currencies/az.json | 12 +- .../Resources/data/currencies/az_Cyrl.json | 2 +- .../Intl/Resources/data/currencies/be.json | 10 +- .../Intl/Resources/data/currencies/bg.json | 10 +- .../Intl/Resources/data/currencies/bm.json | 10 +- .../Intl/Resources/data/currencies/bn.json | 10 +- .../Intl/Resources/data/currencies/bo.json | 2 +- .../Intl/Resources/data/currencies/bo_IN.json | 2 +- .../Intl/Resources/data/currencies/br.json | 10 +- .../Intl/Resources/data/currencies/bs.json | 10 +- .../Resources/data/currencies/bs_Cyrl.json | 10 +- .../Intl/Resources/data/currencies/ca.json | 10 +- .../Intl/Resources/data/currencies/ca_FR.json | 2 +- .../Intl/Resources/data/currencies/ce.json | 10 +- .../Intl/Resources/data/currencies/cs.json | 10 +- .../Intl/Resources/data/currencies/cy.json | 10 +- .../Intl/Resources/data/currencies/da.json | 10 +- .../Intl/Resources/data/currencies/de.json | 10 +- .../Intl/Resources/data/currencies/de_CH.json | 6 +- .../Intl/Resources/data/currencies/de_LI.json | 2 +- .../Intl/Resources/data/currencies/de_LU.json | 2 +- .../Intl/Resources/data/currencies/dz.json | 2 +- .../Intl/Resources/data/currencies/ee.json | 10 +- .../Intl/Resources/data/currencies/el.json | 10 +- .../Intl/Resources/data/currencies/en.json | 10 +- .../Resources/data/currencies/en_001.json | 2 +- .../Resources/data/currencies/en_150.json | 2 +- .../Intl/Resources/data/currencies/en_AG.json | 2 +- .../Intl/Resources/data/currencies/en_AI.json | 2 +- .../Intl/Resources/data/currencies/en_AU.json | 2 +- .../Intl/Resources/data/currencies/en_BB.json | 2 +- .../Intl/Resources/data/currencies/en_BI.json | 2 +- .../Intl/Resources/data/currencies/en_BM.json | 2 +- .../Intl/Resources/data/currencies/en_BS.json | 2 +- .../Intl/Resources/data/currencies/en_BW.json | 2 +- .../Intl/Resources/data/currencies/en_BZ.json | 2 +- .../Intl/Resources/data/currencies/en_CA.json | 2 +- .../Intl/Resources/data/currencies/en_CC.json | 2 +- .../Intl/Resources/data/currencies/en_CK.json | 2 +- .../Intl/Resources/data/currencies/en_CX.json | 2 +- .../Intl/Resources/data/currencies/en_DK.json | 2 +- .../Intl/Resources/data/currencies/en_DM.json | 2 +- .../Intl/Resources/data/currencies/en_ER.json | 2 +- .../Intl/Resources/data/currencies/en_FJ.json | 2 +- .../Intl/Resources/data/currencies/en_FK.json | 2 +- .../Intl/Resources/data/currencies/en_GB.json | 2 +- .../Intl/Resources/data/currencies/en_GD.json | 2 +- .../Intl/Resources/data/currencies/en_GG.json | 2 +- .../Intl/Resources/data/currencies/en_GH.json | 2 +- .../Intl/Resources/data/currencies/en_GI.json | 2 +- .../Intl/Resources/data/currencies/en_GM.json | 2 +- .../Intl/Resources/data/currencies/en_GY.json | 2 +- .../Intl/Resources/data/currencies/en_IM.json | 2 +- .../Intl/Resources/data/currencies/en_JE.json | 2 +- .../Intl/Resources/data/currencies/en_JM.json | 2 +- .../Intl/Resources/data/currencies/en_KE.json | 2 +- .../Intl/Resources/data/currencies/en_KI.json | 2 +- .../Intl/Resources/data/currencies/en_KN.json | 2 +- .../Intl/Resources/data/currencies/en_KY.json | 2 +- .../Intl/Resources/data/currencies/en_LC.json | 2 +- .../Intl/Resources/data/currencies/en_LR.json | 2 +- .../Intl/Resources/data/currencies/en_LS.json | 2 +- .../Intl/Resources/data/currencies/en_MG.json | 2 +- .../Intl/Resources/data/currencies/en_MO.json | 2 +- .../Intl/Resources/data/currencies/en_MS.json | 2 +- .../Intl/Resources/data/currencies/en_MT.json | 2 +- .../Intl/Resources/data/currencies/en_MU.json | 2 +- .../Intl/Resources/data/currencies/en_MW.json | 2 +- .../Intl/Resources/data/currencies/en_MY.json | 2 +- .../Intl/Resources/data/currencies/en_NA.json | 2 +- .../Intl/Resources/data/currencies/en_NF.json | 2 +- .../Intl/Resources/data/currencies/en_NG.json | 2 +- .../Intl/Resources/data/currencies/en_NH.json | 2 +- .../Intl/Resources/data/currencies/en_NR.json | 2 +- .../Intl/Resources/data/currencies/en_NU.json | 2 +- .../Intl/Resources/data/currencies/en_NZ.json | 2 +- .../Intl/Resources/data/currencies/en_PG.json | 2 +- .../Intl/Resources/data/currencies/en_PH.json | 2 +- .../Intl/Resources/data/currencies/en_PK.json | 2 +- .../Intl/Resources/data/currencies/en_PN.json | 2 +- .../Intl/Resources/data/currencies/en_RW.json | 2 +- .../Intl/Resources/data/currencies/en_SB.json | 2 +- .../Intl/Resources/data/currencies/en_SC.json | 2 +- .../Intl/Resources/data/currencies/en_SE.json | 2 +- .../Intl/Resources/data/currencies/en_SG.json | 2 +- .../Intl/Resources/data/currencies/en_SH.json | 2 +- .../Intl/Resources/data/currencies/en_SL.json | 2 +- .../Intl/Resources/data/currencies/en_SS.json | 2 +- .../Intl/Resources/data/currencies/en_SX.json | 2 +- .../Intl/Resources/data/currencies/en_SZ.json | 2 +- .../Intl/Resources/data/currencies/en_TK.json | 2 +- .../Intl/Resources/data/currencies/en_TO.json | 2 +- .../Intl/Resources/data/currencies/en_TT.json | 2 +- .../Intl/Resources/data/currencies/en_TV.json | 2 +- .../Intl/Resources/data/currencies/en_TZ.json | 2 +- .../Intl/Resources/data/currencies/en_UG.json | 2 +- .../Intl/Resources/data/currencies/en_VC.json | 2 +- .../Intl/Resources/data/currencies/en_VU.json | 2 +- .../Intl/Resources/data/currencies/en_WS.json | 2 +- .../Intl/Resources/data/currencies/en_ZA.json | 2 +- .../Intl/Resources/data/currencies/en_ZM.json | 2 +- .../Intl/Resources/data/currencies/es.json | 10 +- .../Resources/data/currencies/es_419.json | 2 +- .../Intl/Resources/data/currencies/es_AR.json | 2 +- .../Intl/Resources/data/currencies/es_BO.json | 2 +- .../Intl/Resources/data/currencies/es_BR.json | 2 +- .../Intl/Resources/data/currencies/es_BZ.json | 2 +- .../Intl/Resources/data/currencies/es_CL.json | 2 +- .../Intl/Resources/data/currencies/es_CO.json | 2 +- .../Intl/Resources/data/currencies/es_CR.json | 2 +- .../Intl/Resources/data/currencies/es_CU.json | 2 +- .../Intl/Resources/data/currencies/es_DO.json | 2 +- .../Intl/Resources/data/currencies/es_EC.json | 2 +- .../Intl/Resources/data/currencies/es_GQ.json | 2 +- .../Intl/Resources/data/currencies/es_GT.json | 2 +- .../Intl/Resources/data/currencies/es_HN.json | 2 +- .../Intl/Resources/data/currencies/es_MX.json | 6 +- .../Intl/Resources/data/currencies/es_NI.json | 2 +- .../Intl/Resources/data/currencies/es_PA.json | 2 +- .../Intl/Resources/data/currencies/es_PE.json | 2 +- .../Intl/Resources/data/currencies/es_PH.json | 2 +- .../Intl/Resources/data/currencies/es_PR.json | 2 +- .../Intl/Resources/data/currencies/es_PY.json | 2 +- .../Intl/Resources/data/currencies/es_SV.json | 2 +- .../Intl/Resources/data/currencies/es_US.json | 6 +- .../Intl/Resources/data/currencies/es_UY.json | 2 +- .../Intl/Resources/data/currencies/es_VE.json | 2 +- .../Intl/Resources/data/currencies/et.json | 10 +- .../Intl/Resources/data/currencies/eu.json | 10 +- .../Intl/Resources/data/currencies/fa.json | 10 +- .../Intl/Resources/data/currencies/fa_AF.json | 2 +- .../Intl/Resources/data/currencies/ff.json | 10 +- .../Intl/Resources/data/currencies/ff_GN.json | 2 +- .../Intl/Resources/data/currencies/ff_MR.json | 4 +- .../Intl/Resources/data/currencies/fi.json | 12 +- .../Intl/Resources/data/currencies/fo.json | 16 +- .../Intl/Resources/data/currencies/fo_DK.json | 2 +- .../Intl/Resources/data/currencies/fr.json | 10 +- .../Intl/Resources/data/currencies/fr_BI.json | 2 +- .../Intl/Resources/data/currencies/fr_CA.json | 2 +- .../Intl/Resources/data/currencies/fr_CD.json | 2 +- .../Intl/Resources/data/currencies/fr_DJ.json | 2 +- .../Intl/Resources/data/currencies/fr_DZ.json | 2 +- .../Intl/Resources/data/currencies/fr_GN.json | 2 +- .../Intl/Resources/data/currencies/fr_HT.json | 2 +- .../Intl/Resources/data/currencies/fr_KM.json | 2 +- .../Intl/Resources/data/currencies/fr_LU.json | 2 +- .../Intl/Resources/data/currencies/fr_MG.json | 2 +- .../Intl/Resources/data/currencies/fr_MR.json | 4 +- .../Intl/Resources/data/currencies/fr_MU.json | 2 +- .../Intl/Resources/data/currencies/fr_RW.json | 2 +- .../Intl/Resources/data/currencies/fr_SC.json | 2 +- .../Intl/Resources/data/currencies/fr_SY.json | 2 +- .../Intl/Resources/data/currencies/fr_TN.json | 2 +- .../Intl/Resources/data/currencies/fr_VU.json | 2 +- .../Intl/Resources/data/currencies/fy.json | 10 +- .../Intl/Resources/data/currencies/ga.json | 10 +- .../Intl/Resources/data/currencies/gd.json | 10 +- .../Intl/Resources/data/currencies/gl.json | 10 +- .../Intl/Resources/data/currencies/gu.json | 10 +- .../Intl/Resources/data/currencies/ha.json | 10 +- .../Intl/Resources/data/currencies/ha_GH.json | 2 +- .../Intl/Resources/data/currencies/he.json | 10 +- .../Intl/Resources/data/currencies/hi.json | 10 +- .../Intl/Resources/data/currencies/hr.json | 10 +- .../Intl/Resources/data/currencies/hr_BA.json | 2 +- .../Intl/Resources/data/currencies/hu.json | 10 +- .../Intl/Resources/data/currencies/hy.json | 10 +- .../Intl/Resources/data/currencies/id.json | 10 +- .../Intl/Resources/data/currencies/ig.json | 2 +- .../Intl/Resources/data/currencies/ii.json | 2 +- .../Intl/Resources/data/currencies/in.json | 10 +- .../Intl/Resources/data/currencies/is.json | 10 +- .../Intl/Resources/data/currencies/it.json | 10 +- .../Intl/Resources/data/currencies/iw.json | 10 +- .../Intl/Resources/data/currencies/ja.json | 10 +- .../Intl/Resources/data/currencies/ka.json | 10 +- .../Intl/Resources/data/currencies/ki.json | 10 +- .../Intl/Resources/data/currencies/kk.json | 10 +- .../Intl/Resources/data/currencies/kl.json | 2 +- .../Intl/Resources/data/currencies/km.json | 10 +- .../Intl/Resources/data/currencies/kn.json | 10 +- .../Intl/Resources/data/currencies/ko.json | 10 +- .../Intl/Resources/data/currencies/ks.json | 6 +- .../Intl/Resources/data/currencies/ky.json | 10 +- .../Intl/Resources/data/currencies/lb.json | 10 +- .../Intl/Resources/data/currencies/lg.json | 10 +- .../Intl/Resources/data/currencies/ln.json | 10 +- .../Intl/Resources/data/currencies/ln_AO.json | 2 +- .../Intl/Resources/data/currencies/lo.json | 10 +- .../Intl/Resources/data/currencies/lt.json | 10 +- .../Intl/Resources/data/currencies/lu.json | 10 +- .../Intl/Resources/data/currencies/lv.json | 10 +- .../Intl/Resources/data/currencies/meta.json | 41 +- .../Intl/Resources/data/currencies/mg.json | 10 +- .../Intl/Resources/data/currencies/mk.json | 10 +- .../Intl/Resources/data/currencies/ml.json | 10 +- .../Intl/Resources/data/currencies/mn.json | 12 +- .../Intl/Resources/data/currencies/mo.json | 2 +- .../Intl/Resources/data/currencies/mr.json | 10 +- .../Intl/Resources/data/currencies/ms.json | 10 +- .../Intl/Resources/data/currencies/ms_BN.json | 2 +- .../Intl/Resources/data/currencies/ms_SG.json | 2 +- .../Intl/Resources/data/currencies/mt.json | 10 +- .../Intl/Resources/data/currencies/my.json | 12 +- .../Intl/Resources/data/currencies/nb.json | 10 +- .../Intl/Resources/data/currencies/nd.json | 10 +- .../Intl/Resources/data/currencies/ne.json | 10 +- .../Intl/Resources/data/currencies/nl.json | 10 +- .../Intl/Resources/data/currencies/nl_AW.json | 2 +- .../Intl/Resources/data/currencies/nl_BQ.json | 2 +- .../Intl/Resources/data/currencies/nl_CW.json | 2 +- .../Intl/Resources/data/currencies/nl_SR.json | 2 +- .../Intl/Resources/data/currencies/nl_SX.json | 2 +- .../Intl/Resources/data/currencies/nn.json | 12 +- .../Intl/Resources/data/currencies/no.json | 10 +- .../Intl/Resources/data/currencies/om.json | 2 +- .../Intl/Resources/data/currencies/om_KE.json | 2 +- .../Intl/Resources/data/currencies/or.json | 230 +++---- .../Intl/Resources/data/currencies/os.json | 2 +- .../Intl/Resources/data/currencies/os_RU.json | 2 +- .../Intl/Resources/data/currencies/pa.json | 10 +- .../Resources/data/currencies/pa_Arab.json | 2 +- .../Intl/Resources/data/currencies/pl.json | 10 +- .../Intl/Resources/data/currencies/ps.json | 10 +- .../Intl/Resources/data/currencies/pt.json | 10 +- .../Intl/Resources/data/currencies/pt_AO.json | 2 +- .../Intl/Resources/data/currencies/pt_CV.json | 2 +- .../Intl/Resources/data/currencies/pt_LU.json | 2 +- .../Intl/Resources/data/currencies/pt_MO.json | 2 +- .../Intl/Resources/data/currencies/pt_MZ.json | 2 +- .../Intl/Resources/data/currencies/pt_PT.json | 10 +- .../Intl/Resources/data/currencies/pt_ST.json | 6 +- .../Intl/Resources/data/currencies/qu.json | 2 +- .../Intl/Resources/data/currencies/qu_BO.json | 2 +- .../Intl/Resources/data/currencies/qu_EC.json | 2 +- .../Intl/Resources/data/currencies/rm.json | 10 +- .../Intl/Resources/data/currencies/rn.json | 10 +- .../Intl/Resources/data/currencies/ro.json | 10 +- .../Intl/Resources/data/currencies/ro_MD.json | 2 +- .../Intl/Resources/data/currencies/root.json | 2 +- .../Intl/Resources/data/currencies/ru.json | 10 +- .../Intl/Resources/data/currencies/ru_BY.json | 2 +- .../Intl/Resources/data/currencies/ru_KG.json | 2 +- .../Intl/Resources/data/currencies/ru_KZ.json | 2 +- .../Intl/Resources/data/currencies/ru_MD.json | 2 +- .../Intl/Resources/data/currencies/rw.json | 2 +- .../Intl/Resources/data/currencies/se.json | 2 +- .../Intl/Resources/data/currencies/se_SE.json | 2 +- .../Intl/Resources/data/currencies/sg.json | 10 +- .../Intl/Resources/data/currencies/sh.json | 14 +- .../Intl/Resources/data/currencies/si.json | 10 +- .../Intl/Resources/data/currencies/sk.json | 10 +- .../Intl/Resources/data/currencies/sl.json | 10 +- .../Intl/Resources/data/currencies/sn.json | 10 +- .../Intl/Resources/data/currencies/so.json | 2 +- .../Intl/Resources/data/currencies/so_DJ.json | 2 +- .../Intl/Resources/data/currencies/so_ET.json | 2 +- .../Intl/Resources/data/currencies/so_KE.json | 2 +- .../Intl/Resources/data/currencies/sq.json | 24 +- .../Intl/Resources/data/currencies/sq_MK.json | 2 +- .../Intl/Resources/data/currencies/sr.json | 14 +- .../Resources/data/currencies/sr_Latn.json | 14 +- .../Intl/Resources/data/currencies/sv.json | 10 +- .../Intl/Resources/data/currencies/sw.json | 10 +- .../Intl/Resources/data/currencies/sw_CD.json | 6 +- .../Intl/Resources/data/currencies/sw_UG.json | 2 +- .../Intl/Resources/data/currencies/ta.json | 10 +- .../Intl/Resources/data/currencies/ta_LK.json | 2 +- .../Intl/Resources/data/currencies/ta_MY.json | 2 +- .../Intl/Resources/data/currencies/ta_SG.json | 2 +- .../Intl/Resources/data/currencies/te.json | 10 +- .../Intl/Resources/data/currencies/tg.json | 2 +- .../Intl/Resources/data/currencies/th.json | 10 +- .../Intl/Resources/data/currencies/ti.json | 2 +- .../Intl/Resources/data/currencies/ti_ER.json | 2 +- .../Intl/Resources/data/currencies/tl.json | 10 +- .../Intl/Resources/data/currencies/to.json | 2 +- .../Intl/Resources/data/currencies/tr.json | 10 +- .../Intl/Resources/data/currencies/tt.json | 2 +- .../Intl/Resources/data/currencies/ug.json | 10 +- .../Intl/Resources/data/currencies/uk.json | 10 +- .../Intl/Resources/data/currencies/ur.json | 10 +- .../Intl/Resources/data/currencies/ur_IN.json | 2 +- .../Intl/Resources/data/currencies/uz.json | 10 +- .../Resources/data/currencies/uz_Arab.json | 2 +- .../Resources/data/currencies/uz_Cyrl.json | 2 +- .../Intl/Resources/data/currencies/vi.json | 10 +- .../Intl/Resources/data/currencies/wo.json | 2 +- .../Intl/Resources/data/currencies/yi.json | 2 +- .../Intl/Resources/data/currencies/yo.json | 10 +- .../Intl/Resources/data/currencies/yo_BJ.json | 10 +- .../Intl/Resources/data/currencies/zh.json | 10 +- .../Intl/Resources/data/currencies/zh_HK.json | 10 +- .../Resources/data/currencies/zh_Hans_HK.json | 2 +- .../Resources/data/currencies/zh_Hans_MO.json | 2 +- .../Resources/data/currencies/zh_Hans_SG.json | 2 +- .../Resources/data/currencies/zh_Hant.json | 10 +- .../Resources/data/currencies/zh_Hant_HK.json | 10 +- .../Resources/data/currencies/zh_Hant_MO.json | 2 +- .../Intl/Resources/data/currencies/zh_MO.json | 2 +- .../Intl/Resources/data/currencies/zh_SG.json | 2 +- .../Intl/Resources/data/currencies/zu.json | 10 +- .../Intl/Resources/data/languages/af.json | 4 +- .../Intl/Resources/data/languages/ak.json | 2 +- .../Intl/Resources/data/languages/am.json | 2 +- .../Intl/Resources/data/languages/ar.json | 2 +- .../Intl/Resources/data/languages/ar_EG.json | 2 +- .../Intl/Resources/data/languages/ar_LY.json | 2 +- .../Intl/Resources/data/languages/ar_SA.json | 2 +- .../Intl/Resources/data/languages/as.json | 391 +++++++++++- .../Intl/Resources/data/languages/az.json | 6 +- .../Resources/data/languages/az_Cyrl.json | 2 +- .../Intl/Resources/data/languages/be.json | 10 +- .../Intl/Resources/data/languages/bg.json | 2 +- .../Intl/Resources/data/languages/bm.json | 2 +- .../Intl/Resources/data/languages/bn.json | 2 +- .../Intl/Resources/data/languages/bn_IN.json | 2 +- .../Intl/Resources/data/languages/bo.json | 2 +- .../Intl/Resources/data/languages/br.json | 73 ++- .../Intl/Resources/data/languages/bs.json | 2 +- .../Resources/data/languages/bs_Cyrl.json | 2 +- .../Intl/Resources/data/languages/ca.json | 3 +- .../Intl/Resources/data/languages/ce.json | 2 +- .../Intl/Resources/data/languages/cs.json | 3 +- .../Intl/Resources/data/languages/cy.json | 2 +- .../Intl/Resources/data/languages/da.json | 3 +- .../Intl/Resources/data/languages/de.json | 3 +- .../Intl/Resources/data/languages/de_AT.json | 2 +- .../Intl/Resources/data/languages/de_CH.json | 2 +- .../Intl/Resources/data/languages/de_LU.json | 2 +- .../Intl/Resources/data/languages/dz.json | 2 +- .../Intl/Resources/data/languages/ee.json | 2 +- .../Intl/Resources/data/languages/el.json | 5 +- .../Intl/Resources/data/languages/en.json | 3 +- .../Intl/Resources/data/languages/en_AU.json | 2 +- .../Intl/Resources/data/languages/en_CA.json | 2 +- .../Intl/Resources/data/languages/en_GB.json | 2 +- .../Intl/Resources/data/languages/en_IN.json | 5 +- .../Intl/Resources/data/languages/en_NZ.json | 2 +- .../Intl/Resources/data/languages/eo.json | 2 +- .../Intl/Resources/data/languages/es.json | 3 +- .../Intl/Resources/data/languages/es_419.json | 3 +- .../Intl/Resources/data/languages/es_AR.json | 2 +- .../Intl/Resources/data/languages/es_BO.json | 2 +- .../Intl/Resources/data/languages/es_CL.json | 2 +- .../Intl/Resources/data/languages/es_CO.json | 2 +- .../Intl/Resources/data/languages/es_CR.json | 2 +- .../Intl/Resources/data/languages/es_DO.json | 2 +- .../Intl/Resources/data/languages/es_EC.json | 2 +- .../Intl/Resources/data/languages/es_GT.json | 2 +- .../Intl/Resources/data/languages/es_HN.json | 2 +- .../Intl/Resources/data/languages/es_MX.json | 2 +- .../Intl/Resources/data/languages/es_NI.json | 2 +- .../Intl/Resources/data/languages/es_PA.json | 2 +- .../Intl/Resources/data/languages/es_PE.json | 2 +- .../Intl/Resources/data/languages/es_PR.json | 2 +- .../Intl/Resources/data/languages/es_PY.json | 2 +- .../Intl/Resources/data/languages/es_SV.json | 2 +- .../Intl/Resources/data/languages/es_US.json | 2 +- .../Intl/Resources/data/languages/es_VE.json | 2 +- .../Intl/Resources/data/languages/et.json | 2 +- .../Intl/Resources/data/languages/eu.json | 4 +- .../Intl/Resources/data/languages/fa.json | 2 +- .../Intl/Resources/data/languages/fa_AF.json | 2 +- .../Intl/Resources/data/languages/ff.json | 2 +- .../Intl/Resources/data/languages/fi.json | 3 +- .../Intl/Resources/data/languages/fo.json | 8 +- .../Intl/Resources/data/languages/fr.json | 3 +- .../Intl/Resources/data/languages/fr_BE.json | 2 +- .../Intl/Resources/data/languages/fr_CA.json | 2 +- .../Intl/Resources/data/languages/fr_CH.json | 2 +- .../Intl/Resources/data/languages/fy.json | 2 +- .../Intl/Resources/data/languages/ga.json | 2 +- .../Intl/Resources/data/languages/gd.json | 2 +- .../Intl/Resources/data/languages/gl.json | 2 +- .../Intl/Resources/data/languages/gu.json | 2 +- .../Intl/Resources/data/languages/gv.json | 2 +- .../Intl/Resources/data/languages/ha.json | 2 +- .../Intl/Resources/data/languages/he.json | 3 +- .../Intl/Resources/data/languages/hi.json | 4 +- .../Intl/Resources/data/languages/hr.json | 3 +- .../Intl/Resources/data/languages/hu.json | 3 +- .../Intl/Resources/data/languages/hy.json | 2 +- .../Intl/Resources/data/languages/id.json | 3 +- .../Intl/Resources/data/languages/ig.json | 2 +- .../Intl/Resources/data/languages/ii.json | 2 +- .../Intl/Resources/data/languages/in.json | 3 +- .../Intl/Resources/data/languages/is.json | 2 +- .../Intl/Resources/data/languages/it.json | 3 +- .../Intl/Resources/data/languages/iw.json | 3 +- .../Intl/Resources/data/languages/ja.json | 3 +- .../Intl/Resources/data/languages/ka.json | 2 +- .../Intl/Resources/data/languages/ki.json | 2 +- .../Intl/Resources/data/languages/kk.json | 2 +- .../Intl/Resources/data/languages/kl.json | 2 +- .../Intl/Resources/data/languages/km.json | 2 +- .../Intl/Resources/data/languages/kn.json | 2 +- .../Intl/Resources/data/languages/ko.json | 3 +- .../Intl/Resources/data/languages/ks.json | 2 +- .../Intl/Resources/data/languages/kw.json | 2 +- .../Intl/Resources/data/languages/ky.json | 2 +- .../Intl/Resources/data/languages/lb.json | 2 +- .../Intl/Resources/data/languages/lg.json | 2 +- .../Intl/Resources/data/languages/ln.json | 2 +- .../Intl/Resources/data/languages/lo.json | 2 +- .../Intl/Resources/data/languages/lt.json | 2 +- .../Intl/Resources/data/languages/lu.json | 2 +- .../Intl/Resources/data/languages/lv.json | 2 +- .../Intl/Resources/data/languages/meta.json | 4 +- .../Intl/Resources/data/languages/mg.json | 2 +- .../Intl/Resources/data/languages/mk.json | 2 +- .../Intl/Resources/data/languages/ml.json | 2 +- .../Intl/Resources/data/languages/mn.json | 9 +- .../Intl/Resources/data/languages/mo.json | 2 +- .../Intl/Resources/data/languages/mr.json | 2 +- .../Intl/Resources/data/languages/ms.json | 3 +- .../Intl/Resources/data/languages/mt.json | 2 +- .../Intl/Resources/data/languages/my.json | 2 +- .../Intl/Resources/data/languages/nb.json | 3 +- .../Intl/Resources/data/languages/nd.json | 2 +- .../Intl/Resources/data/languages/ne.json | 4 +- .../Intl/Resources/data/languages/nl.json | 3 +- .../Intl/Resources/data/languages/nn.json | 2 +- .../Intl/Resources/data/languages/no.json | 3 +- .../Intl/Resources/data/languages/om.json | 2 +- .../Intl/Resources/data/languages/or.json | 2 +- .../Intl/Resources/data/languages/os.json | 2 +- .../Intl/Resources/data/languages/pa.json | 3 +- .../Resources/data/languages/pa_Arab.json | 2 +- .../Intl/Resources/data/languages/pl.json | 3 +- .../Intl/Resources/data/languages/ps.json | 10 +- .../Intl/Resources/data/languages/pt.json | 3 +- .../Intl/Resources/data/languages/pt_PT.json | 4 +- .../Intl/Resources/data/languages/qu.json | 2 +- .../Intl/Resources/data/languages/rm.json | 2 +- .../Intl/Resources/data/languages/rn.json | 2 +- .../Intl/Resources/data/languages/ro.json | 3 +- .../Intl/Resources/data/languages/ro_MD.json | 2 +- .../Intl/Resources/data/languages/ru.json | 3 +- .../Intl/Resources/data/languages/rw.json | 2 +- .../Intl/Resources/data/languages/se.json | 2 +- .../Intl/Resources/data/languages/se_FI.json | 2 +- .../Intl/Resources/data/languages/sg.json | 2 +- .../Intl/Resources/data/languages/sh.json | 2 +- .../Intl/Resources/data/languages/sh_BA.json | 2 +- .../Intl/Resources/data/languages/si.json | 2 +- .../Intl/Resources/data/languages/sk.json | 3 +- .../Intl/Resources/data/languages/sl.json | 3 +- .../Intl/Resources/data/languages/sn.json | 2 +- .../Intl/Resources/data/languages/so.json | 2 +- .../Intl/Resources/data/languages/sq.json | 2 +- .../Intl/Resources/data/languages/sr.json | 2 +- .../Intl/Resources/data/languages/sr_BA.json | 2 +- .../Resources/data/languages/sr_Cyrl_BA.json | 2 +- .../Resources/data/languages/sr_Cyrl_ME.json | 2 +- .../Resources/data/languages/sr_Cyrl_XK.json | 2 +- .../Resources/data/languages/sr_Latn.json | 2 +- .../Resources/data/languages/sr_Latn_BA.json | 2 +- .../Resources/data/languages/sr_Latn_ME.json | 2 +- .../Resources/data/languages/sr_Latn_XK.json | 2 +- .../Intl/Resources/data/languages/sr_ME.json | 2 +- .../Intl/Resources/data/languages/sr_XK.json | 2 +- .../Intl/Resources/data/languages/sv.json | 3 +- .../Intl/Resources/data/languages/sv_FI.json | 2 +- .../Intl/Resources/data/languages/sw.json | 2 +- .../Intl/Resources/data/languages/sw_CD.json | 2 +- .../Intl/Resources/data/languages/sw_KE.json | 2 +- .../Intl/Resources/data/languages/ta.json | 2 +- .../Intl/Resources/data/languages/te.json | 2 +- .../Intl/Resources/data/languages/tg.json | 2 +- .../Intl/Resources/data/languages/th.json | 3 +- .../Intl/Resources/data/languages/ti.json | 2 +- .../Intl/Resources/data/languages/tl.json | 2 +- .../Intl/Resources/data/languages/to.json | 2 +- .../Intl/Resources/data/languages/tr.json | 3 +- .../Intl/Resources/data/languages/tt.json | 2 +- .../Intl/Resources/data/languages/ug.json | 2 +- .../Intl/Resources/data/languages/uk.json | 3 +- .../Intl/Resources/data/languages/ur.json | 2 +- .../Intl/Resources/data/languages/ur_IN.json | 2 +- .../Intl/Resources/data/languages/uz.json | 6 +- .../Resources/data/languages/uz_Arab.json | 2 +- .../Resources/data/languages/uz_Cyrl.json | 2 +- .../Intl/Resources/data/languages/vi.json | 3 +- .../Intl/Resources/data/languages/wo.json | 2 +- .../Intl/Resources/data/languages/yi.json | 2 +- .../Intl/Resources/data/languages/yo.json | 2 +- .../Intl/Resources/data/languages/yo_BJ.json | 2 +- .../Intl/Resources/data/languages/zh.json | 7 +- .../Intl/Resources/data/languages/zh_HK.json | 2 +- .../Resources/data/languages/zh_Hant.json | 3 +- .../Resources/data/languages/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/languages/zu.json | 2 +- .../Intl/Resources/data/locales/as.json | 566 +++++++++++++++++- .../Intl/Resources/data/locales/br.json | 12 +- .../Intl/Resources/data/locales/cy.json | 16 +- .../Intl/Resources/data/locales/en_IN.json | 4 +- .../Intl/Resources/data/locales/fo.json | 16 +- .../Intl/Resources/data/locales/hr.json | 2 +- .../Intl/Resources/data/locales/is.json | 2 +- .../Intl/Resources/data/locales/mn.json | 2 +- .../Intl/Resources/data/locales/or.json | 6 +- .../Intl/Resources/data/locales/ps.json | 10 +- .../Intl/Resources/data/locales/ru.json | 20 +- .../Intl/Resources/data/locales/sq.json | 8 +- .../Intl/Resources/data/locales/uz.json | 20 +- .../Intl/Resources/data/locales/vi.json | 2 +- .../Intl/Resources/data/regions/af.json | 2 +- .../Intl/Resources/data/regions/ak.json | 2 +- .../Intl/Resources/data/regions/am.json | 2 +- .../Intl/Resources/data/regions/ar.json | 2 +- .../Intl/Resources/data/regions/ar_LY.json | 2 +- .../Intl/Resources/data/regions/ar_SA.json | 2 +- .../Intl/Resources/data/regions/as.json | 394 ++++++------ .../Intl/Resources/data/regions/az.json | 2 +- .../Intl/Resources/data/regions/az_Cyrl.json | 2 +- .../Intl/Resources/data/regions/be.json | 2 +- .../Intl/Resources/data/regions/bg.json | 2 +- .../Intl/Resources/data/regions/bm.json | 2 +- .../Intl/Resources/data/regions/bn.json | 2 +- .../Intl/Resources/data/regions/bn_IN.json | 2 +- .../Intl/Resources/data/regions/bo.json | 2 +- .../Intl/Resources/data/regions/bo_IN.json | 2 +- .../Intl/Resources/data/regions/br.json | 6 +- .../Intl/Resources/data/regions/bs.json | 2 +- .../Intl/Resources/data/regions/bs_Cyrl.json | 2 +- .../Intl/Resources/data/regions/ca.json | 2 +- .../Intl/Resources/data/regions/ce.json | 2 +- .../Intl/Resources/data/regions/cs.json | 2 +- .../Intl/Resources/data/regions/cy.json | 4 +- .../Intl/Resources/data/regions/da.json | 2 +- .../Intl/Resources/data/regions/de.json | 2 +- .../Intl/Resources/data/regions/de_AT.json | 2 +- .../Intl/Resources/data/regions/de_CH.json | 2 +- .../Intl/Resources/data/regions/dz.json | 2 +- .../Intl/Resources/data/regions/ee.json | 2 +- .../Intl/Resources/data/regions/el.json | 2 +- .../Intl/Resources/data/regions/en.json | 2 +- .../Intl/Resources/data/regions/en_GB.json | 2 +- .../Intl/Resources/data/regions/eo.json | 2 +- .../Intl/Resources/data/regions/es.json | 2 +- .../Intl/Resources/data/regions/es_419.json | 2 +- .../Intl/Resources/data/regions/es_AR.json | 2 +- .../Intl/Resources/data/regions/es_BO.json | 2 +- .../Intl/Resources/data/regions/es_CL.json | 2 +- .../Intl/Resources/data/regions/es_CO.json | 2 +- .../Intl/Resources/data/regions/es_CR.json | 2 +- .../Intl/Resources/data/regions/es_DO.json | 2 +- .../Intl/Resources/data/regions/es_EC.json | 2 +- .../Intl/Resources/data/regions/es_GT.json | 2 +- .../Intl/Resources/data/regions/es_HN.json | 2 +- .../Intl/Resources/data/regions/es_MX.json | 2 +- .../Intl/Resources/data/regions/es_NI.json | 2 +- .../Intl/Resources/data/regions/es_PA.json | 2 +- .../Intl/Resources/data/regions/es_PE.json | 2 +- .../Intl/Resources/data/regions/es_PR.json | 2 +- .../Intl/Resources/data/regions/es_PY.json | 2 +- .../Intl/Resources/data/regions/es_SV.json | 2 +- .../Intl/Resources/data/regions/es_US.json | 2 +- .../Intl/Resources/data/regions/es_VE.json | 2 +- .../Intl/Resources/data/regions/et.json | 2 +- .../Intl/Resources/data/regions/eu.json | 2 +- .../Intl/Resources/data/regions/fa.json | 2 +- .../Intl/Resources/data/regions/fa_AF.json | 2 +- .../Intl/Resources/data/regions/ff.json | 2 +- .../Intl/Resources/data/regions/fi.json | 2 +- .../Intl/Resources/data/regions/fo.json | 8 +- .../Intl/Resources/data/regions/fr.json | 2 +- .../Intl/Resources/data/regions/fr_BE.json | 2 +- .../Intl/Resources/data/regions/fr_CA.json | 2 +- .../Intl/Resources/data/regions/fy.json | 2 +- .../Intl/Resources/data/regions/ga.json | 2 +- .../Intl/Resources/data/regions/gd.json | 2 +- .../Intl/Resources/data/regions/gl.json | 2 +- .../Intl/Resources/data/regions/gu.json | 2 +- .../Intl/Resources/data/regions/gv.json | 2 +- .../Intl/Resources/data/regions/ha.json | 2 +- .../Intl/Resources/data/regions/he.json | 2 +- .../Intl/Resources/data/regions/hi.json | 2 +- .../Intl/Resources/data/regions/hr.json | 4 +- .../Intl/Resources/data/regions/hu.json | 2 +- .../Intl/Resources/data/regions/hy.json | 2 +- .../Intl/Resources/data/regions/id.json | 2 +- .../Intl/Resources/data/regions/ig.json | 2 +- .../Intl/Resources/data/regions/ii.json | 2 +- .../Intl/Resources/data/regions/in.json | 2 +- .../Intl/Resources/data/regions/is.json | 4 +- .../Intl/Resources/data/regions/it.json | 2 +- .../Intl/Resources/data/regions/iw.json | 2 +- .../Intl/Resources/data/regions/ja.json | 2 +- .../Intl/Resources/data/regions/ka.json | 2 +- .../Intl/Resources/data/regions/ki.json | 2 +- .../Intl/Resources/data/regions/kk.json | 2 +- .../Intl/Resources/data/regions/kl.json | 2 +- .../Intl/Resources/data/regions/km.json | 2 +- .../Intl/Resources/data/regions/kn.json | 2 +- .../Intl/Resources/data/regions/ko.json | 2 +- .../Intl/Resources/data/regions/ko_KP.json | 2 +- .../Intl/Resources/data/regions/ks.json | 2 +- .../Intl/Resources/data/regions/kw.json | 2 +- .../Intl/Resources/data/regions/ky.json | 2 +- .../Intl/Resources/data/regions/lb.json | 2 +- .../Intl/Resources/data/regions/lg.json | 2 +- .../Intl/Resources/data/regions/ln.json | 2 +- .../Intl/Resources/data/regions/lo.json | 2 +- .../Intl/Resources/data/regions/lt.json | 2 +- .../Intl/Resources/data/regions/lu.json | 2 +- .../Intl/Resources/data/regions/lv.json | 2 +- .../Intl/Resources/data/regions/meta.json | 2 +- .../Intl/Resources/data/regions/mg.json | 2 +- .../Intl/Resources/data/regions/mk.json | 2 +- .../Intl/Resources/data/regions/ml.json | 2 +- .../Intl/Resources/data/regions/mn.json | 4 +- .../Intl/Resources/data/regions/mo.json | 2 +- .../Intl/Resources/data/regions/mr.json | 2 +- .../Intl/Resources/data/regions/ms.json | 2 +- .../Intl/Resources/data/regions/mt.json | 2 +- .../Intl/Resources/data/regions/my.json | 2 +- .../Intl/Resources/data/regions/nb.json | 2 +- .../Intl/Resources/data/regions/nd.json | 2 +- .../Intl/Resources/data/regions/ne.json | 2 +- .../Intl/Resources/data/regions/nl.json | 2 +- .../Intl/Resources/data/regions/nn.json | 2 +- .../Intl/Resources/data/regions/no.json | 2 +- .../Intl/Resources/data/regions/om.json | 2 +- .../Intl/Resources/data/regions/or.json | 4 +- .../Intl/Resources/data/regions/os.json | 2 +- .../Intl/Resources/data/regions/pa.json | 2 +- .../Intl/Resources/data/regions/pa_Arab.json | 2 +- .../Intl/Resources/data/regions/pl.json | 2 +- .../Intl/Resources/data/regions/ps.json | 2 +- .../Intl/Resources/data/regions/pt.json | 2 +- .../Intl/Resources/data/regions/pt_PT.json | 2 +- .../Intl/Resources/data/regions/qu.json | 2 +- .../Intl/Resources/data/regions/rm.json | 2 +- .../Intl/Resources/data/regions/rn.json | 2 +- .../Intl/Resources/data/regions/ro.json | 2 +- .../Intl/Resources/data/regions/ro_MD.json | 2 +- .../Intl/Resources/data/regions/ru.json | 4 +- .../Intl/Resources/data/regions/ru_UA.json | 2 +- .../Intl/Resources/data/regions/rw.json | 2 +- .../Intl/Resources/data/regions/se.json | 2 +- .../Intl/Resources/data/regions/se_FI.json | 2 +- .../Intl/Resources/data/regions/sg.json | 2 +- .../Intl/Resources/data/regions/sh.json | 2 +- .../Intl/Resources/data/regions/sh_BA.json | 2 +- .../Intl/Resources/data/regions/si.json | 2 +- .../Intl/Resources/data/regions/sk.json | 2 +- .../Intl/Resources/data/regions/sl.json | 2 +- .../Intl/Resources/data/regions/sn.json | 2 +- .../Intl/Resources/data/regions/so.json | 2 +- .../Intl/Resources/data/regions/sq.json | 10 +- .../Intl/Resources/data/regions/sr.json | 2 +- .../Intl/Resources/data/regions/sr_BA.json | 2 +- .../Resources/data/regions/sr_Cyrl_BA.json | 2 +- .../Resources/data/regions/sr_Cyrl_ME.json | 2 +- .../Resources/data/regions/sr_Cyrl_XK.json | 2 +- .../Intl/Resources/data/regions/sr_Latn.json | 2 +- .../Resources/data/regions/sr_Latn_BA.json | 2 +- .../Resources/data/regions/sr_Latn_ME.json | 2 +- .../Resources/data/regions/sr_Latn_XK.json | 2 +- .../Intl/Resources/data/regions/sr_ME.json | 2 +- .../Intl/Resources/data/regions/sr_XK.json | 2 +- .../Intl/Resources/data/regions/sv.json | 2 +- .../Intl/Resources/data/regions/sw.json | 2 +- .../Intl/Resources/data/regions/sw_CD.json | 2 +- .../Intl/Resources/data/regions/sw_KE.json | 2 +- .../Intl/Resources/data/regions/ta.json | 2 +- .../Intl/Resources/data/regions/te.json | 2 +- .../Intl/Resources/data/regions/tg.json | 2 +- .../Intl/Resources/data/regions/th.json | 2 +- .../Intl/Resources/data/regions/ti.json | 2 +- .../Intl/Resources/data/regions/tl.json | 2 +- .../Intl/Resources/data/regions/to.json | 2 +- .../Intl/Resources/data/regions/tr.json | 2 +- .../Intl/Resources/data/regions/tt.json | 2 +- .../Intl/Resources/data/regions/ug.json | 2 +- .../Intl/Resources/data/regions/uk.json | 2 +- .../Intl/Resources/data/regions/ur.json | 2 +- .../Intl/Resources/data/regions/ur_IN.json | 2 +- .../Intl/Resources/data/regions/uz.json | 2 +- .../Intl/Resources/data/regions/uz_Arab.json | 2 +- .../Intl/Resources/data/regions/uz_Cyrl.json | 2 +- .../Intl/Resources/data/regions/vi.json | 4 +- .../Intl/Resources/data/regions/wo.json | 2 +- .../Intl/Resources/data/regions/yi.json | 2 +- .../Intl/Resources/data/regions/yo.json | 2 +- .../Intl/Resources/data/regions/yo_BJ.json | 2 +- .../Intl/Resources/data/regions/zh.json | 2 +- .../Intl/Resources/data/regions/zh_HK.json | 2 +- .../Intl/Resources/data/regions/zh_Hant.json | 2 +- .../Resources/data/regions/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/regions/zu.json | 2 +- .../Intl/Resources/data/scripts/af.json | 2 +- .../Intl/Resources/data/scripts/am.json | 2 +- .../Intl/Resources/data/scripts/ar.json | 2 +- .../Intl/Resources/data/scripts/as.json | 47 +- .../Intl/Resources/data/scripts/az.json | 2 +- .../Intl/Resources/data/scripts/az_Cyrl.json | 2 +- .../Intl/Resources/data/scripts/be.json | 2 +- .../Intl/Resources/data/scripts/bg.json | 2 +- .../Intl/Resources/data/scripts/bn.json | 2 +- .../Intl/Resources/data/scripts/bo.json | 2 +- .../Intl/Resources/data/scripts/br.json | 8 +- .../Intl/Resources/data/scripts/bs.json | 2 +- .../Intl/Resources/data/scripts/bs_Cyrl.json | 2 +- .../Intl/Resources/data/scripts/ca.json | 2 +- .../Intl/Resources/data/scripts/ce.json | 2 +- .../Intl/Resources/data/scripts/cs.json | 2 +- .../Intl/Resources/data/scripts/cy.json | 2 +- .../Intl/Resources/data/scripts/da.json | 2 +- .../Intl/Resources/data/scripts/de.json | 2 +- .../Intl/Resources/data/scripts/dz.json | 2 +- .../Intl/Resources/data/scripts/ee.json | 2 +- .../Intl/Resources/data/scripts/el.json | 2 +- .../Intl/Resources/data/scripts/en.json | 2 +- .../Intl/Resources/data/scripts/en_AU.json | 2 +- .../Intl/Resources/data/scripts/en_GB.json | 2 +- .../Intl/Resources/data/scripts/en_IN.json | 2 +- .../Intl/Resources/data/scripts/es.json | 2 +- .../Intl/Resources/data/scripts/es_419.json | 2 +- .../Intl/Resources/data/scripts/es_MX.json | 2 +- .../Intl/Resources/data/scripts/es_US.json | 2 +- .../Intl/Resources/data/scripts/et.json | 2 +- .../Intl/Resources/data/scripts/eu.json | 2 +- .../Intl/Resources/data/scripts/fa.json | 2 +- .../Intl/Resources/data/scripts/fa_AF.json | 2 +- .../Intl/Resources/data/scripts/fi.json | 2 +- .../Intl/Resources/data/scripts/fo.json | 6 +- .../Intl/Resources/data/scripts/fr.json | 2 +- .../Intl/Resources/data/scripts/fr_CA.json | 2 +- .../Intl/Resources/data/scripts/fy.json | 2 +- .../Intl/Resources/data/scripts/ga.json | 2 +- .../Intl/Resources/data/scripts/gd.json | 2 +- .../Intl/Resources/data/scripts/gl.json | 2 +- .../Intl/Resources/data/scripts/gu.json | 2 +- .../Intl/Resources/data/scripts/he.json | 2 +- .../Intl/Resources/data/scripts/hi.json | 2 +- .../Intl/Resources/data/scripts/hr.json | 2 +- .../Intl/Resources/data/scripts/hu.json | 2 +- .../Intl/Resources/data/scripts/hy.json | 2 +- .../Intl/Resources/data/scripts/id.json | 2 +- .../Intl/Resources/data/scripts/ii.json | 2 +- .../Intl/Resources/data/scripts/in.json | 2 +- .../Intl/Resources/data/scripts/is.json | 2 +- .../Intl/Resources/data/scripts/it.json | 2 +- .../Intl/Resources/data/scripts/iw.json | 2 +- .../Intl/Resources/data/scripts/ja.json | 2 +- .../Intl/Resources/data/scripts/ka.json | 2 +- .../Intl/Resources/data/scripts/kk.json | 2 +- .../Intl/Resources/data/scripts/km.json | 2 +- .../Intl/Resources/data/scripts/kn.json | 2 +- .../Intl/Resources/data/scripts/ko.json | 2 +- .../Intl/Resources/data/scripts/ks.json | 2 +- .../Intl/Resources/data/scripts/ky.json | 2 +- .../Intl/Resources/data/scripts/lb.json | 2 +- .../Intl/Resources/data/scripts/lo.json | 2 +- .../Intl/Resources/data/scripts/lt.json | 2 +- .../Intl/Resources/data/scripts/lv.json | 2 +- .../Intl/Resources/data/scripts/meta.json | 2 +- .../Intl/Resources/data/scripts/mk.json | 2 +- .../Intl/Resources/data/scripts/ml.json | 2 +- .../Intl/Resources/data/scripts/mn.json | 4 +- .../Intl/Resources/data/scripts/mr.json | 2 +- .../Intl/Resources/data/scripts/ms.json | 2 +- .../Intl/Resources/data/scripts/mt.json | 2 +- .../Intl/Resources/data/scripts/my.json | 2 +- .../Intl/Resources/data/scripts/nb.json | 2 +- .../Intl/Resources/data/scripts/ne.json | 2 +- .../Intl/Resources/data/scripts/nl.json | 2 +- .../Intl/Resources/data/scripts/nn.json | 2 +- .../Intl/Resources/data/scripts/no.json | 2 +- .../Intl/Resources/data/scripts/om.json | 2 +- .../Intl/Resources/data/scripts/or.json | 30 +- .../Intl/Resources/data/scripts/os.json | 2 +- .../Intl/Resources/data/scripts/pa.json | 2 +- .../Intl/Resources/data/scripts/pa_Arab.json | 2 +- .../Intl/Resources/data/scripts/pl.json | 2 +- .../Intl/Resources/data/scripts/ps.json | 2 +- .../Intl/Resources/data/scripts/pt.json | 2 +- .../Intl/Resources/data/scripts/pt_PT.json | 2 +- .../Intl/Resources/data/scripts/rm.json | 2 +- .../Intl/Resources/data/scripts/ro.json | 2 +- .../Intl/Resources/data/scripts/ru.json | 6 +- .../Intl/Resources/data/scripts/se.json | 2 +- .../Intl/Resources/data/scripts/se_FI.json | 2 +- .../Intl/Resources/data/scripts/sh.json | 2 +- .../Intl/Resources/data/scripts/si.json | 2 +- .../Intl/Resources/data/scripts/sk.json | 2 +- .../Intl/Resources/data/scripts/sl.json | 2 +- .../Intl/Resources/data/scripts/so.json | 2 +- .../Intl/Resources/data/scripts/sq.json | 2 +- .../Intl/Resources/data/scripts/sr.json | 2 +- .../Intl/Resources/data/scripts/sr_Latn.json | 2 +- .../Intl/Resources/data/scripts/sv.json | 2 +- .../Intl/Resources/data/scripts/sw.json | 2 +- .../Intl/Resources/data/scripts/ta.json | 2 +- .../Intl/Resources/data/scripts/te.json | 2 +- .../Intl/Resources/data/scripts/tg.json | 2 +- .../Intl/Resources/data/scripts/th.json | 2 +- .../Intl/Resources/data/scripts/ti.json | 2 +- .../Intl/Resources/data/scripts/tl.json | 2 +- .../Intl/Resources/data/scripts/to.json | 2 +- .../Intl/Resources/data/scripts/tr.json | 2 +- .../Intl/Resources/data/scripts/tt.json | 2 +- .../Intl/Resources/data/scripts/ug.json | 2 +- .../Intl/Resources/data/scripts/uk.json | 2 +- .../Intl/Resources/data/scripts/ur.json | 2 +- .../Intl/Resources/data/scripts/uz.json | 2 +- .../Intl/Resources/data/scripts/uz_Arab.json | 2 +- .../Intl/Resources/data/scripts/uz_Cyrl.json | 2 +- .../Intl/Resources/data/scripts/vi.json | 2 +- .../Intl/Resources/data/scripts/wo.json | 2 +- .../Intl/Resources/data/scripts/yi.json | 2 +- .../Intl/Resources/data/scripts/zh.json | 2 +- .../Intl/Resources/data/scripts/zh_HK.json | 2 +- .../Intl/Resources/data/scripts/zh_Hant.json | 2 +- .../Resources/data/scripts/zh_Hant_HK.json | 2 +- .../Intl/Resources/data/scripts/zu.json | 2 +- .../Intl/Resources/data/svn-info.txt | 8 +- .../Component/Intl/Resources/data/version.txt | 2 +- .../AbstractCurrencyDataProviderTest.php | 3 + .../AbstractLanguageDataProviderTest.php | 1 + 838 files changed, 3529 insertions(+), 1419 deletions(-) diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index e552b994fd361..c4f80ca6c18d7 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -235,7 +235,7 @@ public static function getIcuDataVersion() */ public static function getIcuStubVersion() { - return '60.2'; + return '61.1'; } /** diff --git a/src/Symfony/Component/Intl/Resources/bin/icu.ini b/src/Symfony/Component/Intl/Resources/bin/icu.ini index da25128e2868c..ba613bb5c9884 100644 --- a/src/Symfony/Component/Intl/Resources/bin/icu.ini +++ b/src/Symfony/Component/Intl/Resources/bin/icu.ini @@ -16,3 +16,4 @@ 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 60 = http://source.icu-project.org/repos/icu/tags/release-60-2/icu4c/source +61 = http://source.icu-project.org/repos/icu/tags/release-61-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 ab8a227fbb157..195beed4423e6 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -391,6 +391,10 @@ ], "MRO": [ "MRO", + "Mauritaniese ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritaniese ouguiya" ], "MUR": [ @@ -547,6 +551,10 @@ ], "STD": [ "STD", + "São Tomé en Príncipe dobra (1977–2017)" + ], + "STN": [ + "STN", "São Tomé en Príncipe dobra" ], "SYP": [ 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 9dd49f7e6c2f7..433d73d635b08 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.31.33", + "Version": "2.1.38.69", "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 f2e9be6d72168..2a5a593d6393b 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Mɔretenia Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mɔretenia Ouguiya" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Sao Tome ne Principe Dobra (1977–2017)" + ], + "STN": [ + "STN", "Sao Tome ne Principe Dobra" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/am.json b/src/Symfony/Component/Intl/Resources/data/currencies/am.json index 7f441751bf482..9058b8c350062 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -383,6 +383,10 @@ ], "MRO": [ "MRO", + "የሞሪቴኒያ ኦውጉያ (1973–2017)" + ], + "MRU": [ + "MRU", "የሞሪቴኒያ ኦውጉያ" ], "MUR": [ @@ -535,6 +539,10 @@ ], "STD": [ "STD", + "የሳኦ ቶሜ እና ፕሪንሲፔ ዶብራ (1977–2017)" + ], + "STN": [ + "STN", "የሳኦ ቶሜ እና ፕሪንሲፔ ዶብራ" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index cb346b397f259..fb9e5f0b8c708 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.36.86", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -567,6 +567,10 @@ ], "MRO": [ "أ.م.‏", + "أوقية موريتانية - 1973-2017" + ], + "MRU": [ + "MRU", "أوقية موريتانية" ], "MTL": [ @@ -779,6 +783,10 @@ ], "STD": [ "STD", + "دوبرا ساو تومي وبرينسيبي - 1977-2017" + ], + "STN": [ + "STN", "دوبرا ساو تومي وبرينسيبي" ], "SUR": [ 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 26804e714d7f6..ecc1cf9213504 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.31.33", + "Version": "2.1.38.80", "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 75679c039d979..e0b32b42e0696 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.31.33", + "Version": "2.1.38.80", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json index 6795a89c4676d..6108307376e6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.35.71", + "Version": "2.1.38.80", "Names": { "KMF": [ "CF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json index b2c5d299bfb69..28d3d475bce57 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.37.1", + "Version": "2.1.38.80", "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 ac9e7714d2244..697a7f3ca7842 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.37.1", + "Version": "2.1.38.80", "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 a273c2b4243d5..143137b28e4cd 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.31.33", + "Version": "2.1.38.80", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/as.json b/src/Symfony/Component/Intl/Resources/data/currencies/as.json index 54086709f97f7..3657dbd3d1a57 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/as.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/as.json @@ -1,525 +1,533 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", - "AED" + "সংযুক্ত আৰব আমিৰাত ডিৰহেম" ], "AFN": [ "AFN", - "AFN" + "আফগান আফগানী" ], "ALL": [ "ALL", - "ALL" + "আলবেনীয় লেক" ], "AMD": [ "AMD", - "AMD" + "আৰ্মেনিয়ান ড্ৰাম" ], "ANG": [ "ANG", - "ANG" + "নেডাৰলেণ্ডছ এণ্টিলিয়েন গিল্ডাৰ" ], "AOA": [ "AOA", - "AOA" + "এংগোলান কোৱাঞ্জা" ], "ARS": [ "ARS", - "ARS" + "আৰ্জেণ্টাইন পেছো" ], "AUD": [ "A$", - "অস্ট্রেলিয়ান ডলার" + "অষ্ট্ৰেলিয়ান ডলাৰ" ], "AWG": [ "AWG", - "AWG" + "আৰুবান ফ্ল’ৰিন" ], "AZN": [ "AZN", - "AZN" + "আজেৰবাইজানী মানাত" ], "BAM": [ "BAM", - "BAM" + "ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা কনভাৰ্টিব্‌ল মাৰ্ক" ], "BBD": [ "BBD", - "BBD" + "বাৰ্বাডিয়ান ডলাৰ" ], "BDT": [ "BDT", - "BDT" + "বাংলাদেশী টাকা" ], "BGN": [ "BGN", - "BGN" + "বুলগেৰীয় লেভ" ], "BHD": [ "BHD", - "BHD" + "বাহৰেইনী ডিনাৰ" ], "BIF": [ "BIF", - "BIF" + "বুৰুণ্ডিয়ান ফ্ৰেংক" ], "BMD": [ "BMD", - "BMD" + "বাৰ্মুডান ডলাৰ" ], "BND": [ "BND", - "BND" + "ব্ৰুনেই ডলাৰ" ], "BOB": [ "BOB", - "BOB" + "বলিভিয়ান বলিভিয়ানো" ], "BRL": [ "R$", - "BRL" + "ব্ৰাজিলিয়ান ৰিয়েল" ], "BSD": [ "BSD", - "BSD" + "বাহামিয়ান ডলাৰ" ], "BTN": [ "BTN", - "BTN" + "ভুটানী নংগলট্ৰাম" ], "BWP": [ "BWP", - "BWP" + "ব’টচোৱানান পুলা" ], "BYN": [ "BYN", - "BYN" + "বেলাৰুছীয় ৰুবেল" ], "BZD": [ "BZD", - "BZD" + "বেলিজ ডলাৰ" ], "CAD": [ "CA$", - "CAD" + "কানাডিয়ান ডলাৰ" ], "CDF": [ "CDF", - "CDF" + "কংগো ফ্ৰেংক" ], "CHF": [ "CHF", - "CHF" + "চুইছ ফ্ৰেংক" ], "CLP": [ "CLP", - "CLP" + "চিলিয়ান পেছো" ], "CNH": [ "CNH", - "CNH" + "চীনা ইউৱান (অফশ্ব’ৰ)" ], "CNY": [ "CN¥", - "CNY" + "চীনা ইউৱান" ], "COP": [ "COP", - "COP" + "কলম্বিয়ান পেছো" ], "CRC": [ "CRC", - "CRC" + "কোষ্টা ৰিকান কোলন" ], "CUC": [ "CUC", - "CUC" + "কিউবান ৰূপান্তৰযোগ্য পেছো" ], "CUP": [ "CUP", - "CUP" + "কিউবান পেছো" ], "CVE": [ "CVE", - "CVE" + "কেপ ভাৰ্দে এছকুডো" ], "CZK": [ "CZK", - "CZK" + "চেক কোৰুনা" ], "DJF": [ "DJF", - "DJF" + "জিবুটি ফ্ৰেংক" ], "DKK": [ "DKK", - "DKK" + "ডেনিচ ক্ৰোন" ], "DOP": [ "DOP", - "DOP" + "ড’মিনিকান পেছো" ], "DZD": [ "DZD", - "DZD" + "আলজেৰীয় ডিনাৰ" ], "EGP": [ "EGP", - "EGP" + "ইজিপ্তৰ পাউণ্ড" ], "ERN": [ "ERN", - "ERN" + "এৰিট্ৰিয়ন নাক্‌ফা" ], "ETB": [ "ETB", - "ETB" + "ইথিঅ’পিয়ান বিৰ" ], "EUR": [ "€", - "ইউরোর" + "ইউৰো" ], "FJD": [ "FJD", - "ফিজিয়ান ডলার" + "ফিজিয়ান ডলাৰ" ], "FKP": [ "FKP", - "FKP" + "ফকলেণ্ড দ্বীপপুঞ্জৰ পাউণ্ড" ], "GBP": [ "£", - "GBP" + "ব্ৰিটিছ পাউণ্ড" ], "GEL": [ "GEL", - "GEL" + "জৰ্জিয়ান লাৰি" ], "GHS": [ "GHS", - "GHS" + "ঘানাৰ চেডি" ], "GIP": [ "GIP", - "GIP" + "জিব্ৰাল্টৰ পাউণ্ড" ], "GMD": [ "GMD", - "GMD" + "গাম্বিয়া ডালাছি" ], "GNF": [ "GNF", - "GNF" + "গিনি ফ্ৰেংক" ], "GTQ": [ "GTQ", - "GTQ" + "গুৱাটেমালা কুৱেৎজাল" ], "GYD": [ "GYD", - "GYD" + "গায়ানিজ ডলাৰ" ], "HKD": [ "HK$", - "HKD" + "হং কং ডলাৰ" ], "HNL": [ "HNL", - "HNL" + "হোন্দুৰান লেম্পিৰা" ], "HRK": [ "HRK", - "HRK" + "ক্ৰোৱেছিয়ান কুনা" ], "HTG": [ "HTG", - "HTG" + "হাইটিয়ান গৌৰ্ড" ], "HUF": [ "HUF", - "HUF" + "হাংগেৰীয়ান ফ’ৰিণ্ট" ], "IDR": [ "IDR", - "IDR" + "ইণ্ডোনেচিয়ান ৰুপিয়াহ" ], "ILS": [ "₪", - "ILS" + "ইজৰাইলী নিউ শ্বেকেল" ], "INR": [ "₹", - "INR" + "ভাৰতীয় ৰুপী" ], "IQD": [ "IQD", - "IQD" + "ইৰাকী ডিনাৰ" ], "IRR": [ "IRR", - "IRR" + "ইৰানীয়ান ৰিয়েল" ], "ISK": [ "ISK", - "ISK" + "আইচলেণ্ডিক ক্ৰোনা" ], "JMD": [ "JMD", - "JMD" + "জামাইকান ডলাৰ" ], "JOD": [ "JOD", - "JOD" + "জৰ্ডানিয়ান ডিনাৰ" ], "JPY": [ "JP¥", - "JPY" + "জাপানী য়েন" ], "KES": [ "KES", - "KES" + "কেনিয়ান শ্বিলিং" ], "KGS": [ "KGS", - "KGS" + "কিৰ্গিস্তানী ছোম" ], "KHR": [ "KHR", - "KHR" + "কেম্ব’ডিয়ান ৰিয়েল" ], "KMF": [ "KMF", - "KMF" + "ক’মোৰিয়ান ফ্ৰেংক" ], "KPW": [ "KPW", - "KPW" + "উত্তৰ কোৰিয়াৰ ওৱান" ], "KRW": [ "₩", - "KRW" + "দক্ষিণ কোৰিয়াৰ ওৱান" ], "KWD": [ "KWD", - "KWD" + "কুৱেইটি ডিনাৰ" ], "KYD": [ "KYD", - "KYD" + "কেইমেন দ্বীপপুঞ্জৰ ডলাৰ" ], "KZT": [ "KZT", - "KZT" + "কাজাখস্তানী তেঞ্জ" ], "LAK": [ "LAK", - "LAK" + "লাওচিয়ান কিপ" ], "LBP": [ "LBP", - "LBP" + "লেবানীজ পাউণ্ড" ], "LKR": [ "LKR", - "LKR" + "শ্ৰীলংকান ৰুপী" ], "LRD": [ "LRD", - "LRD" + "লাইবেৰিয়ান ডলাৰ" ], "LYD": [ "LYD", - "LYD" + "লিবিয়ান ডিনাৰ" ], "MAD": [ "MAD", - "MAD" + "মৰোক্কান ডিৰহাম" ], "MDL": [ "MDL", - "MDL" + "মোলডোভান লেউ" ], "MGA": [ "MGA", - "MGA" + "মালাগাছী এৰিয়াৰী" ], "MKD": [ "MKD", - "MKD" + "মেচিডোনীয় ডেনাৰ" ], "MMK": [ "MMK", - "MMK" + "ম্যানমাৰ কিয়াট" ], "MNT": [ "MNT", - "MNT" + "মঙ্গোলিয়ান টুৰ্গিক" ], "MOP": [ "MOP", - "MOP" + "মেকানীজ পাটাকা" ], "MRO": [ "MRO", - "MRO" + "ম’ৰিটেনিয়ান ঔগুইয়া (1973–2017)" + ], + "MRU": [ + "MRU", + "ম’ৰিটেনিয়ান ঔগুইয়া" ], "MUR": [ "MUR", - "MUR" + "মৰিচিয়ান ৰুপী" ], "MVR": [ "MVR", - "MVR" + "মালডিভিয়ান ৰুফিয়া" ], "MWK": [ "MWK", - "MWK" + "মালাউইয়ান কোৱাচা" ], "MXN": [ "MX$", - "MXN" + "মেক্সিকান পেছো" ], "MYR": [ "MYR", - "MYR" + "মালায়েচিয়ান ৰিংগিট" ], "MZN": [ "MZN", - "MZN" + "মোজাম্বিকান মেটিকল" ], "NAD": [ "NAD", - "NAD" + "নামিবিয়ান ডলাৰ" ], "NGN": [ "NGN", - "NGN" + "নাইজেৰিয়ান নাইৰা" ], "NIO": [ "NIO", - "NIO" + "নিকাৰাগুৱান কোৰ্ডোবা" ], "NOK": [ "NOK", - "NOK" + "নৰৱেজিয়ান ক্ৰোন" ], "NPR": [ "NPR", - "NPR" + "নেপালী ৰুপী" ], "NZD": [ "NZ$", - "নিউজিল্যান্ড ডলার" + "নিউজিলেণ্ড ডলাৰ" ], "OMR": [ "OMR", - "OMR" + "ওমানি ৰিয়েল" ], "PAB": [ "PAB", - "PAB" + "পানামেনিয়ান বাল্বোৱা" ], "PEN": [ "PEN", - "PEN" + "পেৰুভিয়ান ছ’ল" ], "PGK": [ "PGK", - "পাপুয়া নিউ গিনিন কেনিয়া" + "পাপুৱা নিউ গিনি কিনা" ], "PHP": [ "PHP", - "ফিলিপাইন পেসো" + "ফিলিপিন পেইছ’" ], "PKR": [ "PKR", - "PKR" + "পাকিস্তানী ৰুপী" ], "PLN": [ "PLN", - "PLN" + "প’লিচ জোল্টী" ], "PYG": [ "PYG", - "PYG" + "পাৰাগুয়ান গুৱাৰানি" ], "QAR": [ "QAR", - "QAR" + "কাটাৰি ৰিয়েল" ], "RON": [ "RON", - "RON" + "ৰোমানীয় লেউ" ], "RSD": [ "RSD", - "RSD" + "চাৰ্বিয়ান ডিনাৰ" ], "RUB": [ "RUB", - "RUB" + "ৰাছিয়ান ৰুব্‌ল" ], "RWF": [ "RWF", - "RWF" + "ৰোৱান্দান ফ্ৰেংক" ], "SAR": [ "SAR", - "SAR" + "চৌডি ৰিয়েল" ], "SBD": [ "SBD", - "সলোমন দ্বীপপুঞ্জ ডলার" + "চোলোমোন দ্বীপপুঞ্জৰ ডলাৰ" ], "SCR": [ "SCR", - "SCR" + "ছেচেলৱা ৰুপী" ], "SDG": [ "SDG", - "SDG" + "চুডানী পাউণ্ড" ], "SEK": [ "SEK", - "SEK" + "চুইডিছ ক্ৰোনা" ], "SGD": [ "SGD", - "সিঙ্গাপুর ডলার" + "ছিংগাপুৰ ডলাৰ" ], "SHP": [ "SHP", - "SHP" + "ছেইণ্ট হেলেনা পাউণ্ড" ], "SLL": [ "SLL", - "SLL" + "চিয়েৰা লিঅ’নৰ লিঅ’ন" ], "SOS": [ "SOS", - "SOS" + "চোমালি শ্বিলিং" ], "SRD": [ "SRD", - "SRD" + "ছুৰিনামী ডলাৰ" ], "SSP": [ "SSP", - "SSP" + "দক্ষিণ চুডানীজ পাউণ্ড" ], "STD": [ "STD", - "STD" + "চাও টোমে আৰু প্ৰিনচিপে ডোব্‌ৰা (1977–2017)" + ], + "STN": [ + "STN", + "চাও টোমে আৰু প্ৰিনচিপে ডোব্‌ৰা" ], "SYP": [ "SYP", - "SYP" + "চিৰিয়ান পাউণ্ড" ], "SZL": [ "SZL", - "SZL" + "স্বাজি লিলেংগেনি" ], "THB": [ "THB", @@ -527,99 +535,99 @@ ], "TJS": [ "TJS", - "TJS" + "তাজিকিস্তানী ছোমনি" ], "TMT": [ "TMT", - "TMT" + "তুৰ্কমেনিস্তানী মানাত" ], "TND": [ "TND", - "TND" + "টুনিচিয়ান ডিনাৰ" ], "TOP": [ "TOP", - "টোঙ্গান পাংগা" + "টংগান পাআংগা" ], "TRY": [ "TRY", - "TRY" + "তুৰ্কীৰ লিৰা" ], "TTD": [ "TTD", - "TTD" + "ট্ৰিনিডাড আৰু টোবাগো ডলাৰ" ], "TWD": [ "NT$", - "TWD" + "নিউ টাইৱান ডলাৰ" ], "TZS": [ "TZS", - "TZS" + "টানজানিয়ান শ্বিলিং" ], "UAH": [ "UAH", - "UAH" + "ইউক্ৰেইনীয় হৃভনিয়া" ], "UGX": [ "UGX", - "UGX" + "উগাণ্ডান শ্বিলিং" ], "USD": [ "US$", - "USD" + "ইউ. এছ. ডলাৰ" ], "UYU": [ "UYU", - "UYU" + "উৰুগুৱেয়ান পেছো" ], "UZS": [ "UZS", - "UZS" + "উজবেকিস্তানী ছোম" ], "VEF": [ "VEF", - "VEF" + "ভেনিজুৱেলান বলিভাৰ" ], "VND": [ "₫", - "ভিয়েতনামী ডং" + "ভিয়েটনামীজ ডং" ], "VUV": [ "VUV", - "ভানুয়াতু ভাতু" + "ভানাটুৰ ভাটু" ], "WST": [ "WST", - "সামোয়ান তাল" + "ছামোৱান টালা" ], "XAF": [ "FCFA", - "XAF" + "মধ্য আফ্ৰিকান CFA ফ্ৰেংক" ], "XCD": [ "EC$", - "XCD" + "ইষ্ট কেৰিবিয়ান ডলাৰ" ], "XOF": [ "CFA", - "XOF" + "পশ্চিম আফ্ৰিকান CFA ফ্ৰেংক" ], "XPF": [ "CFPF", - "CFP ফ্রাঙ্ক" + "CFP ফ্ৰেংক" ], "YER": [ "YER", - "YER" + "য়েমেনী ৰিয়েল" ], "ZAR": [ "ZAR", - "ZAR" + "দক্ষিণ আফ্ৰিকাৰ ৰাণ্ড" ], "ZMW": [ "ZMW", - "ZMW" + "জাম্বিয়ান কোৱাচা" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az.json b/src/Symfony/Component/Intl/Resources/data/currencies/az.json index f4ec9411bbab4..1b8f992166279 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -227,7 +227,7 @@ ], "CNH": [ "CNH", - "CNH" + "Çin Yuanı (ofşor)" ], "CNY": [ "CN¥", @@ -619,6 +619,10 @@ ], "MRO": [ "MRO", + "Mavritaniya Ugiyası (1973–2017)" + ], + "MRU": [ + "MRU", "Mavritaniya Ugiyası" ], "MTP": [ @@ -827,6 +831,10 @@ ], "STD": [ "STD", + "San Tom və Prinsip Dobrası (1977–2017)" + ], + "STN": [ + "STN", "San Tom və Prinsip Dobrası" ], "SUR": [ 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 ddb1ef0354b9f..ef472a1ec0733 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.37.1", + "Version": "2.1.38.69", "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 3cac3ea18e00d..473fb9f1f730a 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -367,6 +367,10 @@ ], "MRO": [ "MRO", + "маўрытанская ўгія (1973–2017)" + ], + "MRU": [ + "MRU", "маўрытанская ўгія" ], "MUR": [ @@ -515,6 +519,10 @@ ], "STD": [ "STD", + "добра Сан-Тамэ і Прынсіпі (1977–2017)" + ], + "STN": [ + "STN", "добра Сан-Тамэ і Прынсіпі" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 780640932991f..271539f5816b4 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.37.59", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -599,6 +599,10 @@ ], "MRO": [ "MRO", + "Мавританска угия (1973–2017)" + ], + "MRU": [ + "MRU", "Мавританска угия" ], "MTL": [ @@ -819,6 +823,10 @@ ], "STD": [ "STD", + "Добра на Сао Томе и Принсипи (1977–2017)" + ], + "STN": [ + "STN", "Добра на Сао Томе и Принсипи" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index 8beb7ec703f90..37e918d460a46 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.31.33", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "mɔritani Uguwiya (1973–2017)" + ], + "MRU": [ + "MRU", "mɔritani Uguwiya" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "sawotome Dobra (1977–2017)" + ], + "STN": [ + "STN", "sawotome Dobra" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json index 21c0960aeb6e6..fd6efd48f21b6 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.36.86", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "মৌরিতানিয়ান ওউগুইয়া (১৯৭৩–২০১৭)" + ], + "MRU": [ + "MRU", "মৌরিতানিয়ান ওউগুইয়া" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "সাও টোমে এবং প্রিন্সিপে ডোবরা (১৯৭৭–২০১৭)" + ], + "STN": [ + "STN", "সাও টোমে এবং প্রিন্সিপে ডোবরা" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json index 0d051b4271d85..a54fc5afb2edb 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.36.86", + "Version": "2.1.38.69", "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 295efd14ebe27..a69686767c23c 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.31.33", + "Version": "2.1.38.69", "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 5232f39adf3d2..22eea9943c716 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -679,6 +679,10 @@ ], "MRO": [ "MRO", + "ouguiya Maouritania (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya Maouritania" ], "MTL": [ @@ -911,6 +915,10 @@ ], "STD": [ "STD", + "dobra São Tomé ha Príncipe (1977–2017)" + ], + "STN": [ + "STN", "dobra São Tomé ha Príncipe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index 446f7681a1ea9..f622b92404f19 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -647,6 +647,10 @@ ], "MRO": [ "MRO", + "Mauritanijska ugvija (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanijska ugvija" ], "MTL": [ @@ -875,6 +879,10 @@ ], "STD": [ "STD", + "Dobra Sao Toma i Principa (1977–2017)" + ], + "STN": [ + "STN", "Dobra Sao Toma i Principa" ], "SUR": [ 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 2a4ca6cc3a922..8ea737ab67642 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -619,6 +619,10 @@ ], "MRO": [ "MRO", + "Мауританијска угвија (1973–2017)" + ], + "MRU": [ + "MRU", "Мауританијска угвија" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "Сао Томе и Принципе добра (1977–2017)" + ], + "STN": [ + "STN", "Сао Томе и Принципе добра" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 86408ba8de09c..adeffbcc735fc 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.37.22", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -680,6 +680,10 @@ ], "MRO": [ "MRO", + "ouguiya maurità (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya maurità" ], "MTL": [ @@ -908,6 +912,10 @@ ], "STD": [ "STD", + "dobra de São Tomé i Príncipe (1977–2017)" + ], + "STN": [ + "STN", "dobra de São Tomé i Príncipe" ], "SUR": [ 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 279ca881cbee6..56d97081ce092 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.31.33", + "Version": "2.1.38.39", "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 05b9709c9ec16..15a7970ea485f 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -363,6 +363,10 @@ ], "MRO": [ "MRO", + "Мавританин уги (1973–2017)" + ], + "MRU": [ + "MRU", "Мавританин уги" ], "MUR": [ @@ -511,6 +515,10 @@ ], "STD": [ "STD", + "Сан-Томен а, Принсипин а добра (1977–2017)" + ], + "STN": [ + "STN", "Сан-Томен а, Принсипин а добра" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json index 14ac4cbe9ca2a..75336abaaea17 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.37.11", + "Version": "2.1.39.15", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauritánská ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritánská ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "svatotomášská dobra (1977–2017)" + ], + "STN": [ + "STN", "svatotomášská dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json index 36bc072dcfde8..427c7c4ee5368 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.37.17", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -643,6 +643,10 @@ ], "MRO": [ "MRO", + "Ouguiya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Mauritania" ], "MTL": [ @@ -859,6 +863,10 @@ ], "STD": [ "STD", + "Dobra São Tomé a Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra São Tomé a Príncipe" ], "SVC": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index a641887784cfc..bf7efa167f098 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -603,6 +603,10 @@ ], "MRO": [ "MRO", + "mauritansk ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritansk ouguiya" ], "MTL": [ @@ -823,6 +827,10 @@ ], "STD": [ "STD", + "dobra fra Sao Tome og Principe (1977–2017)" + ], + "STN": [ + "STN", "dobra fra Sao Tome og Principe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index 015dfbd13899d..0cc2637bf5d70 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.37.96", + "Version": "2.1.39.41", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Mauretanischer Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauretanischer Ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "São-toméischer Dobra (1977–2017)" + ], + "STN": [ + "STN", "São-toméischer Dobra" ], "SUR": [ 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 0b7774ebd5806..039f5bea7766e 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.37.8", + "Version": "2.1.39.37", "Names": { "BYN": [ "BYN", @@ -16,6 +16,10 @@ "PEN": [ "PEN", "Peruanischer Neuer Sol" + ], + "STN": [ + "STN", + "São-toméischer Dobra (2018)" ] } } 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 84446646d2031..31219507293d2 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.37.1", + "Version": "2.1.38.39", "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 56ef080168807..2a8aa8ad9308c 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.31.33", + "Version": "2.1.38.39", "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 bbcf5f45e2d83..52065987d1995 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.36.86", + "Version": "2.1.38.69", "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 8dcf4eb6f90c1..f134982957c13 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -679,6 +679,10 @@ ], "MRO": [ "MRO", + "mɔritaniaga ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mɔritaniaga ouguiya" ], "MTL": [ @@ -875,6 +879,10 @@ ], "STD": [ "STD", + "são tomé kple príncipega dobra (1977–2017)" + ], + "STN": [ + "STN", "são tomé kple príncipega dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/el.json b/src/Symfony/Component/Intl/Resources/data/currencies/el.json index 12fbed00933c8..6340817056487 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -612,6 +612,10 @@ ], "MRO": [ "MRO", + "Ουγκίγια Μαυριτανίας (1973–2017)" + ], + "MRU": [ + "MRU", "Ουγκίγια Μαυριτανίας" ], "MTL": [ @@ -836,6 +840,10 @@ ], "STD": [ "STD", + "Ντόμπρα Σάο Τομέ και Πρίνσιπε (1977–2017)" + ], + "STN": [ + "STN", "Ντόμπρα Σάο Τομέ και Πρίνσιπε" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en.json b/src/Symfony/Component/Intl/Resources/data/currencies/en.json index 65fdf4e06b47a..fec62d406cfef 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.37.44", + "Version": "2.1.39.27", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Mauritanian Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanian Ouguiya" ], "MTL": [ @@ -915,11 +919,11 @@ ], "STD": [ "STD", - "São Tomé & Príncipe Dobra" + "São Tomé & Príncipe Dobra (1977–2017)" ], "STN": [ "STN", - "São Tomé & Príncipe Dobra (2018)" + "São Tomé & Príncipe Dobra" ], "SUR": [ "SUR", 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 9a8ea6f1f1f56..488c0fed8176c 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.35.71", + "Version": "2.1.38.69", "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 6a53c1ba07bb1..d9661b945365e 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.37.6", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 f59b36695f93c..f24536aa65829 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.37.6", + "Version": "2.1.38.73", "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 36f0ae6e69a6f..335c3a8a441c1 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.31.33", + "Version": "2.1.38.69", "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 e93c048d7b987..541eab8086b83 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.31.33", + "Version": "2.1.38.69", "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 e745ac4ce83f3..d432300c1988d 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.31.33", + "Version": "2.1.38.69", "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 45a39b620bcfe..770db1cdef1d9 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.31.33", + "Version": "2.1.38.69", "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 e268bbaecb356..97b12b111cab7 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.31.33", + "Version": "2.1.38.69", "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 84a46ec1bf8a9..96792d4e49ee3 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.31.33", + "Version": "2.1.38.69", "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 9c13adf27b2fc..3b129b9b70621 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.37.22", + "Version": "2.1.38.73", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 6b0d8164269eb..f97dfbe29ea28 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.31.33", + "Version": "2.1.38.69", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 56268585a9cae..09888022b22f1 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.37.6", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 35207b7c96ebe..089303d9a372a 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.31.33", + "Version": "2.1.38.69", "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 ec0114f740088..0e247348ac90e 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.31.33", + "Version": "2.1.38.69", "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 b9e1b291c43d7..3bb9c3b6391ef 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.31.33", + "Version": "2.1.38.69", "Names": { "FKP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json index 749e2f568f2dd..12f1a65fc2692 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "SHP": [ "SHP", 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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 42a66bda99c2f..905fafb905388 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.31.33", + "Version": "2.1.38.69", "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 e36a8c8e74e07..ade8921530d55 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.31.33", + "Version": "2.1.38.69", "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 f65557c22413e..799bb0499e407 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.31.33", + "Version": "2.1.38.69", "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 ee84873589ada..029114890ac2d 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.31.33", + "Version": "2.1.38.69", "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 373fbdabd214c..7473c91f36843 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.31.33", + "Version": "2.1.38.69", "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 42a66bda99c2f..905fafb905388 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.31.33", + "Version": "2.1.38.69", "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 42a66bda99c2f..905fafb905388 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.31.33", + "Version": "2.1.38.69", "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 6a1f6160a67f2..8b64ae3472aa2 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.31.33", + "Version": "2.1.38.69", "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 a776544b0f241..af83b0d0fbe66 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.31.33", + "Version": "2.1.38.69", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 281870573824b..dd0f26bd6aa7f 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.31.33", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 15bdbf7b64d76..3099a40131d7f 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.31.33", + "Version": "2.1.38.69", "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 15556478575a0..3fee0e9c349b4 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.31.33", + "Version": "2.1.38.69", "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 f2d917681fe97..6ac1a3a4bbfb0 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.31.33", + "Version": "2.1.38.69", "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 21d185eb5afd9..5d9be456a1d59 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.31.33", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 7f302b2b85e0c..c22fdd94ff1c1 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.31.33", + "Version": "2.1.38.69", "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 fd95a116b078b..f238b7eebecfa 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.31.33", + "Version": "2.1.38.69", "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 06040fe524020..3a1f1b71928bb 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.31.33", + "Version": "2.1.38.69", "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 ff346bdae1a3e..d8e367ddb0d7f 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.31.33", + "Version": "2.1.38.69", "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 7de7db3e06721..2f7a9e563ac56 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.31.33", + "Version": "2.1.38.69", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 be462c4175d89..5dc182dcd5e0d 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.31.33", + "Version": "2.1.38.69", "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 00831e2d9f293..f63e78f28b638 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.31.33", + "Version": "2.1.38.69", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 6b0d8164269eb..f97dfbe29ea28 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.31.33", + "Version": "2.1.38.69", "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 b8ade22e9643e..6c972027d5330 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.37.6", + "Version": "2.1.38.73", "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 e7396608ae89a..41ee85dd1add1 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.31.33", + "Version": "2.1.38.69", "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 14c33971a3a70..4566e56d4eb0c 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.31.33", + "Version": "2.1.38.69", "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 201cebdfdd0a3..decae5d65fc04 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.31.33", + "Version": "2.1.38.69", "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 6b0d8164269eb..f97dfbe29ea28 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.31.33", + "Version": "2.1.38.69", "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 bc57edd383fd8..e73e2f36d5bb5 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.31.33", + "Version": "2.1.38.69", "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 d2771bb79d3dd..ca72c115e79ef 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.31.33", + "Version": "2.1.38.69", "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 d8a1118405dc3..8831a19cf2e9f 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.31.33", + "Version": "2.1.38.69", "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 732ee98354926..4486a298177ba 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.37.1", + "Version": "2.1.38.69", "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 2214928f25cf4..1c47771507258 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.31.33", + "Version": "2.1.38.69", "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 04744532a47be..c3cd7e57fe5fb 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.31.33", + "Version": "2.1.38.69", "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 36f870b81c8fb..38a7410ea5dd3 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.31.33", + "Version": "2.1.38.69", "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 734c386e2d6d6..c89061feb7d9f 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.31.33", + "Version": "2.1.38.69", "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 9f06b8d6a991a..f01da362f1773 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.31.33", + "Version": "2.1.38.69", "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 433f1d9876211..13f64a6ee7420 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.31.33", + "Version": "2.1.38.69", "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 6b0d8164269eb..f97dfbe29ea28 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.31.33", + "Version": "2.1.38.69", "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 59a09c70d6cab..04f42a8b63fa4 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.31.33", + "Version": "2.1.38.69", "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 64fea7b6bca20..7d6653972392e 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.31.33", + "Version": "2.1.38.69", "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 e1534fc422d0e..deb1ec6392fc5 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.31.33", + "Version": "2.1.38.69", "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 d78476f68c566..d253ffd3e7bf9 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.31.33", + "Version": "2.1.38.69", "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 db7243d7da4d7..53cdbed6c2d94 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.31.33", + "Version": "2.1.38.69", "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 f551a2dd31cf5..ca16a14538843 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.31.33", + "Version": "2.1.38.69", "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 00831e2d9f293..f63e78f28b638 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.31.33", + "Version": "2.1.38.69", "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 f74a36f66a954..0219d7af2eca9 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.31.33", + "Version": "2.1.38.69", "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 49b0be2de739c..3fee0e9c349b4 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.37.1", + "Version": "2.1.38.69", "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 a878011396583..bf55b733f39fe 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.31.33", + "Version": "2.1.38.69", "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 b37bdc1d95d21..0e9e40ec81d56 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.37.22", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "uguiya (1973–2017)" + ], + "MRU": [ + "MRU", "uguiya" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "dobra (1977–2017)" + ], + "STN": [ + "STN", "dobra" ], "SUR": [ 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 287cd738fbd7f..cc5aa54141c80 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.37.22", + "Version": "2.1.38.39", "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 04fe560358548..f480435a1bbb2 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.37.22", + "Version": "2.1.38.39", "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 c25547c23cf9a..32147fcbace54 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.37.6", + "Version": "2.1.38.39", "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 fed2a133aa1d4..51f4759083b7f 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.31.33", + "Version": "2.1.38.39", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json index b228fddd8eebd..9e561cadc2107 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.32.37", + "Version": "2.1.38.39", "Names": { "BZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json index 9553a8c4923fe..bfd2654f85df3 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.37.6", + "Version": "2.1.38.39", "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 b4a4f54771b07..1113f30c52580 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.37.6", + "Version": "2.1.38.39", "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 9de3b680f8274..394888f06ad7d 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.37.6", + "Version": "2.1.38.39", "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 2aa410eba4553..5d05e4c6a35ee 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.31.33", + "Version": "2.1.38.39", "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 53a7c8b6acc63..fb0cf38b61233 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.37.6", + "Version": "2.1.38.39", "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 6b3e182487cc8..1ccb0f7ab97b7 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.37.6", + "Version": "2.1.38.39", "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 64358039d4c67..eee4643c18b26 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.31.33", + "Version": "2.1.38.39", "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 7197493f45059..08c1906b94211 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.37.6", + "Version": "2.1.38.39", "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 f6d930fe97e05..0af50119078ce 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.37.6", + "Version": "2.1.38.39", "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 f7f651a037fa4..a8759953d12c5 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.37.32", + "Version": "2.1.38.73", "Names": { "CNH": [ "CNH", @@ -17,6 +17,10 @@ "MYR", "ringit" ], + "STN": [ + "STN", + "dobra santotomense" + ], "THB": [ "THB", "baht tailandés" 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 e0f547fbd9b8a..dcd7f51348249 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.37.6", + "Version": "2.1.38.39", "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 f14049f8830ce..8cf79302c5f4c 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.37.6", + "Version": "2.1.38.39", "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 cb6cfe6122d8b..aba9b1234f19d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.6", + "Version": "2.1.38.39", "Names": { "PEN": [ "S\/", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json index e1484871ad34c..ab01e52743817 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.31.33", + "Version": "2.1.38.39", "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 6b3e182487cc8..1ccb0f7ab97b7 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.37.6", + "Version": "2.1.38.39", "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 5f3d0d3c958f7..490fb2ca1ce62 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.37.6", + "Version": "2.1.38.39", "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 6b3e182487cc8..1ccb0f7ab97b7 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.37.6", + "Version": "2.1.38.39", "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 b75a3ee641b20..c19c37fa2e4c8 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.37.22", + "Version": "2.1.38.73", "Names": { "JPY": [ "¥", @@ -9,6 +9,10 @@ "MYR", "ringit" ], + "STN": [ + "STN", + "dobra santotomense" + ], "THB": [ "THB", "bat" 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 2ede85c488eef..0c36d389b2640 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.37.6", + "Version": "2.1.38.39", "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 316e70b5f360c..b0186c31fb475 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.37.6", + "Version": "2.1.38.39", "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 804393805ca6a..94d63c3ea9596 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.37.22", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -608,6 +608,10 @@ ], "MRO": [ "MRO", + "Mauritaania ugia (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritaania ugia" ], "MTL": [ @@ -836,6 +840,10 @@ ], "STD": [ "STD", + "São Tomé ja Príncipe dobra (1977–2017)" + ], + "STN": [ + "STN", "São Tomé ja Príncipe dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json index 8741129aa1458..1b5dcd9758c11 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -384,6 +384,10 @@ ], "MRO": [ "MRO", + "Mauritaniako ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritaniako ouguiya" ], "MUR": [ @@ -532,6 +536,10 @@ ], "STD": [ "STD", + "Sao Tomeko eta Principeko dobra (1977–2017)" + ], + "STN": [ + "STN", "Sao Tomeko eta Principeko dobra" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index 74916a9e07761..7e7df64a18c1b 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -483,6 +483,10 @@ ], "MRO": [ "MRO", + "اوگوئیای موریتانی (۱۹۷۳ تا ۲۰۱۷)" + ], + "MRU": [ + "MRU", "اوگوئیای موریتانی" ], "MTL": [ @@ -671,6 +675,10 @@ ], "STD": [ "STD", + "دوبرای سائوتومه و پرنسیپ (۱۹۷۷ تا ۲۰۱۷)" + ], + "STN": [ + "STN", "دوبرای سائوتومه و پرنسیپ" ], "SUR": [ 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 1ade4c3ff5e19..9c9e9eb170c55 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.37.6", + "Version": "2.1.38.39", "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 53c2e144aca89..df3e86847b7ed 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugiyya Muritani (1973–2017)" + ], + "MRU": [ + "MRU", "Ugiyya Muritani" ], "MUR": [ @@ -175,6 +179,10 @@ ], "STD": [ "STD", + "Dobra Sawo Tome e Prensipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra Sawo Tome e Prensipe" ], "SZL": [ 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 fa181650fa892..5a338bc542b07 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.31.33", + "Version": "2.1.38.69", "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 df8b8a6c13a60..e1cab9bf34c80 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json @@ -1,7 +1,7 @@ { - "Version": "2.1.31.33", + "Version": "2.1.39.11", "Names": { - "MRO": [ + "MRU": [ "UM", "Ugiyya Muritani" ] diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json index 488ca956f77d9..19c712491d080 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.37.67", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -359,7 +359,7 @@ ], "ESA": [ "ESA", - "Espanjan peseta (A–tili)" + "Espanjan peseta (A-tili)" ], "ESB": [ "ESB", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Mauritanian ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanian ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "São Tomén ja Príncipen dobra (1977–2017)" + ], + "STN": [ + "STN", "São Tomén ja Príncipen dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index fa7b7fcc32dd1..7db1d33e3fb94 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -121,6 +121,10 @@ "CLP", "Kili peso" ], + "CNH": [ + "CNH", + "kinesiskur yuan (úr landi)" + ], "CNY": [ "CN¥", "kinesiskur yuan" @@ -247,7 +251,7 @@ ], "ILS": [ "₪", - "Ísrael new sheqel" + "Ísrael new shekel" ], "INR": [ "₹", @@ -363,6 +367,10 @@ ], "MRO": [ "MRO", + "Móritania ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Móritania ouguiya" ], "MUR": [ @@ -511,6 +519,10 @@ ], "STD": [ "STD", + "Sao Tome & Prinsipi dobra (1977–2017)" + ], + "STN": [ + "STN", "Sao Tome & Prinsipi dobra" ], "SYP": [ 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 d5222d47ae5c8..6fa2e7bcd6279 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.31.33", + "Version": "2.1.38.39", "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 a9f9a127b82fa..800c9e4d89138 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.37.1", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -619,6 +619,10 @@ ], "MRO": [ "MRO", + "ouguiya mauritanien (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya mauritanien" ], "MTL": [ @@ -847,6 +851,10 @@ ], "STD": [ "STD", + "dobra santoméen (1977–2017)" + ], + "STN": [ + "STN", "dobra santoméen" ], "SUR": [ 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 a3b074beadbd7..54426a14bce0c 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.31.33", + "Version": "2.1.38.39", "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 0385ce3d95d81..47eecd55c36d5 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.37.22", + "Version": "2.1.38.73", "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 ea857694c1cf1..11f0d5a281bbc 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.31.33", + "Version": "2.1.38.39", "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 e61ac0a6bfbf6..8fa2a33e92f06 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.31.33", + "Version": "2.1.38.39", "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 8a5a3b53081be..a526fd05140f1 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.31.33", + "Version": "2.1.38.39", "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 cc3ce23bc2478..0205de282697f 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.31.33", + "Version": "2.1.38.39", "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 27b11c70d5b4f..c4acd109b81bc 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.31.33", + "Version": "2.1.38.39", "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 989f5fc5fd216..0afe8082aaeb6 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.31.33", + "Version": "2.1.38.39", "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 48b8b811e3d6c..656c6fad05c07 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.37.1", + "Version": "2.1.38.39", "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 e71b0d0f4d0d9..5e6c76c6123f1 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.31.33", + "Version": "2.1.38.39", "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 39f160e3d63cd..f252700669ef6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json @@ -1,7 +1,7 @@ { - "Version": "2.1.31.33", + "Version": "2.1.39.11", "Names": { - "MRO": [ + "MRU": [ "UM", "ouguiya mauritanien" ] 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 4dd8ce23384d9..0749402c40d4a 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.31.33", + "Version": "2.1.38.39", "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 ee80ae59594b0..1271a0661852f 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.31.33", + "Version": "2.1.38.39", "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 6baded7d7b2e7..c15bd77038848 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.31.33", + "Version": "2.1.38.39", "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 572b54cf2843b..f740a2180a44e 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.31.33", + "Version": "2.1.38.39", "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 13fa79823fff1..99c7e37ae2728 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.31.33", + "Version": "2.1.38.39", "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 6cd281775417c..40a14f9bdcf92 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.31.33", + "Version": "2.1.38.39", "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 b65c8ad0bf558..1c557bf851c02 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -663,6 +663,10 @@ ], "MRO": [ "MRO", + "Mauritaanske ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritaanske ouguiya" ], "MTL": [ @@ -891,6 +895,10 @@ ], "STD": [ "STD", + "Santomese dobra (1977–2017)" + ], + "STN": [ + "STN", "Santomese dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json index 3233dfb4cb201..dbb83178310e4 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -647,6 +647,10 @@ ], "MRO": [ "MRO", + "Ouguiya na Máratáine (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya na Máratáine" ], "MTL": [ @@ -875,6 +879,10 @@ ], "STD": [ "STD", + "Dobra São Tomé agus Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra São Tomé agus Príncipe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index 8c81cfb892d16..c2b173894728d 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -679,6 +679,10 @@ ], "MRO": [ "MRO", + "Ouguiya Moratàineach (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Moratàineach" ], "MTL": [ @@ -911,6 +915,10 @@ ], "STD": [ "STD", + "Dobra São Tomé agus Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra São Tomé agus Príncipe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index d7935c9438cea..02b0d8b574671 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -496,6 +496,10 @@ ], "MRO": [ "MRO", + "Ouguiya mauritano (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya mauritano" ], "MUR": [ @@ -676,6 +680,10 @@ ], "STD": [ "STD", + "Dobra de São Tomé e Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra de São Tomé e Príncipe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index 702913111f03f..c5d49e2779ec9 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "મોરીશેનિયન ઓગુયા (1973–2017)" + ], + "MRU": [ + "MRU", "મોરીશેનિયન ઓગુયા" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "સાઓ ટૉમ એન્ડ પ્રિંસાઇપ ડોબ્રા (1977–2017)" + ], + "STN": [ + "STN", "સાઓ ટૉમ એન્ડ પ્રિંસાઇપ ડોબ્રા" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json index cac8cf07399c7..2e0012c88687b 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Kuɗin Moritaniya (1973–2017)" + ], + "MRU": [ + "MRU", "Kuɗin Moritaniya" ], "MUR": [ @@ -175,6 +179,10 @@ ], "STD": [ "STD", + "Kuɗin Sawo Tome da Paransip (1977–2017)" + ], + "STN": [ + "STN", "Kuɗin Sawo Tome da Paransip" ], "SZL": [ 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 f00bc8de4a0b4..a8673274b10ad 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.31.33", + "Version": "2.1.38.69", "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 e9119a60c3664..6933e0ca1bb41 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.37.22", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -499,6 +499,10 @@ ], "MRO": [ "MRO", + "אואוגויה מאוריטני (1973–2017)" + ], + "MRU": [ + "MRU", "אואוגויה מאוריטני" ], "MTL": [ @@ -699,6 +703,10 @@ ], "STD": [ "STD", + "דוברה של סן טומה ופרינסיפה (1977–2017)" + ], + "STN": [ + "STN", "דוברה של סן טומה ופרינסיפה" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index f67aab30537e9..4544cea5dbbaf 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -415,6 +415,10 @@ ], "MRO": [ "MRO", + "मॉरीटेनियन ओगुइया (1973–2017)" + ], + "MRU": [ + "MRU", "मॉरीटेनियन ओगुइया" ], "MUR": [ @@ -587,6 +591,10 @@ ], "STD": [ "STD", + "साओ तोम और प्रिंसिपे डोबरा (1977–2017)" + ], + "STN": [ + "STN", "साओ तोम और प्रिंसिपे डोबरा" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index 0b4344c901891..4e85c0f030b99 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauritanijska ouguja (1973–2017)" + ], + "MRU": [ + "MRU", "mauritanijska ouguja" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "dobra Svetog Tome i Principa (1977–2017)" + ], + "STN": [ + "STN", "dobra Svetog Tome i Principa" ], "SUR": [ 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 cc041904caeec..aa4ae6ab67827 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.31.33", + "Version": "2.1.38.39", "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 6f461c7115811..4039c505cd1af 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "mauritániai ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritániai ouguiya" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "São Tomé és Príncipe-i dobra (1977–2017)" + ], + "STN": [ + "STN", "São Tomé és Príncipe-i dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index 66bf1fb632e07..73fd873c346fa 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "մավրիտանական ուգիյա (1973–2017)" + ], + "MRU": [ + "MRU", "մավրիտանական ուգիյա" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "Սան Տոմե և Փրինսիպիի դոբրա (1977–2017)" + ], + "STN": [ + "STN", "Սան Տոմե և Փրինսիպիի դոբրա" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/id.json b/src/Symfony/Component/Intl/Resources/data/currencies/id.json index 4698846980da2..4da93ecd05099 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -675,6 +675,10 @@ ], "MRO": [ "MRO", + "Ouguiya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Mauritania" ], "MTL": [ @@ -907,6 +911,10 @@ ], "STD": [ "STD", + "Dobra Sao Tome dan Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra Sao Tome dan Principe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json index aeb174373c9b0..0ba1365ce480b 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.37.1", + "Version": "2.1.38.69", "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 2c7d336d56469..05daa0b49b504 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.37.1", + "Version": "2.1.38.69", "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 4698846980da2..4da93ecd05099 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -675,6 +675,10 @@ ], "MRO": [ "MRO", + "Ouguiya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Mauritania" ], "MTL": [ @@ -907,6 +911,10 @@ ], "STD": [ "STD", + "Dobra Sao Tome dan Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra Sao Tome dan Principe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/is.json b/src/Symfony/Component/Intl/Resources/data/currencies/is.json index 8e26238a118f3..d854bc1070e38 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -499,6 +499,10 @@ ], "MRO": [ "MRO", + "márítönsk úgía (1973–2017)" + ], + "MRU": [ + "MRU", "márítönsk úgía" ], "MTL": [ @@ -707,6 +711,10 @@ ], "STD": [ "STD", + "Saó Tóme og Prinsípe-dóbra (1977–2017)" + ], + "STN": [ + "STN", "Saó Tóme og Prinsípe-dóbra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index bc927258fc8e5..df98d9ebfc9da 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.37.1", + "Version": "2.1.39.40", "Names": { "ADP": [ "ADP", @@ -604,6 +604,10 @@ ], "MRO": [ "MRO", + "ouguiya della Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya della Mauritania" ], "MTL": [ @@ -824,6 +828,10 @@ ], "STD": [ "STD", + "dobra di Sao Tomé e Principe (1977–2017)" + ], + "STN": [ + "STN", "dobra di Sao Tomé e Principe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index e9119a60c3664..6933e0ca1bb41 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.37.22", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -499,6 +499,10 @@ ], "MRO": [ "MRO", + "אואוגויה מאוריטני (1973–2017)" + ], + "MRU": [ + "MRU", "אואוגויה מאוריטני" ], "MTL": [ @@ -699,6 +703,10 @@ ], "STD": [ "STD", + "דוברה של סן טומה ופרינסיפה (1977–2017)" + ], + "STN": [ + "STN", "דוברה של סן טומה ופרינסיפה" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index 43788d3d40a50..a388a1ac5f0a3 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.37.1", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "モーリタニア ウギア (1973–2017)" + ], + "MRU": [ + "MRU", "モーリタニア ウギア" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "サントメ・プリンシペ ドブラ (1977–2017)" + ], + "STN": [ + "STN", "サントメ・プリンシペ ドブラ" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index 628d4cebddc42..3ba1942450a03 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -551,6 +551,10 @@ ], "MRO": [ "MRO", + "მავრიტანული უგია (1973–2017)" + ], + "MRU": [ + "MRU", "მავრიტანული უგია" ], "MTL": [ @@ -767,6 +771,10 @@ ], "STD": [ "STD", + "სან-ტომე და პრინსიპის დობრა (1977–2017)" + ], + "STN": [ + "STN", "სან-ტომე და პრინსიპის დობრა" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json index c30ee2c6d4f6b..279fba9b3d0c1 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.31.33", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya ya Moritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya ya Moritania" ], "MUR": [ @@ -175,6 +179,10 @@ ], "STD": [ "STD", + "Dobra ya Sao Tome na Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra ya Sao Tome na Principe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json index bb34a342dc8ad..20adf173d2976 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "Мавритания угиясы (1973–2017)" + ], + "MRU": [ + "MRU", "Мавритания угиясы" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "Сант-Томе мен Принсипи добрасы (1977–2017)" + ], + "STN": [ + "STN", "Сант-Томе мен Принсипи добрасы" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json index 18d24a8afb6e6..c77d38d1b2bbe 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.37.1", + "Version": "2.1.38.69", "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 ebc3b1a4688c0..8b73e024f9e0b 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "អ៊ូហ្គីយ៉ា​ម៉ូរីតានី (1973–2017)" + ], + "MRU": [ + "MRU", "អ៊ូហ្គីយ៉ា​ម៉ូរីតានី" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "ឌូប្រា​សៅតូម៉េ និងប្រាំងស៊ីប (1977–2017)" + ], + "STN": [ + "STN", "ឌូប្រា​សៅតូម៉េ និងប្រាំងស៊ីប" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json index 95cfd53a06e8a..3f23d8bb499d8 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "ಮೌರೀಶಿಯನಿಯನ್ ಒಗಿಯ (1973–2017)" + ], + "MRU": [ + "MRU", "ಮೌರೀಶಿಯನಿಯನ್ ಒಗಿಯ" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "ಸಾವೊ ಟೋಮ್ ಮತ್ತು ಪ್ರಿನ್ಸಿಪ್ ದೊಬ್ರಾ (1977–2017)" + ], + "STN": [ + "STN", "ಸಾವೊ ಟೋಮ್ ಮತ್ತು ಪ್ರಿನ್ಸಿಪ್ ದೊಬ್ರಾ" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index 40143781465fc..ab543f2086a0a 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -659,6 +659,10 @@ ], "MRO": [ "MRO", + "모리타니 우기야 (1973–2017)" + ], + "MRU": [ + "MRU", "모리타니 우기야" ], "MTL": [ @@ -887,6 +891,10 @@ ], "STD": [ "STD", + "상투메 프린시페 도브라 (1977–2017)" + ], + "STN": [ + "STN", "상투메 프린시페 도브라" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json index 93fb73dee80b0..498b4dd1cf38e 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -551,6 +551,10 @@ ], "MRO": [ "MRO", + "مورِٹینِیَن عوگیوٗیا (1973–2017)" + ], + "MRU": [ + "MRU", "مورِٹینِیَن عوگیوٗیا" ], "MTL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json index 97a647f07279f..c3435649e999b 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "Мавритания угиясы (1973–2017)" + ], + "MRU": [ + "MRU", "Мавритания угиясы" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "Сао Томе жана Принсипе добрасы (1977–2017)" + ], + "STN": [ + "STN", "Сао Томе жана Принсипе добрасы" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index ea6b200c56baa..c427022bf56dc 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -611,6 +611,10 @@ ], "MRO": [ "MRO", + "Mauretaneschen Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauretaneschen Ouguiya" ], "MTL": [ @@ -839,6 +843,10 @@ ], "STD": [ "STD", + "São-toméeschen Dobra (1977–2017)" + ], + "STN": [ + "STN", "São-toméeschen Dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json index efbf806e6b426..4aaea5169fc7e 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.31.33", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Wugwiya ey’eMawritenya (1973–2017)" + ], + "MRU": [ + "MRU", "Wugwiya ey’eMawritenya" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobura ey’eSantome ne Purincipe (1977–2017)" + ], + "STN": [ + "STN", "Dobura ey’eSantome ne Purincipe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json index 002c7787527ab..3ba6739d4b5ff 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya ya Moritani (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya ya Moritani" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobra ya Sao Tomé mpé Presipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra ya Sao Tomé mpé Presipe" ], "SZL": [ 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 ed012a2e851db..4808fcde5bebd 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.31.33", + "Version": "2.1.38.69", "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 bb9093ee8f00d..d852350a53017 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -667,6 +667,10 @@ ], "MRO": [ "MRO", + "ມົວ​ຣິ​ທາ​ນຽນ ອູ​ກິວ​ຢາ (1973–2017)" + ], + "MRU": [ + "MRU", "ມົວ​ຣິ​ທາ​ນຽນ ອູ​ກິວ​ຢາ" ], "MTL": [ @@ -895,6 +899,10 @@ ], "STD": [ "STD", + "ເຊົາ ໂທ​ເມ ແອນ ພ​ຣິນ​ຊິ​ປີ ໂດບຣາ (1977–2017)" + ], + "STN": [ + "STN", "ເຊົາ ໂທ​ເມ ແອນ ພ​ຣິນ​ຊິ​ປີ ໂດບຣາ" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index d764eccadef69..04803c2a4f9c0 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Mauritanijos ugija (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanijos ugija" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "San Tomės ir Principės dobra (1977–2017)" + ], + "STN": [ + "STN", "San Tomės ir Principės dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json index 66e7f94be2a47..924410965245c 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya wa Moritani (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya wa Moritani" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobra wa Sao Tome ne Presipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra wa Sao Tome ne Presipe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json index 4163dbeef07db..bb9f0619bba64 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -443,6 +443,10 @@ ], "MRO": [ "MRO", + "Mauritānijas ugija (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritānijas ugija" ], "MTL": [ @@ -631,6 +635,10 @@ ], "STD": [ "STD", + "Santome un Prinsipi dobra (1977–2017)" + ], + "STN": [ + "STN", "Santome un Prinsipi dobra" ], "SVC": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json index 6628bffa4e0ec..858a528612d00 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.37.1", + "Version": "2.1.39.27", "Currencies": [ "ADP", "AED", @@ -172,6 +172,7 @@ "MNT", "MOP", "MRO", + "MRU", "MTL", "MTP", "MUR", @@ -822,8 +823,8 @@ "LVR": 428, "LRD": 430, "LYD": 434, - "LTT": 440, "LTL": 440, + "LTT": 440, "LUF": 442, "MOP": 446, "MGF": 450, @@ -882,8 +883,8 @@ "SIT": 705, "SOS": 706, "ZAR": 710, - "RHD": 716, "ZWD": 716, + "RHD": 716, "YDD": 720, "ESP": 724, "SSP": 728, @@ -906,24 +907,26 @@ "UGX": 800, "UAK": 804, "MKD": 807, - "RUR": 810, "SUR": 810, + "RUR": 810, "EGP": 818, "GBP": 826, "TZS": 834, "USD": 840, - "UYU": 858, "UYP": 858, + "UYU": 858, "UZS": 860, "VEB": 862, "WST": 882, "YER": 886, "YUN": 890, + "YUD": 891, "CSD": 891, "YUM": 891, - "YUD": 891, "ZMK": 894, "TWD": 901, + "MRU": 929, + "STN": 930, "CUC": 931, "ZWL": 932, "BYN": 933, @@ -1277,8 +1280,8 @@ "LYD" ], "440": [ - "LTT", - "LTL" + "LTL", + "LTT" ], "442": [ "LUF" @@ -1441,8 +1444,8 @@ "ZAR" ], "716": [ - "RHD", - "ZWD" + "ZWD", + "RHD" ], "720": [ "YDD" @@ -1507,8 +1510,8 @@ "MKD" ], "810": [ - "RUR", - "SUR" + "SUR", + "RUR" ], "818": [ "EGP" @@ -1523,8 +1526,8 @@ "USD" ], "858": [ - "UYU", - "UYP" + "UYP", + "UYU" ], "860": [ "UZS" @@ -1542,9 +1545,9 @@ "YUN" ], "891": [ + "YUD", "CSD", - "YUM", - "YUD" + "YUM" ], "894": [ "ZMK" @@ -1552,6 +1555,12 @@ "901": [ "TWD" ], + "929": [ + "MRU" + ], + "930": [ + "STN" + ], "931": [ "CUC" ], diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json index 9882c4a1ebbcd..51fe7142fd2aa 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ouguiya moritanianina (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya moritanianina" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobra (1977–2017)" + ], + "STN": [ + "STN", "Dobra" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index f7a7ddba2d291..754cb8044e9b4 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -499,6 +499,10 @@ ], "MRO": [ "MRO", + "Мавританска угија (1973–2017)" + ], + "MRU": [ + "MRU", "Мавританска угија" ], "MTL": [ @@ -715,6 +719,10 @@ ], "STD": [ "STD", + "Добра на Саун Томе и Принсип (1977–2017)" + ], + "STN": [ + "STN", "Добра на Саун Томе и Принсип" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index 43ea14dc42593..588553900fc40 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.36.86", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "മൗറിറ്റേനിയൻ ഔഗിയ (1973–2017)" + ], + "MRU": [ + "MRU", "മൗറിറ്റേനിയൻ ഔഗിയ" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "സാവോ ടോമി ആൻഡ് പ്രിൻസിപെ ഡോബ്ര (1977–2017)" + ], + "STN": [ + "STN", "സാവോ ടോമി ആൻഡ് പ്രിൻസിപെ ഡോബ്ര" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json index 0a3204809b8a9..3ae12501c7073 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -151,7 +151,7 @@ ], "CZK": [ "CZK", - "чехийн коруна" + "Чех крон" ], "DJF": [ "DJF", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "мавритан угия (1973–2017)" + ], + "MRU": [ + "MRU", "мавритан угия" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "сан-томе ба принсипи добра (1977–2017)" + ], + "STN": [ + "STN", "сан-томе ба принсипи добра" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json index dd1765b4d8e54..f0af15f5eeb28 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.31.33", + "Version": "2.1.38.39", "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 fd92562f75916..00b4ab812fca2 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.37.22", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "मॉरिटानियन ओगिया (1973–2017)" + ], + "MRU": [ + "MRU", "मॉरिटानियन ओगिया" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "साओ टोम आणि प्रिन्सिपे डोबरा (1977–2017)" + ], + "STN": [ + "STN", "साओ टोम आणि प्रिन्सिपे डोबरा" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json index d429b54c06767..a9dd3014dbb8a 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.37.5", + "Version": "2.1.39.20", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "Ouguiya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Mauritania" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "Dobra Sao Tome dan Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra Sao Tome dan Principe" ], "SYP": [ 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 6f7ed4fb22564..9e282b407bc4f 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.37.6", + "Version": "2.1.38.39", "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 27ef127fc7ef8..daf610442affc 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.31.33", + "Version": "2.1.38.39", "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 8e70379c78553..64f108d883d69 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -341,6 +341,10 @@ "MRO", "MRO" ], + "MRU": [ + "MRU", + "MRU" + ], "MTL": [ "MTL", "Lira Maltija" @@ -489,6 +493,10 @@ "STD", "STD" ], + "STN": [ + "STN", + "STN" + ], "SYP": [ "SYP", "SYP" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/my.json b/src/Symfony/Component/Intl/Resources/data/currencies/my.json index 722e2c254cfa8..a0c0926207709 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -23,7 +23,7 @@ ], "AOA": [ "AOA", - "အင်ဂိုလာ ကန်ဇာ" + "အန်ဂိုလာ ကွမ်ဇာ" ], "ARP": [ "ARP", @@ -415,6 +415,10 @@ ], "MRO": [ "MRO", + "မော်ရီတေးနီးယား အူဂီးယာ (1973–2017)" + ], + "MRU": [ + "MRU", "မော်ရီတေးနီးယား အူဂီးယာ" ], "MUR": [ @@ -571,6 +575,10 @@ ], "STD": [ "STD", + "ဆောင်တူမေးနှင့် ပရင်စီပီ ဒိုဘရာ (1977–2017)" + ], + "STN": [ + "STN", "ဆောင်တူမေးနှင့် ပရင်စီပီ ဒိုဘရာ" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json index f596470c67e7c..f97f45d1c5440 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauritanske ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritanske ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "saotomesiske dobra (1977–2017)" + ], + "STN": [ + "STN", "saotomesiske dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json index e811c7c72f63b..8065b7db4bfc2 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.31.33", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya yase Moritaniya (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya yase Moritaniya" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobra yase Sao Tome lo Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra yase Sao Tome lo Principe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json index 752c0cf4613a3..7ae11871707e5 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "माउरिटानियानली औगुइया (१९७३–२०१७)" + ], + "MRU": [ + "MRU", "माउरिटानियानली औगुइया" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "साओ टोम र प्रिन्सिप डोब्रा (१९७७–२०१७)" + ], + "STN": [ + "STN", "साओ टोम र प्रिन्सिप डोब्रा" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json index 166c3797944bb..434e711f1099d 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.37.1", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Mauritaanse ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritaanse ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "Santomese dobra (1977–2017)" + ], + "STN": [ + "STN", "Santomese dobra" ], "SUR": [ 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 21fa88b966e6c..6d82529545a9d 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.31.33", + "Version": "2.1.38.39", "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 b1c3e571e1bfd..d5010b431f232 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.31.33", + "Version": "2.1.38.39", "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 a0c53278f5c79..00a34f4335ac5 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.31.33", + "Version": "2.1.38.39", "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 fb670110bb265..4d204b9c3093a 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.31.33", + "Version": "2.1.38.39", "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 a0c53278f5c79..00a34f4335ac5 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.31.33", + "Version": "2.1.38.39", "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 c04ef15c29714..767b7e56372eb 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -611,6 +611,10 @@ ], "MRO": [ "MRO", + "mauritanske ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritanske ouguiya" ], "MTL": [ @@ -839,6 +843,10 @@ ], "STD": [ "STD", + "saotomesiske dobra (1977–2017)" + ], + "STN": [ + "STN", "saotomesiske dobra" ], "SUR": [ @@ -871,7 +879,7 @@ ], "TMM": [ "TMM", - "turkmenske manat (1993–2009)" + "turkmensk manat (1993–2009)" ], "TMT": [ "TMT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/no.json b/src/Symfony/Component/Intl/Resources/data/currencies/no.json index f596470c67e7c..f97f45d1c5440 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauritanske ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauritanske ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "saotomesiske dobra (1977–2017)" + ], + "STN": [ + "STN", "saotomesiske dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index b67b5bc784e3e..7eab076985604 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.37.1", + "Version": "2.1.38.69", "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 0a4e2bde6b4e2..0862a2029cf0c 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.31.33", + "Version": "2.1.38.69", "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 93f855b28357f..a8efbdb951ec2 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.37.57", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -7,7 +7,7 @@ ], "AFN": [ "AFN", - "ଆଫଘାନୀୟ ଆଫଘାନି" + "ଆଫଗାନ ଆଫଗାନି" ], "ALL": [ "ALL", @@ -15,19 +15,19 @@ ], "AMD": [ "AMD", - "ଅର୍ମେନିୟ ଡ୍ରାମ୍" + "ଅର୍ମେନୀୟ ଡ୍ରାମ୍" ], "ANG": [ "ANG", - "ନେଦରଲ୍ୟାଣ୍ଡ୍ ଆଣ୍ଟିଲିୟ ଗୁଇଲଡେର୍" + "ନେଦରଲ୍ୟାଣ୍ଡ୍ ଆଣ୍ଟିଲିୟ ଗିଲଡର୍" ], "AOA": [ "AOA", - "ଅଙ୍ଗୋଲିୟ କୱାନଜା" + "ଅଙ୍ଗୋଲୀୟ କୱାନଜା" ], "ARS": [ "ARS", - "ଆର୍ଜେଣ୍ଟିନିୟ ପେସୋ" + "ଆର୍ଜେଣ୍ଟାଇନ୍‍ ପେସୋ" ], "AUD": [ "A$", @@ -35,7 +35,7 @@ ], "AWG": [ "AWG", - "ଆରୁବିୟ ଫ୍ଲୋରିୟ" + "ଆରୁବୀୟ ଫ୍ଲୋରିନ୍" ], "AZN": [ "AZN", @@ -43,11 +43,11 @@ ], "BAM": [ "BAM", - "ବୋସନିଆ-ହେରଜେବୋଭିନା କନଭେରିଟେବଲ୍ ମାର୍କ" + "ବୋସନିଆ-ହର୍ଜଗୋଭିନା କନଭର୍ଟିବଲ୍ ମାର୍କ୍" ], "BBD": [ "BBD", - "ବାର୍ବଡିୟ ଡଲାର୍" + "ବାର୍ବାଡୀୟ ଡଲାର୍" ], "BDT": [ "BDT", @@ -55,19 +55,19 @@ ], "BGN": [ "BGN", - "ବଲଗେରୀୟ ଲେଭ୍" + "ବୁଲଗେରୀୟ ଲେଭ୍" ], "BHD": [ "BHD", - "ବାହରାଇନି ଦିନାର" + "ବାଃରେନି ଦିନାର୍" ], "BIF": [ "BIF", - "ବୁରୁନଡିୟ ଫ୍ରାଙ୍କ୍" + "ବୁରୁଣ୍ଡିୟ ଫ୍ରାଙ୍କ୍" ], "BMD": [ "BMD", - "ବେରମୁଣ୍ଡିୟ ଡଲାର୍" + "ବର୍ମ୍ୟୁଡା ଡଲାର୍" ], "BND": [ "BND", @@ -75,31 +75,31 @@ ], "BOB": [ "BOB", - "ବୋଲିଭିୟ ବୋଲିଭିଆନୋ" + "ବୋଲିଭୀୟ ବୋଲିଭିଆନୋ" ], "BRL": [ "R$", - "ବ୍ରାଜିଲିୟ ପ୍ରକୃତ" + "ବ୍ରାଜିଲୀୟ ରିଏଲ୍" ], "BSD": [ "BSD", - "ବାହାମିୟ ଡଲାର୍" + "ବାହାମୀୟ ଡଲାର୍" ], "BTN": [ "BTN", - "ଭୁଟାନୀୟ ନଗୁଲଟ୍ରୁମ୍" + "ଭୁଟାନୀ ଗଲଟ୍ରୁମ୍" ], "BWP": [ "BWP", - "ବୋଟସୱାନିୟ ପୁଲା" + "ବୋତ୍ସୱାନା ପୁଲା" ], "BYN": [ "BYN", - "ବେଲାରୁସିୟ ରୁବଲେ" + "ବେଲାରୁସି ରୁବଲ୍" ], "BZD": [ "BZD", - "ବେଲିଜେ ଡଲାର୍" + "ବେଲିଜ୍ ଡଲାର୍" ], "CAD": [ "CA$", @@ -107,7 +107,7 @@ ], "CDF": [ "CDF", - "କୋନଗୋଲେସେ ଫ୍ରାଙ୍କ୍" + "କଙ୍ଗୋଲିଜ୍ ଫ୍ରାଙ୍କ୍" ], "CHF": [ "CHF", @@ -115,35 +115,35 @@ ], "CLP": [ "CLP", - "ଚିଲିୟ ପେସୋ" + "ଚିଲି ପେସୋ" ], "CNH": [ "CNH", - "ଚୀନିୟ ୟୁଆନ୍ (ଅଫସୋର୍)" + "ଚିନୀ ୟୁଆନ୍ (ଅଫସୋର୍)" ], "CNY": [ "CN¥", - "ଚିନୀୟ ୟୁଆନ୍" + "ଚିନୀ ୟୁଆନ୍" ], "COP": [ "COP", - "କଲୋମ୍ଵିୟ ପେସୋ" + "କଲୋମ୍ବୀୟ ପେସୋ" ], "CRC": [ "CRC", - "କୋଷ୍ଟା ରିକିୟ କୋଲୋନ୍" + "କୋଷ୍ଟା ରିକୀୟ କୋଲୋନ୍" ], "CUC": [ "CUC", - "କୁବାନ୍ କୋନଭେର୍ଟିବ୍ଲେ ପେସୋ" + "କ୍ୟୁବାନ୍ କନଭର୍ଟିବଲ୍ ପେସୋ" ], "CUP": [ "CUP", - "କୁବାନ୍ ପେସୋ" + "କ୍ୟୁବାନ୍ ପେସୋ" ], "CVE": [ "CVE", - "କେପ୍ ଭେର୍ଦେୟ ଏସକୁଡୋ" + "କେପ୍ ଭେର୍ଦେୟ ଏସ୍କୁଡୋ" ], "CZK": [ "CZK", @@ -151,19 +151,19 @@ ], "DJF": [ "DJF", - "ଡଜିବୌଟିୟ ଫ୍ରାଙ୍କ୍" + "ଜିବୌଟିୟ ଫ୍ରାଙ୍କ୍" ], "DKK": [ "DKK", - "ଦାନିସ୍ କ୍ରୋନେ" + "ଡାନିସ୍ କ୍ରୋନ୍" ], "DOP": [ "DOP", - "ଡୋମିନିକିୟ ପେସୋ" + "ଡୋମିନିକୀୟ ପେସୋ" ], "DZD": [ "DZD", - "ଆଲଗେରିୟ ଦିନାର୍" + "ଆଲଜେରୀୟ ଦିନାର୍" ], "EGP": [ "EGP", @@ -175,7 +175,7 @@ ], "ETB": [ "ETB", - "ଏଥିଓପିୟୋ ବିର୍" + "ଇଥିଓପିୟ ବିର୍" ], "EUR": [ "€", @@ -183,15 +183,15 @@ ], "FJD": [ "FJD", - "ଫିଜିୟ ଡଲାର୍" + "ଫିଜି ଡଲାର୍" ], "FKP": [ "FKP", - "ଫାଲ୍କଲ୍ୟାଣ୍ଡ୍ ଦ୍ଵୀପପୁଞ୍ଜ ପାଉଣ୍ଡ୍" + "ଫକଲ୍ୟାଣ୍ଡ୍ ଦ୍ଵୀପପୁଞ୍ଜ ପାଉଣ୍ଡ୍" ], "GBP": [ "£", - "ବ୍ରିଟିସ୍ ପାଉଣ୍ଡ୍" + "ବ୍ରିଟିଶ୍ ପାଉଣ୍ଡ୍" ], "GEL": [ "GEL", @@ -203,11 +203,11 @@ ], "GIP": [ "GIP", - "ଗିବ୍ରାଲଟାର୍ ପାଉଣ୍ଡ୍" + "ଗିବ୍ରାଲଟର୍ ପାଉଣ୍ଡ୍" ], "GMD": [ "GMD", - "ଗାମବିୟ ଡାଲାସି" + "ଗାମ୍ବିୟ ଡାଲାସି" ], "GNF": [ "GNF", @@ -215,11 +215,11 @@ ], "GTQ": [ "GTQ", - "ଗୁଏତେମାଲିୟ କ୍ଵେତଜାଲ୍" + "ଗୁଏଟମାଲୀୟ କ୍ଵେତଜାଲ୍" ], "GYD": [ "GYD", - "ଗୁୟାନାଏସେ ଡଲାର୍" + "ଗାୟାନିସ୍ ଡଲାର୍" ], "HKD": [ "HK$", @@ -227,31 +227,31 @@ ], "HNL": [ "HNL", - "ହୋଣ୍ଡୁରିୟ ଲେମପିରା" + "ହୋଣ୍ଡୁରୀୟ ଲେମପିରା" ], "HRK": [ "HRK", - "କ୍ରୋଆଟିୟ କୁନା" + "କ୍ରୋଏସୀୟ କୁନା" ], "HTG": [ "HTG", - "ହାଇତିୟ ଗୌରଡେ" + "ହାଇତୀୟ ଗୋରଡ୍" ], "HUF": [ "HUF", - "ହଙ୍ଗେରିୟ ଫୋରିଣ୍ଟ" + "ହଙ୍ଗେରିୟ ଫୋରିଣ୍ଟ୍" ], "IDR": [ "IDR", - "ଇଣ୍ଡୋନେସିୟ ରୁପିଆହ" + "ଇଣ୍ଡୋନେସିୟ ରୁପିଆ" ], "ILS": [ "₪", - "ଇସ୍ରାଇଲି ନ୍ୟୁ ସେକେଲ୍" + "ଇସ୍ରାଇଲି ନ୍ୟୁ ଶେକେଲ୍" ], "INR": [ "₹", - "ଟଙ୍କା" + "ଭାରତୀୟ ଟଙ୍କା" ], "IQD": [ "IQD", @@ -259,31 +259,31 @@ ], "IRR": [ "IRR", - "ଇରିୟ ରିଆଲ୍" + "ଇରାନୀ ରିଆଲ୍" ], "ISK": [ "ISK", - "ଆଇସଲ୍ୟାଣ୍ଡିୟ କ୍ରୋନା" + "ଆଇସଲ୍ୟାଣ୍ଡିକ୍‍ କ୍ରୋନା" ], "JMD": [ "JMD", - "ଜାମାଇକିୟ ଡଲାର୍" + "ଜାମାଇକୀୟ ଡଲାର୍" ], "JOD": [ "JOD", - "ଜର୍ଡିୟାନ୍ ଦିନାର୍" + "ଜର୍ଡାନିୟ ଦିନାର୍" ], "JPY": [ "¥", - "ଜାପାନୀୟ ୟେନ୍" + "ଜାପାନୀ ୟେନ୍" ], "KES": [ "KES", - "କେନୟାନ୍ ସିଲିଂ" + "କେନିୟ ଶିଲିଂ" ], "KGS": [ "KGS", - "କ୍ୟାରଗ୍ୟସ୍ତାନିୟ ସୋମ୍" + "କିର୍ଗିସ୍ତାନୀ ସୋମ୍" ], "KHR": [ "KHR", @@ -291,27 +291,27 @@ ], "KMF": [ "KMF", - "କୋମୋରିୟ ଫ୍ରାଙ୍କ୍" + "କୋମୋରୀୟ ଫ୍ରାଙ୍କ୍" ], "KPW": [ "KPW", - "ପଶ୍ଚିମ କୋରିୟ ୱୋନ୍" + "ଉତ୍ତର କୋରିଆଇ ୱୋନ୍" ], "KRW": [ "₩", - "ଦକ୍ଷିଣ କୋରିୟ ୱୋନ୍" + "ଦକ୍ଷିଣ କୋରିଆଇ ୱୋନ୍" ], "KWD": [ "KWD", - "କୁୱେତି ଦିନାର" + "କୁୱେତି ଦିନାର୍" ], "KYD": [ "KYD", - "କାୟମାନ୍ ଦ୍ଵୀପପୁଞ୍ଜ ଡଲାର୍" + "କେମେନ୍ ଦ୍ଵୀପପୁଞ୍ଜ ଡଲାର୍" ], "KZT": [ "KZT", - "କାଜାଖସ୍ତାନିୟ ତେନଗେ" + "କାଜାକସ୍ତାନୀ ତେଙ୍ଗେ" ], "LAK": [ "LAK", @@ -319,7 +319,7 @@ ], "LBP": [ "LBP", - "ଲେବାନେସେ ପାଉଣ୍ଡ୍" + "ଲେବାନିଜ୍ ପାଉଣ୍ଡ୍" ], "LKR": [ "LKR", @@ -327,7 +327,7 @@ ], "LRD": [ "LRD", - "ଲିବେରିୟ ଡଲାର୍" + "ଲିବେରୀୟ ଡଲାର୍" ], "LYD": [ "LYD", @@ -335,7 +335,7 @@ ], "MAD": [ "MAD", - "ମୋରୋକିୟ ଡିରହାମ୍" + "ମୋରୋକୀୟ ଦିର୍ହାମ୍" ], "MDL": [ "MDL", @@ -343,31 +343,35 @@ ], "MGA": [ "MGA", - "ମାଲାଗାସେ ଆରିଆରେ" + "ମାଲାଗାସି ଏରିଆରୀ" ], "MKD": [ "MKD", - "ମାସେଡୋନିୟ ଡିନାର୍" + "ମାସେଡୋନୀୟ ଡିନର୍" ], "MMK": [ "MMK", - "ମ୍ୟାନମାର୍ କ୍ୟାଟ୍" + "ମ୍ୟାନମାର୍ କ୍ୟାତ୍‌" ], "MNT": [ "MNT", - "ମଙ୍ଗୋଳିୟ ତୁଗ୍ରିକ୍" + "ମଙ୍ଗୋଲିୟ ତୁଗ୍ରିକ୍" ], "MOP": [ "MOP", - "ମାକାନେସିୟ ପାଟାକା" + "ମାକାନେଜ୍ ପାଟାକା" ], "MRO": [ "MRO", - "ମାଉରିଟାନିୟ ଓୟୁଗୁଇୟା" + "ମର୍ଟିନିୟ ଆଗୁଇଅ (1973–2017)" + ], + "MRU": [ + "MRU", + "ମର୍ଟିନିୟ ଆଗୁଇଅ" ], "MUR": [ "MUR", - "ମୌରିସିୟ ରୁପି" + "ମୌରିସୀୟ ରୁପି" ], "MVR": [ "MVR", @@ -375,19 +379,19 @@ ], "MWK": [ "MWK", - "ମଲୱିୟ କୱାଚା" + "ମଲାୱି କ୍ୱାଚା" ], "MXN": [ "MX$", - "ମେକ୍ସିକିୟ ପେସୋ" + "ମେକ୍ସିକୀୟ ପେସୋ" ], "MYR": [ "MYR", - "ମାଲେସିୟ ରିଂଇଟ୍" + "ମାଲେସିୟ ରିଙ୍ଗିଟ୍" ], "MZN": [ "MZN", - "ମୋଜାମବିକାନ୍ ମେଟିକାଲ୍" + "ମୋଜାମ୍ବିକୀୟ ମେଟିକାଲ୍" ], "NAD": [ "NAD", @@ -395,23 +399,23 @@ ], "NGN": [ "NGN", - "ନାଇଜେରିୟ ନାଇରା" + "ନାଇଜେରିଆଇ ନାଇରା" ], "NIO": [ "NIO", - "ନିକାରାଗୁଆନ୍ କୋର୍ଡୋବା" + "ନିକାରାଗୁଆ କୋର୍ଡୋବା" ], "NOK": [ "NOK", - "ନରୱେଜିୟ କ୍ରୋନେ" + "ନରୱେୟୀୟ କ୍ରୋନ୍" ], "NPR": [ "NPR", - "ନେପାଳିୟ ରୁପି" + "ନେପାଳି ରୁପି" ], "NZD": [ "NZ$", - "ନ୍ୟୁଜଲ୍ୟାଣ୍ଡ୍ ଡଲାର୍" + "ନ୍ୟୁଜିଲ୍ୟାଣ୍ଡ୍ ଡଲାର୍" ], "OMR": [ "OMR", @@ -423,7 +427,7 @@ ], "PEN": [ "PEN", - "ପେରୁଭିୟ ସୋଲ୍" + "ପେରୁଭୀୟ ସୋଲ୍" ], "PGK": [ "PGK", @@ -435,11 +439,11 @@ ], "PKR": [ "PKR", - "ପାକିସ୍ତାନି ରୁପି" + "ପାକିସ୍ତାନୀ ରୁପି" ], "PLN": [ "PLN", - "ପୋଲିସ୍ ଜଲୋଟି" + "ପୋଲିଶ୍ ଜ୍ଲଟୀ" ], "PYG": [ "PYG", @@ -455,15 +459,15 @@ ], "RSD": [ "RSD", - "ସର୍ବିୟ ଦିନାର୍" + "ସର୍ବିଆଇ ଦିନାର" ], "RUB": [ "RUB", - "ଋଷିୟ ରୁବଲେ" + "ରୁଷି ରୁବଲ୍" ], "RWF": [ "RWF", - "ରୱାନାଦାନ୍ ଫ୍ରାଙ୍କ୍" + "ରୁୱାଣ୍ଡା ଫ୍ରାଙ୍କ୍" ], "SAR": [ "SAR", @@ -471,7 +475,7 @@ ], "SBD": [ "SBD", - "ସୋଲୋମୋନ ଦ୍ଵୀପପୁଞ୍ଜ ଡଲାର୍" + "ସୋଲୋମୋନ୍ ଦ୍ଵୀପପୁଞ୍ଜ ଡଲାର୍" ], "SCR": [ "SCR", @@ -479,15 +483,15 @@ ], "SDG": [ "SDG", - "ସୁଦାନୀୟ ପାଉଣ୍ଡ୍" + "ସୁଦାନୀଜ ପାଉଣ୍ଡ୍" ], "SEK": [ "SEK", - "ସ୍ୱେଡିୟ କ୍ରୋନା" + "ସ୍ୱେଡିଶ୍ କ୍ରୋନା" ], "SGD": [ "SGD", - "ସିଂଗାପୁର୍ ଡଲାର୍" + "ସିଙ୍ଗାପୁର୍ ଡଲାର୍" ], "SHP": [ "SHP", @@ -495,7 +499,7 @@ ], "SLL": [ "SLL", - "ସିଏରା ଲେଓନେଆନ୍ ଲେଓନି" + "ସିଏରା ଲିଓନୀୟ ଲେଓନ୍" ], "SOS": [ "SOS", @@ -503,15 +507,19 @@ ], "SRD": [ "SRD", - "ସୁରିନାମେସେ ଡଲାର୍" + "ସୁରିନାମିଜ୍ ଡଲାର୍" ], "SSP": [ "SSP", - "ଦକ୍ଷିଣ ସୁଦାନେସେ ପାଉଣ୍ଡ୍" + "ଦକ୍ଷିଣ ସୁଡାନିଜ୍‍ ପାଉଣ୍ଡ୍" ], "STD": [ "STD", - "ସାଓ ଟୋମେ ଏବଂ ପ୍ରିସିପେ ଡୋବ୍ରା" + "ସାଓ ତୋମେ & ପ୍ରିସିପ୍ ଡୋବ୍ରା (1977–2017)" + ], + "STN": [ + "STN", + "ସାଓ ତୋମେ & ପ୍ରିସିପ୍ ଡୋବ୍ରା" ], "SYP": [ "SYP", @@ -519,27 +527,27 @@ ], "SZL": [ "SZL", - "ସ୍ଵାଜି ଲିଲାନଜେନି" + "ସ୍ଵାଜି ଲିଲାଞ୍ଜେନି" ], "THB": [ "THB", - "ଥାଇ ବାହତ୍" + "ଥାଇ ଭାଟ୍" ], "TJS": [ "TJS", - "ତାଜିକିସ୍ତାନିୟ ସୋମୋନି" + "ତାଜିକିସ୍ତାନୀ ସୋମୋନି" ], "TMT": [ "TMT", - "ତୁର୍କମେନିସ୍ତାନିୟ ମନତ" + "ତୁର୍କମେନିସ୍ତାନୀ ମନତ୍‌" ], "TND": [ "TND", - "ତୁନିସିୟ ଦିନାର୍" + "ଟୁନେସିଆଇ ଦିନାର୍" ], "TOP": [ "TOP", - "ତୋନଗିୟ ପାଙ୍ଗ୍" + "ତୋଙ୍ଗିୟ ପାଙ୍ଗା" ], "TRY": [ "TRY", @@ -547,7 +555,7 @@ ], "TTD": [ "TTD", - "ଟ୍ରିନିଡାଡ୍ ଏବଂ ଟୋବାଗୋ ଡଲାର୍" + "ତ୍ରିନିଦାଦ୍ ଏବଂ ଟୋବାଗୋ ଡଲାର୍" ], "TWD": [ "NT$", @@ -555,15 +563,15 @@ ], "TZS": [ "TZS", - "ତାନଜାନିୟ ସିଲିଂ" + "ତାନଜାନୀୟ ଶିଲିଂ" ], "UAH": [ "UAH", - "ୟୁକ୍ରେନିୟ ହରୟଭନିଆ" + "ୟୁକ୍ରେନୀୟ ହ୍ରାଇଭନିଆ" ], "UGX": [ "UGX", - "ୟୁଗାନଡିୟ ସିଲିଂ" + "ଉଗାଣ୍ଡିୟ ଶିଲିଂ" ], "USD": [ "$", @@ -571,11 +579,11 @@ ], "UYU": [ "UYU", - "ୟୁରୁଗୁଆୟାନ୍ ପେସୋ" + "ଉରୁଗୁଇୟାନ୍ ପେସୋ" ], "UZS": [ "UZS", - "ଉଜବେକିସ୍ତାନିୟ ସୋମ୍" + "ଉଜବେକିସ୍ତାନୀ ସୋମ୍" ], "VEF": [ "VEF", @@ -583,7 +591,7 @@ ], "VND": [ "₫", - "ଭୀଏତନାମୀୟ ଡଂ" + "ଭୀଏତନାମୀୟ ଡଙ୍ଗ" ], "VUV": [ "VUV", @@ -591,15 +599,15 @@ ], "WST": [ "WST", - "ସମୋୟ ତାଲା" + "ସାମୋୟିୟ ତାଲା" ], "XAF": [ "FCFA", - "କେନ୍ଦ୍ରୀୟ ଆଫ୍ରିକିୟ CFA ଫ୍ରାଙ୍କ୍" + "ମଧ୍ୟ ଆଫ୍ରିକୀ CFA ଫ୍ରାଙ୍କ୍" ], "XCD": [ "EC$", - "ପୂର୍ବ କାରିବିୟ ଡଲାର୍" + "ପୂର୍ବ କାରିବୀୟ ଡଲାର୍" ], "XOF": [ "CFA", @@ -619,7 +627,7 @@ ], "ZMW": [ "ZMW", - "ଜମ୍ଵିୟ କୱାଚା" + "ଜାମ୍ବୀୟ କ୍ୱାଚା" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os.json b/src/Symfony/Component/Intl/Resources/data/currencies/os.json index 86335b6d61b11..1481057e15821 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.37.1", + "Version": "2.1.38.69", "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 948f46351eea8..73e2e9b6122a0 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.31.33", + "Version": "2.1.38.69", "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 b252dee934e3e..78fe3f486d6f8 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.37.22", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -439,6 +439,10 @@ ], "MRO": [ "MRO", + "ਮੋਰਿਟਾਨੀਆਈ ਊਗੀਆ (1973–2017)" + ], + "MRU": [ + "MRU", "ਮੋਰਿਟਾਨੀਆਈ ਊਗੀਆ" ], "MUR": [ @@ -587,6 +591,10 @@ ], "STD": [ "STD", + "ਸਾਉ ਟੋਮੀ ਐਂਡ ਪ੍ਰਿੰਸਪੀ ਡੋਬਰਾ (1977–2017)" + ], + "STN": [ + "STN", "ਸਾਉ ਟੋਮੀ ਐਂਡ ਪ੍ਰਿੰਸਪੀ ਡੋਬਰਾ" ], "SUR": [ 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 a43a50f7169c6..38f3cd09cc6cb 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.37.1", + "Version": "2.1.38.69", "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 c5e710677dca2..c54c5c63ec946 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.37.5", + "Version": "2.1.39.15", "Names": { "ADP": [ "ADP", @@ -595,6 +595,10 @@ ], "MRO": [ "MRO", + "ouguiya mauretańska (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya mauretańska" ], "MTL": [ @@ -819,6 +823,10 @@ ], "STD": [ "STD", + "dobra Wysp Świętego Tomasza i Książęcej (1977–2017)" + ], + "STN": [ + "STN", "dobra Wysp Świętego Tomasza i Książęcej" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json index 52a2da3d95308..7ba97c4bc79c7 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -369,6 +369,10 @@ "MRO", "MRO" ], + "MRU": [ + "MRU", + "MRU" + ], "MUR": [ "MUR", "MUR" @@ -517,6 +521,10 @@ "STD", "STD" ], + "STN": [ + "STN", + "STN" + ], "SYP": [ "SYP", "SYP" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json index 8e86c2a9cb079..9ead271d3fc55 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.37.1", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Ouguiya mauritana (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya mauritana" ], "MTL": [ @@ -911,6 +915,10 @@ ], "STD": [ "STD", + "Dobra de São Tomé e Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra de São Tomé e Príncipe" ], "SUR": [ 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 b90f0928e65b9..b492ac243cccc 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.31.33", + "Version": "2.1.38.39", "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 1922e4bc8140f..5cc7bc75b2f7a 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.35.71", + "Version": "2.1.39.12", "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 22930077f8447..9040b0d87f524 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.31.33", + "Version": "2.1.38.39", "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 46b59e0dfa81c..42ef860b9fcb4 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.31.33", + "Version": "2.1.38.39", "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 756583cf9cc7f..c955674572fb8 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.31.33", + "Version": "2.1.38.39", "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 bba30626697dc..2672a96a1456d 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.37.6", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -287,6 +287,10 @@ ], "MRO": [ "MRO", + "Ouguiya da Mauritânia (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya da Mauritânia" ], "MVR": [ @@ -398,6 +402,10 @@ "SRD", "dólar do Suriname" ], + "STN": [ + "STN", + "São Tomé & Príncipe Dobra (2018)" + ], "SZL": [ "SZL", "Lilangeni da Suazilândia" 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 f06bdee5b03f5..13c94239b0a33 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json @@ -1,9 +1,9 @@ { - "Version": "2.1.31.33", + "Version": "2.1.39.11", "Names": { - "STD": [ + "STN": [ "Db", - "Dobra de São Tomé e Príncipe" + "São Tomé & Príncipe Dobra (2018)" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json index 38e71b98b64dc..29afd9e65ab73 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.37.5", + "Version": "2.1.38.72", "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 4af10bbb5bfca..6080cd974e918 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.37.6", + "Version": "2.1.38.69", "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 53315a63ed3cc..8a2a054280873 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.31.33", + "Version": "2.1.38.69", "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 3520c65eba4e3..e8545fcbe472a 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -671,6 +671,10 @@ ], "MRO": [ "MRO", + "ouguiya da la Mauretania (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya da la Mauretania" ], "MTL": [ @@ -899,6 +903,10 @@ ], "STD": [ "STD", + "dobra da São Tomé e Principe (1977–2017)" + ], + "STN": [ + "STN", "dobra da São Tomé e Principe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json index 5e88b60f203d6..845a8ecf80c1d 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya ryo muri Moritaniya (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya ryo muri Moritaniya" ], "MUR": [ @@ -175,6 +179,10 @@ ], "STD": [ "STD", + "Idobura ryo muri Sawotome na Perensipe (1977–2017)" + ], + "STN": [ + "STN", "Idobura ryo muri Sawotome na Perensipe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json index b08239bd412bb..de4561f084442 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -531,6 +531,10 @@ ], "MRO": [ "MRO", + "ouguiya mauritană (1973–2017)" + ], + "MRU": [ + "MRU", "ouguiya mauritană" ], "MTL": [ @@ -743,6 +747,10 @@ ], "STD": [ "STD", + "dobra Sao Tome și Principe (1977–2017)" + ], + "STN": [ + "STN", "dobra Sao Tome și Principe" ], "SUR": [ 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 dd1765b4d8e54..f0af15f5eeb28 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.31.33", + "Version": "2.1.38.39", "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 840cfbe4cdc0d..3f1917c8900ac 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.37.1", + "Version": "2.1.39.27", "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 7c4a86193bfef..a2b3748ea233f 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.37.58", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "мавританская угия (1973–2017)" + ], + "MRU": [ + "MRU", "мавританская угия" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "добра Сан-Томе и Принсипи (1977–2017)" + ], + "STN": [ + "STN", "добра Сан-Томе и Принсипи" ], "SUR": [ 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 ae200958dbed1..f2a67f08985c9 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.31.33", + "Version": "2.1.38.39", "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 63ac1fb40ebb1..27449bf1037b5 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.31.33", + "Version": "2.1.38.39", "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 8c77a0f8b4380..d665ea64ca3e8 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.31.33", + "Version": "2.1.38.39", "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 3a2eec9be9d11..3853b1b4efb4f 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.31.33", + "Version": "2.1.38.39", "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 c100108e82b06..2dda19b9a7ba0 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.37.5", + "Version": "2.1.38.72", "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 db3c21854d4cd..abf5138ace780 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.37.1", + "Version": "2.1.38.69", "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 bc82881d1e3ba..52c9b43c379a4 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.31.33", + "Version": "2.1.38.69", "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 512b288548b47..a8e357c92e184 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "ugîya tî Moritanïi (1973–2017)" + ], + "MRU": [ + "MRU", "ugîya tî Moritanïi" ], "MUR": [ @@ -175,6 +179,10 @@ ], "STD": [ "STD", + "dôbra tî Sâô Tomë na Prinsîpe (1977–2017)" + ], + "STN": [ + "STN", "dôbra tî Sâô Tomë na Prinsîpe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json index 2bc0d02bd0cc9..321a08b32373e 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.37.8", + "Version": "2.1.39.37", "Names": { "ADP": [ "ADP", @@ -623,6 +623,10 @@ ], "MRO": [ "MRO", + "Mauritanijska ogija (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanijska ogija" ], "MTL": [ @@ -763,11 +767,11 @@ ], "ROL": [ "ROL", - "Rumunski lej" + "Rumunski lej (1952–2006)" ], "RON": [ "RON", - "Rumunski lej (1952–2006)" + "Rumunski lej" ], "RSD": [ "RSD", @@ -851,6 +855,10 @@ ], "STD": [ "STD", + "Saotomska dobra (1977–2017)" + ], + "STN": [ + "STN", "Saotomska dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index 1e980a4ab4e6b..e8a6959f86a21 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.37.5", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "මුරුසි ඔයිගුයියා (1973–2017)" + ], + "MRU": [ + "MRU", "මුරුසි ඔයිගුයියා" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "සාඕ තෝම් සහ ප්‍රින්සිප් දොබ්‍රා (1977–2017)" + ], + "STN": [ + "STN", "සාඕ තෝම් සහ ප්‍රින්සිප් දොබ්‍රා" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json index 2871390ecfefc..ab7061b963a27 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauritánska ukija (1973–2017)" + ], + "MRU": [ + "MRU", "mauritánska ukija" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "svätotomášska dobra (1977–2017)" + ], + "STN": [ + "STN", "svätotomášska dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json index c03f2b8a88692..3d0d38adb0656 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.37.1", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "mavretanska uguija (1973–2017)" + ], + "MRU": [ + "MRU", "mavretanska uguija" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "saotomejska dobra (1977–2017)" + ], + "STN": [ + "STN", "saotomejska dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json index c1c1dcd9c094a..b87ad555f3222 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ugwiya ye Moritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya ye Moritania" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobra re Sao Tome ne Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra re Sao Tome ne Principe" ], "SZL": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so.json b/src/Symfony/Component/Intl/Resources/data/currencies/so.json index 1140eff65d9e9..0ed443c3781df 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.37.1", + "Version": "2.1.38.69", "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 5348ddead2c23..d307dfdd8a91b 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.31.33", + "Version": "2.1.38.69", "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 e4c98ff117869..a1715f513fc31 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.31.33", + "Version": "2.1.38.69", "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 0a4e2bde6b4e2..0862a2029cf0c 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.31.33", + "Version": "2.1.38.69", "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 9d0f1fb73fdc2..29fc4935f7905 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -39,7 +39,7 @@ ], "AZN": [ "AZN", - "Manata e Azerbajxhanit" + "Manata azerbajxhanase" ], "BAM": [ "BAM", @@ -123,7 +123,7 @@ ], "CNH": [ "CNH", - "Juani kinez (tregu i jashtëm)" + "Juani kinez (për treg të jashtëm)" ], "CNY": [ "CN¥", @@ -151,7 +151,7 @@ ], "CZK": [ "CZK", - "Koruna e Republikës Çeke" + "Koruna e Çekisë" ], "DJF": [ "DJF", @@ -171,7 +171,7 @@ ], "EGP": [ "EGP", - "Stërlina egjiptiane" + "Sterlina egjiptiane" ], "ERN": [ "ERN", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "Ugija mauritane (1973–2017)" + ], + "MRU": [ + "MRU", "Ugija mauritane" ], "MUR": [ @@ -491,7 +495,7 @@ ], "SDG": [ "SDG", - "Stërlina sudaneze" + "Sterlina sudaneze" ], "SEK": [ "SEK", @@ -503,7 +507,7 @@ ], "SHP": [ "SHP", - "Stërlina e Ishullit të Shën-Helenës" + "Sterlina e Ishullit të Shën-Helenës" ], "SLL": [ "SLL", @@ -519,10 +523,14 @@ ], "SSP": [ "SSP", - "Stërlina e Sudanit të Jugut" + "Sterlina sudanezo-jugore" ], "STD": [ "STD", + "Dobra e Sao-Tomes dhe Prinsipes (1977–2017)" + ], + "STN": [ + "STN", "Dobra e Sao-Tomes dhe Prinsipes" ], "SYP": [ 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 aeb51f388500b..5b1bac251696e 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.31.33", + "Version": "2.1.38.39", "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 42a14fd3d8bd0..36ef5a780b05f 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -623,6 +623,10 @@ ], "MRO": [ "MRO", + "Мауританијска oгија (1973–2017)" + ], + "MRU": [ + "MRU", "Мауританијска oгија" ], "MTL": [ @@ -763,11 +767,11 @@ ], "ROL": [ "ROL", - "Румунски леј" + "Румунски леј (1952–2006)" ], "RON": [ "RON", - "Румунски леј (1952–2006)" + "Румунски леј" ], "RSD": [ "RSD", @@ -851,6 +855,10 @@ ], "STD": [ "STD", + "Саотомска добра (1977–2017)" + ], + "STN": [ + "STN", "Саотомска добра" ], "SUR": [ 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 2bc0d02bd0cc9..321a08b32373e 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.37.8", + "Version": "2.1.39.37", "Names": { "ADP": [ "ADP", @@ -623,6 +623,10 @@ ], "MRO": [ "MRO", + "Mauritanijska ogija (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanijska ogija" ], "MTL": [ @@ -763,11 +767,11 @@ ], "ROL": [ "ROL", - "Rumunski lej" + "Rumunski lej (1952–2006)" ], "RON": [ "RON", - "Rumunski lej (1952–2006)" + "Rumunski lej" ], "RSD": [ "RSD", @@ -851,6 +855,10 @@ ], "STD": [ "STD", + "Saotomska dobra (1977–2017)" + ], + "STN": [ + "STN", "Saotomska dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index 543d786ccc55d..00f411f54778d 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "mauretansk ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "mauretansk ouguiya" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "saotomeansk dobra (1977–2017)" + ], + "STN": [ + "STN", "saotomeansk dobra" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index b73d95b9f4abe..0fc0fd1957693 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.37.34", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -387,6 +387,10 @@ ], "MRO": [ "MRO", + "Ouguiya ya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya ya Mauritania" ], "MUR": [ @@ -543,6 +547,10 @@ ], "STD": [ "STD", + "Dobra ya Sao Tome na Principe (1977–2017)" + ], + "STN": [ + "STN", "Dobra ya Sao Tome na Principe" ], "SYP": [ 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 fcc96828828bf..9c0760eb06790 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.37.6", + "Version": "2.1.39.11", "Names": { "CDF": [ "FC", @@ -23,6 +23,10 @@ ], "MRO": [ "MRO", + "Ugwiya ya Moritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ugwiya ya Moritania" ], "SCR": [ 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 423821937904f..97a71feeceede 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.31.33", + "Version": "2.1.38.39", "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 531b6310de252..6d8263e3424ab 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "மொரிஷானியன் ஒகுயா (1973–2017)" + ], + "MRU": [ + "MRU", "மொரிஷானியன் ஒகுயா" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "சாவ் டோமி மற்றும் பிரின்ஸ்பி டோப்ரா (1977–2017)" + ], + "STN": [ + "STN", "சாவ் டோமி மற்றும் பிரின்ஸ்பி டோப்ரா" ], "SYP": [ 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 54b5d567dd335..909219aeabb18 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.31.33", + "Version": "2.1.38.39", "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 f8f9a3bd1f891..a6ddffa725ec4 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.31.33", + "Version": "2.1.38.39", "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 1ac4693ff3a90..c5abb7437d3aa 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.31.33", + "Version": "2.1.38.39", "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 6e111f3ce12bd..156892f946da4 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.36.86", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "మౌరిటానియన్ ఒగ్యియా (1973–2017)" + ], + "MRU": [ + "MRU", "మౌరిటానియన్ ఒగ్యియా" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "సావో టోమ్ మరియు ప్రిన్సిపి డోబ్రా (1977–2017)" + ], + "STN": [ + "STN", "సావో టోమ్ మరియు ప్రిన్సిపి డోబ్రా" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json index ced52b103dc76..57ec974add4af 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/th.json b/src/Symfony/Component/Intl/Resources/data/currencies/th.json index c184442d1685d..9a0f9a6a6d0fa 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.37.56", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -667,6 +667,10 @@ ], "MRO": [ "MRO", + "อูกียามอริเตเนีย (1973–2017)" + ], + "MRU": [ + "MRU", "อูกียามอริเตเนีย" ], "MTL": [ @@ -895,6 +899,10 @@ ], "STD": [ "STD", + "ดอบราเซาตูเมและปรินซิปี (1977–2017)" + ], + "STN": [ + "STN", "ดอบราเซาตูเมและปรินซิปี" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json index bc39bd9760a46..ea11e421421e0 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.37.5", + "Version": "2.1.38.72", "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 a663b9293cf79..4a63583449abe 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.37.6", + "Version": "2.1.38.73", "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 f4b9c938e9acc..f5881a01e2c8d 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -391,6 +391,10 @@ ], "MRO": [ "MRO", + "Mauritanian Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "Mauritanian Ouguiya" ], "MUR": [ @@ -547,6 +551,10 @@ ], "STD": [ "STD", + "São Tomé & Príncipe Dobra (1977–2017)" + ], + "STN": [ + "STN", "São Tomé & Príncipe Dobra" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index e3036ccb79dbb..2c46a47ae1638 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.37.5", + "Version": "2.1.38.39", "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 10e03b0c67e65..fe0c247a635fc 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "Moritanya Ouguiyası (1973–2017)" + ], + "MRU": [ + "MRU", "Moritanya Ouguiyası" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "São Tomé ve Príncipe Dobrası (1977–2017)" + ], + "STN": [ + "STN", "São Tomé ve Príncipe Dobrası" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json index dd94eb8ceff21..d324b847f80aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.5", + "Version": "2.1.38.72", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json index e42517b0bb0bd..af737fd2aa246 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.37.5", + "Version": "2.1.39.11", "Names": { "ADP": [ "ADP", @@ -679,6 +679,10 @@ ], "MRO": [ "MRO", + "ماۋرىتانىيە ئۇگىيەسى (1973–2017)" + ], + "MRU": [ + "MRU", "ماۋرىتانىيە ئۇگىيەسى" ], "MTL": [ @@ -911,6 +915,10 @@ ], "STD": [ "STD", + "سان-تومې ۋە پىرىنسىپى دوبراسى (1977–2017)" + ], + "STN": [ + "STN", "سان-تومې ۋە پىرىنسىپى دوبراسى" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json index 3bb22167d9480..62de55e9e27f5 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.37.12", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -615,6 +615,10 @@ ], "MRO": [ "MRO", + "мавританська угія (1973–2017)" + ], + "MRU": [ + "MRU", "мавританська угія" ], "MTL": [ @@ -843,6 +847,10 @@ ], "STD": [ "STD", + "добра Сан-Томе і Прінсіпі (1977–2017)" + ], + "STN": [ + "STN", "добра Сан-Томе і Прінсіпі" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json index 0a5ca9e1d34cb..fa41082b1ca04 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.37.69", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -387,6 +387,10 @@ ], "MRO": [ "MRO", + "موریطانیائی اوگوئیا (1973–2017)" + ], + "MRU": [ + "MRU", "موریطانیائی اوگوئیا" ], "MUR": [ @@ -543,6 +547,10 @@ ], "STD": [ "STD", + "ساؤ ٹوم اور پرنسپے ڈوبرا (1977–2017)" + ], + "STN": [ + "STN", "ساؤ ٹوم اور پرنسپے ڈوبرا" ], "SYP": [ 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 fd72f7d9f6ea3..2bcc25961258e 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.37.6", + "Version": "2.1.38.39", "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 153a7aca95f4a..cf9fe56d802ba 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -375,6 +375,10 @@ ], "MRO": [ "MRO", + "Mavritaniya uqiyasi (1973–2017)" + ], + "MRU": [ + "MRU", "Mavritaniya uqiyasi" ], "MUR": [ @@ -523,6 +527,10 @@ ], "STD": [ "STD", + "San-Tome va Prinsipi dobrasi (1977–2017)" + ], + "STN": [ + "STN", "San-Tome va Prinsipi dobrasi" ], "SYP": [ 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 4d6c14a4461f5..d8bc69eb6d546 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.36.86", + "Version": "2.1.38.69", "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 6de5eac7848a7..e13a40eeb89e9 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.37.1", + "Version": "2.1.38.69", "Names": { "ANG": [ "ANG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json index 755e67f0047ae..2693d127a4067 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -667,6 +667,10 @@ ], "MRO": [ "MRO", + "Ouguiya Mauritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya Mauritania" ], "MTL": [ @@ -895,6 +899,10 @@ ], "STD": [ "STD", + "Dobra São Tomé và Príncipe (1977–2017)" + ], + "STN": [ + "STN", "Dobra São Tomé và Príncipe" ], "SUR": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json index 8a62728b97ae2..a2eb36e53a240 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json index 6912204ced95c..fa0893f557102 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.37.1", + "Version": "2.1.38.69", "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 70b95d12fe439..694ddaeb4288b 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -123,6 +123,10 @@ ], "MRO": [ "MRO", + "Ouguiya ti Orílẹ́ède Maritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya ti Orílẹ́ède Maritania" ], "MUR": [ @@ -179,6 +183,10 @@ ], "STD": [ "STD", + "Dobira ti Orílẹ́ède Sao tome Ati Pirisipe (1977–2017)" + ], + "STN": [ + "STN", "Dobira ti Orílẹ́ède Sao tome Ati Pirisipe" ], "SZL": [ 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 ebeb3354a3735..b89781019333c 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.37.9", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -119,6 +119,10 @@ ], "MRO": [ "MRO", + "Ouguiya ti Orílɛ́ède Maritania (1973–2017)" + ], + "MRU": [ + "MRU", "Ouguiya ti Orílɛ́ède Maritania" ], "MUR": [ @@ -171,6 +175,10 @@ ], "STD": [ "STD", + "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe (1977–2017)" + ], + "STN": [ + "STN", "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe" ], "TND": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index 44b25bc511842..04379ec801608 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.37.42", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -679,6 +679,10 @@ ], "MRO": [ "MRO", + "毛里塔尼亚乌吉亚 (1973–2017)" + ], + "MRU": [ + "MRU", "毛里塔尼亚乌吉亚" ], "MTL": [ @@ -911,6 +915,10 @@ ], "STD": [ "STD", + "圣多美和普林西比多布拉 (1977–2017)" + ], + "STN": [ + "STN", "圣多美和普林西比多布拉" ], "SUR": [ 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 78ee61c66b47d..495d290cfa8d6 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.37.6", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -131,6 +131,10 @@ ], "MRO": [ "MRO", + "毛里塔尼亞烏吉亞 (1973–2017)" + ], + "MRU": [ + "MRU", "毛里塔尼亞烏吉亞" ], "MUR": [ @@ -203,6 +207,10 @@ ], "STD": [ "STD", + "聖多美和普林西比多布拉 (1977–2017)" + ], + "STN": [ + "STN", "聖多美和普林西比多布拉" ], "SYP": [ 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 ca06dcdfd0404..1e0c27c1b9741 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.37.6", + "Version": "2.1.38.39", "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 9aaacae87af21..2bde2225a3d1f 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.37.6", + "Version": "2.1.38.39", "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 8b082f863f685..354db69559cbc 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.37.6", + "Version": "2.1.38.39", "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 60dbd615815e2..2fef02124c7ea 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.37.5", + "Version": "2.1.39.20", "Names": { "ADP": [ "ADP", @@ -683,6 +683,10 @@ ], "MRO": [ "MRO", + "茅利塔尼亞烏吉亞 (1973–2017)" + ], + "MRU": [ + "MRU", "茅利塔尼亞烏吉亞" ], "MTL": [ @@ -915,6 +919,10 @@ ], "STD": [ "STD", + "聖多美島和普林西比島多布拉 (1977–2017)" + ], + "STN": [ + "STN", "聖多美島和普林西比島多布拉" ], "SUR": [ 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 78ee61c66b47d..495d290cfa8d6 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.37.6", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -131,6 +131,10 @@ ], "MRO": [ "MRO", + "毛里塔尼亞烏吉亞 (1973–2017)" + ], + "MRU": [ + "MRU", "毛里塔尼亞烏吉亞" ], "MUR": [ @@ -203,6 +207,10 @@ ], "STD": [ "STD", + "聖多美和普林西比多布拉 (1977–2017)" + ], + "STN": [ + "STN", "聖多美和普林西比多布拉" ], "SYP": [ 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 74e891449719d..783c15dee9463 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.31.33", + "Version": "2.1.38.39", "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 74e891449719d..783c15dee9463 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.31.33", + "Version": "2.1.38.39", "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 8b082f863f685..354db69559cbc 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.37.6", + "Version": "2.1.38.39", "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 3a6f923b3cf29..e07dbbd3767a6 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.37.1", + "Version": "2.1.39.11", "Names": { "AED": [ "AED", @@ -379,6 +379,10 @@ ], "MRO": [ "MRO", + "i-Mauritanian Ouguiya (1973–2017)" + ], + "MRU": [ + "MRU", "i-Mauritanian Ouguiya" ], "MUR": [ @@ -527,6 +531,10 @@ ], "STD": [ "STD", + "i-São Tomé kanye ne-Príncipe Dobra (1977–2017)" + ], + "STN": [ + "STN", "i-São Tomé kanye ne-Príncipe Dobra" ], "SYP": [ diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index 65c94f75b259c..ff428d44d5985 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "Afar", "ab": "Abkasies", @@ -399,6 +399,8 @@ "yue": "Kantonees", "zgh": "Standaard Marokkaanse Tamazight", "zh": "Sjinees", + "zh_Hans": "Chinees (Vereenvoudig)", + "zh_Hant": "Chinees (Tradisioneel)", "zu": "Zoeloe", "zun": "Zuni", "zxx": "Geen taalinhoud nie", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ak.json b/src/Symfony/Component/Intl/Resources/data/languages/ak.json index e12efa5bbb142..174170cb2d773 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.37.1", + "Version": "2.1.39.11", "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 0990e5cb9b82f..a1726c4e5d8fc 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.37.5", + "Version": "2.1.39.11", "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 fea292134794b..7893d2204b65f 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.36.86", + "Version": "2.1.39.20", "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 82d0565925051..871a930f7b4db 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.31.33", + "Version": "2.1.38.80", "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 028bc25219d1b..aec83caac1f77 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.37.6", + "Version": "2.1.38.39", "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 05cc4478760b6..8f95ed2e07b27 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.37.6", + "Version": "2.1.38.80", "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 a9d55a6d24554..9745f49557680 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/as.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/as.json @@ -1,7 +1,394 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { + "aa": "আফাৰ", + "ab": "আবখাজিয়ান", + "ace": "আচিনিজ", + "ada": "আদাংমে", + "ady": "আদিগে", + "af": "আফ্ৰিকানছ্", + "agq": "আঘেম", + "ain": "আইনু", + "ak": "আকান", + "ale": "আলেউট", + "alt": "দাক্ষিণাত্য আল্টাই", + "am": "আমহাৰিক", + "an": "আৰ্গোনিজ", + "anp": "আঙ্গিকা", + "ar": "আৰবী", + "ar_001": "আধুনিক মানক আৰবী", + "arn": "মাপুচে", + "arp": "আৰাপাহো", "as": "অসমীয়া", - "es_419": "লেটিন আমেৰিকান স্পেনিচ" + "asa": "আছু", + "ast": "এষ্টুৰীয়", + "av": "আভেৰিক", + "awa": "আৱাধি", + "ay": "আয়মাৰা", + "az": "আজেৰবাইজানী", + "ba": "বাছখিৰ", + "ban": "বালিনীজ", + "bas": "বাছা", + "be": "বেলাৰুছীয়", + "bem": "বেম্বা", + "bez": "বেনা", + "bg": "বুলগেৰীয়", + "bho": "ভোজপুৰী", + "bi": "বিছলামা", + "bin": "বিনি", + "bla": "ছিক্সিকা", + "bm": "বামবাৰা", + "bn": "বাংলা", + "bo": "তিব্বতী", + "br": "ব্ৰেটন", + "brx": "বড়ো", + "bs": "বছনীয়", + "bug": "বগিনীজ", + "byn": "ব্লিন", + "ca": "কাতালান", + "ce": "চেচেন", + "ceb": "চিবুৱানো", + "cgg": "চিগা", + "ch": "চামোৰো", + "chk": "চুকিজ", + "chm": "মাৰি", + "cho": "চোক্টাউ", + "chr": "চেৰোকি", + "chy": "চাইয়েন", + "ckb": "চেণ্ট্ৰেল কুৰ্ডিচ", + "co": "কোৰ্ছিকান", + "crs": "ছেছেলৱা ক্ৰিওল ফ্ৰেন্স", + "cs": "চেক", + "cu": "চাৰ্চ শ্লেভিক", + "cv": "চুভাচ", + "cy": "ৱেলচ", + "da": "ডেনিচ", + "dak": "ডাকোটা", + "dar": "দাৰ্গৱা", + "dav": "তেইতা", + "de": "জাৰ্মান", + "de_AT": "অষ্ট্ৰেলিয়ান জাৰ্মান", + "de_CH": "ছুইচ হাই জাৰ্মান", + "dgr": "ডোগ্ৰিব", + "dje": "ঝাৰ্মা", + "dsb": "ল’ৱাৰ ছোৰ্বিয়ান", + "dua": "ডুৱালা", + "dv": "দিবেহি", + "dyo": "জোলা-ফ’নি", + "dz": "জোংখা", + "dzg": "দাজাগা", + "ebu": "এম্বু", + "ee": "ইৱে", + "efi": "এফিক", + "eka": "একাজুক", + "el": "গ্ৰীক", + "en": "ইংৰাজী", + "en_AU": "অষ্ট্ৰেলিয়ান ইংৰাজী", + "en_CA": "কানাডিয়ান ইংৰাজী", + "en_GB": "ব্ৰিটিছ ইংৰাজী", + "en_US": "আমেৰিকান ইংৰাজী", + "eo": "এস্পেৰান্তো", + "es": "স্পেনিচ", + "es_419": "লেটিন আমেৰিকান স্পেনিচ", + "es_ES": "ইউৰোপীয়ান স্পেনিচ", + "es_MX": "মেক্সিকান স্পেনিচ", + "et": "এষ্টোনিয়", + "eu": "বাস্ক", + "ewo": "ইওন্দো", + "fa": "ফাৰ্ছী", + "ff": "ফুলাহ", + "fi": "ফিনিচ", + "fil": "ফিলিপিনো", + "fj": "ফিজিয়ান", + "fo": "ফাৰোইজ", + "fon": "ফ’ন", + "fr": "ফ্ৰেন্স", + "fr_CA": "কানাডিয়ান ফ্ৰেন্স", + "fr_CH": "ছুইচ ফ্ৰেন্স", + "fur": "ফ্ৰিউলিয়ান", + "fy": "ৱেষ্টাৰ্ণ ফ্ৰিছিয়ান", + "ga": "আইৰিচ", + "gaa": "গা", + "gd": "স্কটিচ গেইলিক", + "gez": "গীজ", + "gil": "গিলবাৰ্টিছ", + "gl": "গেলিচিয়ান", + "gn": "গুৱাৰাণী", + "gor": "গোৰোন্তালো", + "gsw": "ছুইচ জাৰ্মান", + "gu": "গুজৰাটী", + "guz": "গুছি", + "gv": "মেংক্স", + "gwi": "জিউইচিন", + "ha": "হাউছা", + "haw": "হাৱাই", + "he": "হিব্ৰু", + "hi": "হিন্দী", + "hil": "হিলিগায়নোন", + "hmn": "হমং", + "hr": "ক্ৰোৱেচিয়ান", + "hsb": "আপাৰ ছোৰ্বিয়ান", + "ht": "হেইটিয়ান ক্ৰিয়ল", + "hu": "হাঙ্গেৰিয়ান", + "hup": "হুপা", + "hy": "আৰ্মেনীয়", + "hz": "হেৰেৰো", + "ia": "ইণ্টাৰলিংগুৱা", + "iba": "ইবান", + "ibb": "ইবিবিও", + "id": "ইণ্ডোনেচিয়", + "ig": "ইগ্বো", + "ii": "ছিচুৱান ই", + "ilo": "ইলোকো", + "inh": "ইংগুচ", + "io": "ইডো", + "is": "আইচলেণ্ডিক", + "it": "ইটালিয়ান", + "iu": "ইনুক্টিটুট", + "ja": "জাপানী", + "jbo": "লোজ্বান", + "jgo": "নগোম্বা", + "jmc": "মেকহেম", + "jv": "জাভানী", + "ka": "জৰ্জিয়ান", + "kab": "কাবাইল", + "kac": "কাচিন", + "kaj": "জজু", + "kam": "কাম্বা", + "kbd": "কাবাৰ্ডিয়ান", + "kcg": "ত্যাপ", + "kde": "মাকোণ্ড", + "kea": "কাবুভেৰ্ডিয়ানু", + "kfo": "কোৰো", + "kha": "খাচি", + "khq": "কোয়াৰ চিনি", + "ki": "কিকুয়ু", + "kj": "কুয়ানিয়ামা", + "kk": "কাজাখ", + "kkj": "কাকো", + "kl": "কালালিছুট", + "kln": "কালেনজিন", + "km": "খমেৰ", + "kmb": "কিম্বুন্দু", + "kn": "কানাড়া", + "ko": "কোৰিয়ান", + "kok": "কোংকণী", + "kpe": "কেপেল", + "kr": "কানুৰি", + "krc": "কাৰাচে-বাল্কাৰ", + "krl": "কেৰেলিয়ান", + "kru": "কুৰুখ", + "ks": "কাশ্মিৰী", + "ksb": "চাম্বালা", + "ksf": "বাফিয়া", + "ksh": "কোলোগনিয়ান", + "ku": "কুৰ্ডিচ", + "kum": "কুমিক", + "kv": "কোমি", + "kw": "কোৰ্নিচ", + "ky": "কিৰ্গিজ", + "la": "লেটিন", + "lad": "লাডিনো", + "lag": "লাংগি", + "lb": "লাক্সেমবাৰ্গিচ", + "lez": "লেজঘিয়ান", + "lg": "গান্দা", + "li": "লিম্বুৰ্গিচ", + "lkt": "লাকোটা", + "ln": "লিংগালা", + "lo": "লাও", + "loz": "লোজি", + "lrc": "উদীচ্য লুৰি", + "lt": "লিথুৱানিয়ান", + "lu": "লুবা-কাটাংগা", + "lua": "লুবা-লুলুৱা", + "lun": "লুণ্ডা", + "luo": "লুও", + "lus": "মিজো", + "luy": "লুইয়া", + "lv": "লাটভিয়ান", + "mad": "মাদুৰেছে", + "mag": "মাগাহি", + "mai": "মৈথিলী", + "mak": "মাকাছাৰ", + "mas": "মাছাই", + "mdf": "মোক্সা", + "men": "মেণ্ডে", + "mer": "মেৰু", + "mfe": "মৰিছিয়ান", + "mg": "মালাগাছী", + "mgh": "মাখুৱা-মিট্টো", + "mgo": "মেটা", + "mh": "মাৰ্চলিজ", + "mi": "মাওৰি", + "mic": "মিকমেক", + "min": "মিনাংকাবাউ", + "mk": "মেচিডোনীয়", + "ml": "মালায়ালম", + "mn": "মংগোলীয়", + "mni": "মণিপুৰী", + "moh": "মোহোক", + "mos": "মোছি", + "mr": "মাৰাঠী", + "ms": "মালয়", + "mt": "মাল্টিজ", + "mua": "মুণ্ডাং", + "mul": "একাধিক ভাষা", + "mus": "ক্ৰীক", + "mwl": "মিৰাণ্ডিজ", + "my": "বাৰ্মীজ", + "myv": "এৰজিয়া", + "mzn": "মাজেন্দাৰানি", + "na": "নাউৰু", + "nap": "নিয়াপোলিটেন", + "naq": "নামা", + "nb": "নৰৱেজিয়ান বোকমাল", + "nd": "উত্তৰ নিবেবেলে", + "ne": "নেপালী", + "new": "নেৱাৰি", + "ng": "এন্দোঙ্গা", + "nia": "নিয়াছ", + "niu": "নিয়ুৱান", + "nl": "ডাচ", + "nl_BE": "ফ্লেমিচ", + "nmg": "কোৱাছিঅ’", + "nn": "নৰৱেজিয়ান নায়নোৰ্স্ক", + "nnh": "নিয়েম্বোন", + "nog": "নোগাই", + "nqo": "এন্কো", + "nr": "দক্ষিণ দেবেল", + "nso": "উদীচ্য ছোথো", + "nus": "নুয়েৰ", + "nv": "নাভাজো", + "ny": "ন্যাঞ্জা", + "nyn": "ন্যানকোল", + "oc": "অ’চিটান", + "om": "ওৰোমো", + "or": "ওড়িয়া", + "os": "ওছেটিক", + "pa": "পাঞ্জাবী", + "pag": "পংগাছিনান", + "pam": "পাম্পান্গা", + "pap": "পাপিয়ামেণ্টো", + "pau": "পালাউৱান", + "pcm": "নাইজেৰিয়ান পিজিন", + "pl": "প’লিচ", + "prg": "প্ৰুছিয়ান", + "ps": "পুস্ত", + "pt": "পৰ্তুগীজ", + "pt_BR": "ব্ৰাজিলিয়ান পৰ্তুগীজ", + "pt_PT": "ইউৰোপীয়ান পৰ্তুগীজ", + "qu": "কুৱেচুৱা", + "quc": "কিচিয়ে", + "rap": "ৰাপানুই", + "rar": "ৰাৰোতোঙ্গন", + "rm": "ৰোমানচ", + "rn": "ৰুন্দি", + "ro": "ৰোমানীয়", + "ro_MD": "মোল্ডাভিয়ান", + "rof": "ৰোম্বো", + "root": "ৰুট", + "ru": "ৰাছিয়ান", + "rup": "আৰোমানীয়", + "rw": "কিনয়াৰোৱাণ্ডা", + "rwk": "ৰৱা", + "sa": "সংস্কৃত", + "sad": "ছান্দাৱে", + "sah": "ছাখা", + "saq": "ছাম্বুৰু", + "sat": "চাওতালি", + "sba": "নাংম্বে", + "sbp": "ছাঙ্গু", + "sc": "ছাৰ্ডিনিয়ান", + "scn": "ছিচিলিয়ান", + "sco": "স্কটছ", + "sd": "সিন্ধি", + "se": "উদীচ্য ছামি", + "seh": "ছেনা", + "ses": "কোইৰাবোৰো চেন্নি", + "sg": "ছাঙ্গো", + "shi": "তাচেলহিট", + "shn": "চান", + "si": "সিংহলা", + "sk": "শ্লোভাক", + "sl": "শ্লোভেনিয়ান", + "sm": "ছামোন", + "sma": "দাক্ষিণাত্য ছামি", + "smj": "লুলে ছামি", + "smn": "ইনাৰি ছামি", + "sms": "স্কোল্ট ছামি", + "sn": "চোনা", + "snk": "ছোনিনকে", + "so": "ছোমালি", + "sq": "আলবেনীয়", + "sr": "ছাৰ্বিয়ান", + "srn": "স্ৰানান টোঙ্গো", + "ss": "স্বাতি", + "ssy": "ছাহো", + "st": "দাক্ষিণাত্য ছোথো", + "su": "ছুণ্ডানীজ", + "suk": "ছুকুমা", + "sv": "ছুইডিচ", + "sw": "স্বাহিলি", + "sw_CD": "কঙ্গো স্বাহিলি", + "swb": "কোমোৰিয়ান", + "syr": "চিৰিয়াক", + "ta": "তামিল", + "te": "তেলুগু", + "tem": "টিম্নে", + "teo": "তেছো", + "tet": "তেতুম", + "tg": "তাজিক", + "th": "থাই", + "ti": "টিগৰিনিয়া", + "tig": "তাইগ্ৰে", + "tk": "তুৰ্কমেন", + "tlh": "ক্লিংগন", + "tn": "ছোৱানা", + "to": "টোঙ্গান", + "tpi": "টোক পিছিন", + "tr": "তুৰ্কী", + "trv": "তাৰোকো", + "ts": "ছোঙ্গা", + "tt": "তাতাৰ", + "tum": "তুম্বুকা", + "tvl": "টুভালু", + "twq": "টাছাৱাক", + "ty": "তাহিতিয়ান", + "tyv": "তুভিনিয়ান", + "tzm": "চেণ্ট্ৰেল এটলাছ টামাজাইট", + "udm": "উদমুৰ্ত", + "ug": "উইঘুৰ", + "uk": "ইউক্ৰেইনীয়", + "umb": "উম্বুন্দু", + "und": "অজ্ঞাত ভাষা", + "ur": "উৰ্দু", + "uz": "উজবেক", + "vai": "ভাই", + "ve": "ভেণ্ডা", + "vi": "ভিয়েটনামী", + "vo": "ভোলাপুক", + "vun": "ভুঞ্জু", + "wa": "ৱালুন", + "wae": "ৱালছেৰ", + "wal": "ওলেইটা", + "war": "ৱাৰে", + "wo": "ৱোলাফ", + "xal": "কাল্মিক", + "xh": "হোছা", + "xog": "ছোগা", + "yav": "য়াংবেন", + "ybb": "য়েম্বা", + "yi": "ইদ্দিছ", + "yo": "ইউৰুবা", + "yue": "কেণ্টোনীজ", + "zgh": "ষ্টেণ্ডাৰ্ড মোৰোক্কান তামাজাইট", + "zh": "চীনা", + "zh_Hans": "সৰলীকৃত চীনা", + "zh_Hant": "পৰম্পৰাগত চীনা", + "zu": "ঝুলু", + "zun": "ঝুনি", + "zxx": "কোনো ভাষা সমল নাই", + "zza": "ঝাঝা" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index 3f31783a2ab41..d226a67835ceb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -1,12 +1,12 @@ { - "Version": "2.1.37.1", + "Version": "2.1.39.11", "Names": { "aa": "afar", "ab": "abxaz", "ace": "akin", "ach": "akoli", "ada": "adanqme", - "ady": "aduge", + "ady": "adıgey", "ae": "avestan", "af": "afrikaans", "afh": "afrihili", @@ -76,7 +76,7 @@ "chp": "çipevyan", "chr": "çeroki", "chy": "çeyen", - "ckb": "soran", + "ckb": "Mərkəzi kürdcə", "co": "korsika", "cop": "kopt", "cr": "kri", 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 32b7240417fd2..f8b9258bc238b 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.37.1", + "Version": "2.1.38.69", "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 4b4b700692424..b4b379fc35ef7 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "афарская", "ab": "абхазская", @@ -90,9 +90,6 @@ "en": "англійская", "eo": "эсперанта", "es": "іспанская", - "es_419": "лацінаамерыканская іспанская", - "es_ES": "еўрапейская іспанская", - "es_MX": "мексіканская іспанская", "et": "эстонская", "eu": "баскская", "ewo": "эвонда", @@ -104,8 +101,6 @@ "fo": "фарэрская", "fon": "фон", "fr": "французская", - "fr_CA": "канадская французская", - "fr_CH": "швейцарская французская", "fro": "старафранцузская", "fur": "фрыульская", "fy": "заходняя фрызская", @@ -301,7 +296,6 @@ "rm": "рэтараманская", "rn": "рундзі", "ro": "румынская", - "ro_MD": "малдаўская румынская", "rof": "ромба", "root": "корань", "ru": "руская", @@ -406,6 +400,8 @@ "zap": "сапатэк", "zgh": "стандартная мараканская тамазіхт", "zh": "кітайская", + "zh_Hans": "кітайская (спрошчаныя іерогліфы)", + "zh_Hant": "кітайская (традыцыйныя іерогліфы)", "zu": "зулу", "zun": "зуні", "zxx": "няма моўнага матэрыялу", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index f6352880d083f..801007fc81bbc 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.37.59", + "Version": "2.1.39.11", "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 8ede2e444b708..d3c4b838f8835 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.31.33", + "Version": "2.1.39.11", "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 009cadd84e57a..2148e59d043c1 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.36.86", + "Version": "2.1.39.11", "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 787a89c587368..c76b98911d7b8 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.37.6", + "Version": "2.1.38.69", "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 610e9d7b98917..99ad248d2b000 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.36.86", + "Version": "2.1.38.69", "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 e14a0778a99b4..33fadd28c92a6 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "afar", "ab": "abkhazeg", @@ -56,6 +56,7 @@ "bi": "bislama", "bik": "bikol", "bin": "bini", + "bla": "siksika", "bm": "bambara", "bn": "bengali", "bo": "tibetaneg", @@ -74,8 +75,10 @@ "cch": "atsam", "ce": "tchetcheneg", "ceb": "cebuano", + "cgg": "chigaeg", "ch": "chamorru", "chb": "chibcha", + "chk": "chuuk", "chm": "marieg", "cho": "choktaw", "chp": "chipewyan", @@ -86,6 +89,7 @@ "cop": "kopteg", "cr": "kri", "crh": "turkeg Krimea", + "crs": "kreoleg Sechelez", "cs": "tchekeg", "csb": "kachoubeg", "cu": "slavoneg iliz", @@ -94,18 +98,23 @@ "da": "daneg", "dak": "dakota", "dar": "dargwa", + "dav": "taita", "de": "alamaneg", "de_AT": "alamaneg Aostria", "de_CH": "alamaneg uhel Suis", "del": "delaware", "dgr": "dogrib", "din": "dinka", + "dje": "zarma", "doi": "dogri", "dsb": "izelsorabeg", + "dua": "douala", "dum": "nederlandeg krenn", "dv": "divehi", + "dyo": "diola", "dyu": "dyula", "dz": "dzongkha", + "dzg": "dazagaeg", "ebu": "embu", "ee": "ewe", "efi": "efik", @@ -130,6 +139,7 @@ "fa": "perseg", "fan": "fang", "fat": "fanti", + "ff": "fula", "fi": "finneg", "fil": "filipineg", "fit": "finneg traoñienn an Torne", @@ -166,7 +176,9 @@ "grc": "hencʼhresianeg", "gsw": "alamaneg Suis", "gu": "gujarati", + "guz": "gusiieg", "gv": "manaveg", + "gwi": "gwich’in", "ha": "haousa", "hai": "haida", "hak": "sinaeg Hakka", @@ -192,6 +204,7 @@ "ig": "igbo", "ii": "yieg Sichuan", "ik": "inupiaq", + "ilo": "ilokanoeg", "inh": "ingoucheg", "io": "ido", "is": "islandeg", @@ -199,6 +212,9 @@ "iu": "inuktitut", "ja": "japaneg", "jam": "kreoleg Jamaika", + "jbo": "lojban", + "jgo": "ngomba", + "jmc": "machame", "jpr": "yuzev-perseg", "jrb": "yuzev-arabeg", "jv": "javaneg", @@ -206,15 +222,23 @@ "kaa": "karakalpak", "kab": "kabileg", "kac": "kachin", + "kaj": "jju", "kam": "kamba", "kbd": "kabardeg", + "kcg": "tyap", + "kde": "makonde", "kea": "kabuverdianu", + "kfo": "koroeg", "kg": "kongo", "kha": "khasi", "kho": "khotaneg", + "khq": "koyra chiini", "ki": "kikuyu", "kj": "kwanyama", "kk": "kazak", + "kkj": "kakoeg", + "kl": "greunlandeg", + "kln": "kalendjineg", "km": "khmer", "kmb": "kimbundu", "kn": "kanareg", @@ -224,16 +248,22 @@ "kpe": "kpelle", "kr": "kanouri", "krc": "karatchay-balkar", + "kri": "krio", "krl": "karelieg", "kru": "kurukh", "ks": "kashmiri", + "ksb": "shambala", + "ksf": "bafiaeg", "ksh": "koluneg", "ku": "kurdeg", + "kum": "koumikeg", "kut": "kutenai", + "kv": "komieg", "kw": "kerneveureg", "ky": "kirgiz", "la": "latin", "lad": "ladino", + "lag": "langi", "lah": "lahnda", "lam": "lamba", "lb": "luksembourgeg", @@ -242,10 +272,13 @@ "lg": "ganda", "li": "limbourgeg", "lij": "ligurieg", + "lkt": "lakota", "ln": "lingala", "lo": "laoseg", "lol": "mongo", + "lou": "kreoleg Louiziana", "loz": "lozi", + "lrc": "loureg an Norzh", "lt": "lituaneg", "lu": "luba-katanga", "lua": "luba-lulua", @@ -256,35 +289,46 @@ "luy": "luyia", "lv": "latvieg", "lzh": "sinaeg lennegel", + "mad": "madoureg", "mag": "magahi", "mai": "maithili", + "mak": "makasar", "mas": "masai", "mdf": "moksha", "mdr": "mandar", "men": "mende", + "mer": "meru", "mfe": "moriseg", "mg": "malgacheg", "mga": "krenniwerzhoneg", + "mgh": "makhuwa-meetto", + "mgo": "metaʼ", "mh": "marshall", "mi": "maori", + "mic": "mikmakeg", + "min": "minangkabau", "mk": "makedoneg", "ml": "malayalam", "mn": "mongoleg", "mnc": "manchou", "mni": "manipuri", "moh": "mohawk", + "mos": "more", "mr": "marathi", "mrj": "marieg ar Cʼhornôg", "ms": "malayseg", "mt": "malteg", + "mua": "moundangeg", "mul": "yezhoù lies", "mus": "muskogi", "mwl": "mirandeg", "my": "birmaneg", "myv": "erza", + "mzn": "mazanderaneg", "na": "naurueg", "nan": "sinaeg Min Nan", "nap": "napolitaneg", + "naq": "nama", "nb": "norvegeg bokmål", "nd": "ndebele an Norzh", "nds": "alamaneg izel", @@ -297,13 +341,17 @@ "njo": "aoeg", "nl": "nederlandeg", "nl_BE": "flandrezeg", + "nmg": "ngoumbeg", "nn": "norvegeg nynorsk", + "nnh": "ngiemboon", "no": "norvegeg", "nog": "nogay", "non": "hennorseg", "nov": "novial", + "nqo": "nkoeg", "nr": "ndebele ar Su", "nso": "sotho an Norzh", + "nus": "nouereg", "nv": "navacʼho", "nwc": "newari klasel", "ny": "nyanja", @@ -312,6 +360,7 @@ "nyo": "nyoro", "oc": "okitaneg", "oj": "ojibwa", + "om": "oromoeg", "or": "oriya", "os": "oseteg", "osa": "osage", @@ -323,6 +372,7 @@ "pap": "papiamento", "pau": "palau", "pcd": "pikardeg", + "pcm": "pidjin Nigeria", "pdc": "alamaneg Pennsylvania", "peo": "henberseg", "phn": "fenikianeg", @@ -338,6 +388,7 @@ "pt_BR": "portugaleg Brazil", "pt_PT": "portugaleg Europa", "qu": "kechuaeg", + "quc": "kʼicheʼ", "qug": "kichuaeg Chimborazo", "raj": "rajasthani", "rap": "rapanui", @@ -349,6 +400,7 @@ "ro_MD": "moldoveg", "rof": "rombo", "rom": "romanieg", + "root": "gwrizienn", "ru": "rusianeg", "rup": "aroumaneg", "rw": "kinyarwanda", @@ -357,14 +409,19 @@ "sad": "sandawe", "sah": "yakouteg", "sam": "arameeg ar Samaritaned", + "saq": "samburu", "sas": "sasak", "sat": "santali", + "sba": "ngambayeg", + "sbp": "sangu", "sc": "sardeg", "scn": "sikilieg", "sco": "skoteg", "sd": "sindhi", "sdc": "sasareseg", "se": "sámi an Norzh", + "seh": "sena", + "ses": "koyraboro senni", "sg": "sango", "sga": "heniwerzhoneg", "sh": "serb-kroateg", @@ -386,10 +443,13 @@ "sog": "sogdieg", "sq": "albaneg", "sr": "serbeg", + "srn": "sranan tongo", "srr": "serer", "ss": "swati", + "ssy": "sahoeg", "st": "sotho ar Su", "su": "sundaneg", + "suk": "sukuma", "sux": "sumereg", "sv": "svedeg", "sw": "swahili", @@ -401,6 +461,8 @@ "ta": "tamileg", "tcy": "touloueg", "te": "telougou", + "tem": "temne", + "teo": "tesoeg", "ter": "tereno", "tet": "tetum", "tg": "tadjik", @@ -420,12 +482,14 @@ "tpi": "tok pisin", "tr": "turkeg", "tru": "turoyoeg", + "trv": "taroko", "ts": "tsonga", "tsi": "tsimshian", "tt": "tatar", "tum": "tumbuka", "tvl": "tuvalu", "tw": "twi", + "twq": "tasawakeg", "ty": "tahitianeg", "tyv": "touva", "tzm": "tamazigteg Kreizatlas", @@ -446,6 +510,7 @@ "vo": "volapük", "vot": "votyakeg", "vro": "voroeg", + "vun": "vunjo", "wa": "walloneg", "wae": "walser", "wal": "walamo", @@ -456,8 +521,11 @@ "xal": "kalmouk", "xh": "xhosa", "xmf": "megreleg", + "xog": "sogaeg", "yao": "yao", "yap": "yapeg", + "yav": "yangben", + "ybb": "yemba", "yi": "yiddish", "yo": "yorouba", "yue": "kantoneg", @@ -472,6 +540,7 @@ "zh_Hant": "sinaeg hengounel", "zu": "zouloueg", "zun": "zuni", - "zxx": "diyezh" + "zxx": "diyezh", + "zza": "zazakeg" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index 3c0533bfbb81c..57edbe6c99cb5 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.37.5", + "Version": "2.1.39.11", "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 175d2892e8b51..acadc23fae040 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.37.5", + "Version": "2.1.39.11", "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 3d3b15e913e5e..659e91126f536 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.37.22", + "Version": "2.1.39.20", "Names": { "aa": "àfar", "ab": "abkhaz", @@ -28,6 +28,7 @@ "arn": "mapudungu", "aro": "araona", "arp": "arapaho", + "ars": "àrab najdi", "arw": "arauac", "arz": "àrab egipci", "as": "assamès", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ce.json b/src/Symfony/Component/Intl/Resources/data/languages/ce.json index d2cd8478361a4..fa836974e27c5 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "афарийн", "ab": "абхазхойн", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index ee32b4614cc48..78a8053921287 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.37.11", + "Version": "2.1.39.15", "Names": { "aa": "afarština", "ab": "abcházština", @@ -30,6 +30,7 @@ "aro": "araonština", "arp": "arapažština", "arq": "arabština (alžírská)", + "ars": "arabština (nadžd)", "arw": "arawacké jazyky", "ary": "arabština (marocká)", "arz": "arabština (egyptská)", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index afeffa95aeda9..ac9186dd10a1e 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.37.17", + "Version": "2.1.39.11", "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 e4a155f608413..712f8d9ea9761 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -25,6 +25,7 @@ "arc": "aramæisk", "arn": "mapudungun", "arp": "arapaho", + "ars": "najd-arabisk", "arw": "arawak", "as": "assamesisk", "asa": "asu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index 58e7a7c571a70..7105b07435540 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.37.96", + "Version": "2.1.39.41", "Names": { "aa": "Afar", "ab": "Abchasisch", @@ -30,6 +30,7 @@ "aro": "Araona", "arp": "Arapaho", "arq": "Algerisches Arabisch", + "ars": "Nadschd-Arabisch", "arw": "Arawak", "ary": "Marokkanisches Arabisch", "arz": "Ägyptisches Arabisch", 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 bf6888ed7edcb..ddb358ae52636 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.37.6", + "Version": "2.1.38.39", "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 86643a8dd7f52..f92486e60c084 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.37.8", + "Version": "2.1.39.37", "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 3da27050ccab6..ea1c57fde687a 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.31.33", + "Version": "2.1.38.39", "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 aec44a314a40f..d3e9af9252400 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.36.86", + "Version": "2.1.38.69", "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 edb5f64a5b1b3..02ae68425ac55 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.37.1", + "Version": "2.1.39.11", "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 56686e45a8294..ed4ff61b6ad0d 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Αφάρ", "ab": "Αμπχαζικά", @@ -25,6 +25,7 @@ "arc": "Αραμαϊκά", "arn": "Αραουκανικά", "arp": "Αραπάχο", + "ars": "Αραβικά Νάτζντι", "arw": "Αραγουάκ", "as": "Ασαμικά", "asa": "Άσου", @@ -505,7 +506,7 @@ "was": "Γουασό", "wbp": "Γουαρλπίρι", "wo": "Γουόλοφ", - "wuu": "wuu", + "wuu": "Κινεζικά Γου", "xal": "Καλμίκ", "xh": "Κόσα", "xog": "Σόγκα", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en.json b/src/Symfony/Component/Intl/Resources/data/languages/en.json index 0c14c9fca2ae4..b2c53f95f0099 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.37.44", + "Version": "2.1.39.27", "Names": { "aa": "Afar", "ab": "Abkhazian", @@ -511,6 +511,7 @@ "sog": "Sogdien", "sq": "Albanian", "sr": "Serbian", + "sr_ME": "Montenegrin", "srn": "Sranan Tongo", "srr": "Serer", "ss": "Swati", 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 07eef76418e3a..22592696cf2ca 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.37.6", + "Version": "2.1.38.73", "Names": { "bn": "Bengali", "en_US": "United States English", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json b/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json index 2d7575da9c3b9..3ea893803c557 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "bn": "Bengali", "mfe": "Mauritian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json index 6347623f0ffc9..0eb92b2752d4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "nds_NL": "West Low German" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json index d2e5bf407a941..dffaf45401522 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json @@ -1,7 +1,6 @@ { - "Version": "2.1.37.11", + "Version": "2.1.38.73", "Names": { - "bn": "Bengali", - "or": "Oriya" + "bn": "Bengali" } } 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 9824a6f15ed39..ae3b56fb93cd5 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.37.6", + "Version": "2.1.38.73", "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 7d3ada60552f2..0920ff9f1a9fa 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.37.1", + "Version": "2.1.38.69", "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 b9fa0bcb73561..a85beff7bfd86 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.37.22", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abjasio", @@ -25,6 +25,7 @@ "arc": "arameo", "arn": "mapuche", "arp": "arapaho", + "ars": "árabe najdí", "arw": "arahuaco", "as": "asamés", "asa": "asu", 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 9eacb4d26a022..fefef28a6966b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -1,10 +1,11 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.39", "Names": { "ace": "achenés", "ady": "adigeo", "alt": "altái del sur", "arp": "arapajó", + "ars": "árabe de Néyed", "bla": "siksiká", "eu": "vasco", "fon": "fon", 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 6e3f0b0648902..46ba3c939bd07 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.37.22", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 1ab34f105066c..a6f3d861c1e3d 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.37.32", + "Version": "2.1.38.73", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 0caea7cc2e7d2..381ece80056b8 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.37.6", + "Version": "2.1.38.39", "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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 0caea7cc2e7d2..381ece80056b8 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.37.6", + "Version": "2.1.38.39", "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 701ff6ec8ac47..35701a2ea6e1c 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.37.22", + "Version": "2.1.38.73", "Names": { "ace": "acehnés", "alt": "altái meridional", 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 e4a96b265d1b1..46ba3c939bd07 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.37.6", + "Version": "2.1.38.39", "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 aed8f67a63176..e4878042dc918 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.37.22", + "Version": "2.1.39.11", "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 d5eb18cc4fd2a..6bb031663af82 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -1,12 +1,12 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { "aa": "afarera", "ab": "abkhaziera", "ace": "acehnera", "ach": "acholiera", "ada": "adangmera", - "ady": "adyghera", + "ady": "adigera", "af": "afrikaansa", "agq": "aghemera", "ain": "ainuera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index c93a4822bd4f5..1386cbf2057b1 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.37.5", + "Version": "2.1.39.11", "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 670a371499f71..41d508e7420d8 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.37.6", + "Version": "2.1.38.39", "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 db357b7a63a67..33166f79f90ba 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.37.1", + "Version": "2.1.39.11", "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 a5bba7ab8f95c..92c76d383e07f 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.37.67", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abhaasi", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "algerianarabia", + "ars": "arabia – najd", "arw": "arawak", "ary": "marokonarabia", "arz": "egyptinarabia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fo.json b/src/Symfony/Component/Intl/Resources/data/languages/fo.json index cba7b7355aeaa..6233854155b63 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "afar", "ab": "abkhasiskt", @@ -39,7 +39,7 @@ "bin": "bini", "bla": "siksika", "bm": "bambara", - "bn": "bengalskt", + "bn": "bangla", "bo": "tibetskt", "br": "bretonskt", "brx": "bodo", @@ -124,7 +124,7 @@ "hr": "kroatiskt", "hsb": "ovara sorbian", "hsn": "xiang kinesiskt", - "ht": "haitiskt", + "ht": "haitiskt creole", "hu": "ungarskt", "hup": "hupa", "hy": "armenskt", @@ -267,7 +267,7 @@ "nyn": "nyankole", "oc": "occitanskt", "om": "oromo", - "or": "oriya", + "or": "odia", "os": "ossetiskt", "pa": "punjabi", "pag": "pangasinan", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index ae86674061576..6dad4dee7c09a 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.37.1", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abkhaze", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "arabe algérien", + "ars": "arabe najdi", "arw": "arawak", "ary": "arabe marocain", "arz": "arabe égyptien", 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 63733eab3cf7a..ec70101313801 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.31.33", + "Version": "2.1.38.39", "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 de40525a7f51c..30ee29641b461 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.37.22", + "Version": "2.1.38.73", "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 9dd231c7b6acf..f4db7f506c6f1 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.37.6", + "Version": "2.1.38.85", "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 88b3c39c539ca..7e03caf51457b 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.37.1", + "Version": "2.1.39.11", "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 73a7b96614c30..94f03252e7786 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.37.5", + "Version": "2.1.39.11", "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 6aad95b805d06..e77e30b6cbf69 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.37.1", + "Version": "2.1.39.11", "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 a0ce37449ed4d..db5daf4d0b487 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.37.1", + "Version": "2.1.39.11", "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 50cc5bd509190..ad2701714e69a 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.36.86", + "Version": "2.1.39.11", "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 73ce8c3ac3d22..ae61b8b8ffbae 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.34.91", + "Version": "2.1.38.69", "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 6dfe54fedc891..721405a9f7b54 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.37.1", + "Version": "2.1.39.11", "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 e63b9f9a5cedb..04cc4c84cb3ec 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.37.22", + "Version": "2.1.39.20", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -25,6 +25,7 @@ "arc": "ארמית", "arn": "אראוקנית", "arp": "אראפהו", + "ars": "ערבית - נג׳ד", "arw": "ארוואק", "as": "אסאמית", "asa": "אסו", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index e5be6c9c6d6c7..515338e21869d 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.36.86", + "Version": "2.1.39.11", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", @@ -25,6 +25,7 @@ "arc": "ऐरेमेक", "arn": "मापूचे", "arp": "अरापाहो", + "ars": "नज्दी अरबी", "arw": "अरावक", "as": "असमिया", "asa": "असु", @@ -492,6 +493,7 @@ "was": "वाशो", "wbp": "वॉल्पेरी", "wo": "वोलोफ़", + "wuu": "वू चीनी", "xal": "काल्मिक", "xh": "ख़ोसा", "xog": "सोगा", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index f18f3f4331b2f..29539ba1824ca 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "afarski", "ab": "abhaski", @@ -25,6 +25,7 @@ "arc": "aramejski", "arn": "mapuche", "arp": "arapaho", + "ars": "najdi arapski", "arw": "aravački", "as": "asamski", "asa": "asu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index e03e1ecee157c..3b8010f6d8318 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abház", @@ -25,6 +25,7 @@ "arc": "arámi", "arn": "mapucse", "arp": "arapaho", + "ars": "nedzsdi arab", "arw": "aravak", "as": "asszámi", "asa": "asu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index b68df9a3d0b32..4cf3f7127a594 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.37.1", + "Version": "2.1.39.11", "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 6e9984d6c90e5..e50e515ab23f6 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Afar", "ab": "Abkhaz", @@ -28,6 +28,7 @@ "arn": "Mapuche", "arp": "Arapaho", "arq": "Arab Aljazair", + "ars": "Arab Najdi", "arw": "Arawak", "ary": "Arab Maroko", "arz": "Arab Mesir", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ig.json b/src/Symfony/Component/Intl/Resources/data/languages/ig.json index 5ad0a5a2000ab..cb215ff6ddadd 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.37.1", + "Version": "2.1.38.69", "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 aeafa3a2b0a50..68064497001a2 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.37.1", + "Version": "2.1.38.69", "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 6e9984d6c90e5..e50e515ab23f6 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Afar", "ab": "Abkhaz", @@ -28,6 +28,7 @@ "arn": "Mapuche", "arp": "Arapaho", "arq": "Arab Aljazair", + "ars": "Arab Najdi", "arw": "Arawak", "ary": "Arab Maroko", "arz": "Arab Mesir", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index fb87027d937d2..050b4f8a1d64d 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.37.5", + "Version": "2.1.39.11", "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 d1cf450ad161b..d1ca80bee9a18 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.37.1", + "Version": "2.1.39.40", "Names": { "aa": "afar", "ab": "abcaso", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "arabo algerino", + "ars": "arabo, najd", "arw": "aruaco", "ary": "arabo marocchino", "arz": "arabo egiziano", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index e63b9f9a5cedb..04cc4c84cb3ec 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.37.22", + "Version": "2.1.39.20", "Names": { "aa": "אפארית", "ab": "אבחזית", @@ -25,6 +25,7 @@ "arc": "ארמית", "arn": "אראוקנית", "arp": "אראפהו", + "ars": "ערבית - נג׳ד", "arw": "ארוואק", "as": "אסאמית", "asa": "אסו", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index c0650638e5651..847ea3d037d8a 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.37.1", + "Version": "2.1.39.20", "Names": { "aa": "アファル語", "ab": "アブハズ語", @@ -30,6 +30,7 @@ "aro": "アラオナ語", "arp": "アラパホー語", "arq": "アルジェリア・アラビア語", + "ars": "ナジュド地方・アラビア語", "arw": "アラワク語", "ary": "モロッコ・アラビア語", "arz": "エジプト・アラビア語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 61e24f77c69ae..4d86d0d61cfb3 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.37.1", + "Version": "2.1.39.11", "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 3f5d74cf7d1c7..d077e8b43dd9b 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.31.33", + "Version": "2.1.39.11", "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 26d4cecfac62a..cfc94c0671048 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.37.5", + "Version": "2.1.39.11", "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 4ecd29bedeede..3a41930f933e3 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.37.1", + "Version": "2.1.38.69", "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 b31dd25387243..5d3a8f5889407 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.37.5", + "Version": "2.1.39.11", "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 ab1df67f69d40..620f471c4916f 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.37.5", + "Version": "2.1.39.11", "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 d6d7cfb1b3b1f..5d669f96d0d2e 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "아파르어", "ab": "압카즈어", @@ -27,6 +27,7 @@ "arn": "마푸둔군어", "arp": "아라파호어", "arq": "알제리 아랍어", + "ars": "나즈디 아랍어", "arw": "아라와크어", "ary": "모로코 아랍어", "arz": "이집트 아랍어", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ks.json b/src/Symfony/Component/Intl/Resources/data/languages/ks.json index 87b6a2a4fc880..0946840f012ad 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.37.1", + "Version": "2.1.39.11", "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 5a21f76f32508..c002606f953bf 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.31.33", + "Version": "2.1.38.69", "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 f02560dc15a61..7694f60e094fd 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.37.5", + "Version": "2.1.39.11", "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 1bea234994d1e..9bdc36212f0e1 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.37.1", + "Version": "2.1.39.11", "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 4a151629706bd..3aae433b3e1f7 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.31.33", + "Version": "2.1.39.11", "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 9c5c3ba0301e9..1091bdc1b6a14 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.37.1", + "Version": "2.1.39.11", "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 3f0aab3b8d997..132a421fc5b98 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.37.1", + "Version": "2.1.39.11", "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 58968c5fa8e1a..8fa93ba498fd5 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.37.5", + "Version": "2.1.39.11", "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 0668a2b98a50c..c97484deefd37 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.37.1", + "Version": "2.1.39.11", "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 615dc615bb3c9..2ab15373a2583 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "afāru", "ab": "abhāzu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/meta.json b/src/Symfony/Component/Intl/Resources/data/languages/meta.json index 8af67e761ad61..0dfe57fd6be22 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.37.1", + "Version": "2.1.39.27", "Languages": [ "aa", "ab", @@ -512,6 +512,7 @@ "sog", "sq", "sr", + "sr_ME", "srn", "srr", "ss", @@ -671,6 +672,7 @@ "chv": "cv", "cld": "syr", "cmn": "zh", + "cnr": "sr_ME", "cor": "kw", "cos": "co", "cre": "cr", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mg.json b/src/Symfony/Component/Intl/Resources/data/languages/mg.json index 6daf3b92075de..af6f1f65cbd5c 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.37.1", + "Version": "2.1.39.11", "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 96cf298ce334a..5bd7db58709d3 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.37.5", + "Version": "2.1.39.11", "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 3559ee79677d4..eadd084be9348 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.36.86", + "Version": "2.1.39.11", "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 641144e8e3c7e..cd1240747d375 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "афар", "ab": "абхаз", @@ -89,6 +89,9 @@ "en_US": "америк-англи", "eo": "эсперанто", "es": "испани", + "es_419": "испани хэл (Латин Америк)", + "es_ES": "испани хэл (Европ)", + "es_MX": "испани хэл (Мексик)", "et": "эстони", "eu": "баск", "ewo": "эвондо", @@ -278,6 +281,8 @@ "prg": "прусс", "ps": "пашто", "pt": "португал", + "pt_BR": "португал хэл (Бразил)", + "pt_PT": "португал хэл (Европ)", "qu": "кечуа", "quc": "киче", "rap": "рапануи", @@ -363,7 +368,7 @@ "ug": "уйгур", "uk": "украин", "umb": "умбунду", - "und": "тодорхойгүй хэл", + "und": "Үл мэдэгдэх хэл", "ur": "урду", "uz": "узбек", "vai": "вай", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index 5e9e66fe04b70..6aa963baa1c36 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.31.33", + "Version": "2.1.38.39", "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 dd7e37bb4408a..10e0209306859 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.37.22", + "Version": "2.1.39.11", "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 d7fed31ad10f2..5449f09742e34 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Afar", "ab": "Abkhazia", @@ -23,6 +23,7 @@ "arn": "Mapuche", "arp": "Arapaho", "arq": "Arab Algeria", + "ars": "Arab Najdi", "ary": "Arab Maghribi", "arz": "Arab Mesir", "as": "Assam", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mt.json b/src/Symfony/Component/Intl/Resources/data/languages/mt.json index aae4556f7761f..44562555857c3 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "Afar", "ab": "Abkażjan", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/my.json b/src/Symfony/Component/Intl/Resources/data/languages/my.json index 4cb2cf2b79789..77101f6ca21c1 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.37.5", + "Version": "2.1.39.11", "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 47acd094ddfdf..88940b15d6468 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "algerisk arabisk", + "ars": "najdi-arabisk", "arw": "arawak", "ary": "marokkansk-arabisk", "arz": "egyptisk arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nd.json b/src/Symfony/Component/Intl/Resources/data/languages/nd.json index bd952b48c1dc6..5872238f3fa01 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.31.33", + "Version": "2.1.39.11", "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 32687942f81f6..f1fed6bf6a008 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.36.86", + "Version": "2.1.39.11", "Names": { "aa": "अफार", "ab": "अब्खाजियाली", @@ -116,6 +116,7 @@ "dar": "दार्ग्वा", "dav": "ताइता", "de": "जर्मन", + "de_AT": "अस्ट्रिएन जर्मन", "de_CH": "स्वीस हाई जर्मन", "del": "देलावर", "dgr": "दोग्रिब", @@ -166,6 +167,7 @@ "fon": "फोन", "fr": "फ्रान्सेली", "fr_CA": "क्यानेडाली फ्रान्सेली", + "fr_CH": "स्विस फ्रेन्च", "frc": "काहुन फ्रान्सेली", "frm": "मध्य फ्रान्सेली", "fro": "पुरातन फ्रान्सेली", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 6b66909f70a4f..ec05edacb6b1f 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.37.1", + "Version": "2.1.39.20", "Names": { "aa": "Afar", "ab": "Abchazisch", @@ -29,6 +29,7 @@ "aro": "Araona", "arp": "Arapaho", "arq": "Algerijns Arabisch", + "ars": "Nadjdi-Arabisch", "arw": "Arawak", "ary": "Marokkaans Arabisch", "arz": "Egyptisch Arabisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nn.json b/src/Symfony/Component/Intl/Resources/data/languages/nn.json index ff990384840bf..1935b6ba292a4 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.37.5", + "Version": "2.1.39.11", "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 47acd094ddfdf..88940b15d6468 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abkhasisk", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "algerisk arabisk", + "ars": "najdi-arabisk", "arw": "arawak", "ary": "marokkansk-arabisk", "arz": "egyptisk arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index c9069400536d5..c7202001f93cb 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.37.1", + "Version": "2.1.38.69", "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 72f90d6ff9a22..010dc7ece7310 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.37.57", + "Version": "2.1.39.11", "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 9f562dc2bb8ee..c3423ff5a3abd 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.37.1", + "Version": "2.1.38.69", "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 d96628ac1756e..026c7f1018f9e 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.37.22", + "Version": "2.1.39.11", "Names": { "aa": "ਅਫ਼ਾਰ", "ab": "ਅਬਖਾਜ਼ੀਅਨ", @@ -71,6 +71,7 @@ "dav": "ਟੇਟਾ", "de": "ਜਰਮਨ", "de_AT": "ਜਰਮਨ (ਆਸਟਰੀਆਈ)", + "de_CH": "ਹਾਈ ਜਰਮਨ (ਸਵਿਟਜ਼ਰਲੈਂਡ)", "dgr": "ਡੋਗਰਿੱਬ", "dje": "ਜ਼ਾਰਮਾ", "dsb": "ਲੋਅਰ ਸੋਰਬੀਅਨ", 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 efab85959a94f..7a2bb3c86b7df 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.37.1", + "Version": "2.1.38.69", "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 ebc1235dc6a8c..88750fb79628d 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.37.5", + "Version": "2.1.39.15", "Names": { "aa": "afar", "ab": "abchaski", @@ -30,6 +30,7 @@ "aro": "araona", "arp": "arapaho", "arq": "algierski arabski", + "ars": "arabski nadżdyjski", "arw": "arawak", "ary": "marokański arabski", "arz": "egipski arabski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps.json b/src/Symfony/Component/Intl/Resources/data/languages/ps.json index 64eba859b8353..ae2473da778f1 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.36.86", + "Version": "2.1.39.11", "Names": { "aa": "افري", "ab": "ابخازي", @@ -85,6 +85,8 @@ "el": "یوناني", "en": "انګریزي", "en_AU": "انګریزي (AU)", + "en_CA": "کاناډايي انګلیسي", + "en_GB": "برتانوی انګلیسي", "en_US": "انګریزي (US)", "eo": "اسپرانتو", "es": "هسپانوي", @@ -280,9 +282,10 @@ "quc": "کچی", "rap": "رپانوئي", "rar": "راروټانګان", - "rm": "رومانش", + "rm": "رومانیش", "rn": "رونډی", - "ro": "روماني", + "ro": "رومانیایی", + "ro_MD": "مولداویایی", "rof": "رومبو", "root": "روټ", "ru": "روسي", @@ -327,6 +330,7 @@ "suk": "سکوما", "sv": "سویډنی", "sw": "سواهېلي", + "sw_CD": "کانګو سواهلی", "swb": "کومورياني", "syr": "سوریاني", "ta": "تامیل", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index fe7a2e5ae57e2..349a5036b298e 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.37.1", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abcázio", @@ -25,6 +25,7 @@ "arc": "aramaico", "arn": "mapudungun", "arp": "arapaho", + "ars": "árabe - Négede", "arw": "arauaqui", "as": "assamês", "asa": "asu", 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 cb766ea2e3ce0..73437eb95f0cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json @@ -1,10 +1,11 @@ { - "Version": "2.1.37.6", + "Version": "2.1.39.11", "Names": { "af": "africanês", "ang": "inglês antigo", "ar_001": "árabe moderno padrão", "arn": "mapuche", + "ars": "árabe do Négede", "av": "avaric", "bax": "bamun", "bbj": "ghomala", @@ -28,6 +29,7 @@ "en_US": "inglês americano", "es_419": "espanhol latino-americano", "es_ES": "espanhol europeu", + "es_MX": "espanhol mexicano", "et": "estónio", "fon": "fon", "fr_CA": "francês canadiano", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index c6225597ec4ce..90f24a05626a2 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.37.5", + "Version": "2.1.38.72", "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 1feb9089f8b8c..8fb029c0add76 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.37.1", + "Version": "2.1.39.11", "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 a281e428c54da..1f71565566a13 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.37.1", + "Version": "2.1.39.11", "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 cfd1461f72b14..1f5d01dfe285d 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abhază", @@ -25,6 +25,7 @@ "arc": "aramaică", "arn": "mapuche", "arp": "arapaho", + "ars": "arabă najdi", "arw": "arawak", "as": "asameză", "asa": "asu", 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 5e9e66fe04b70..6aa963baa1c36 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.31.33", + "Version": "2.1.38.39", "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 648ef50e00a68..8925868d0d0bf 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.37.58", + "Version": "2.1.39.20", "Names": { "aa": "афарский", "ab": "абхазский", @@ -25,6 +25,7 @@ "arc": "арамейский", "arn": "мапуче", "arp": "арапахо", + "ars": "арабская — недждийская", "arw": "аравакский", "as": "ассамский", "asa": "асу", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rw.json b/src/Symfony/Component/Intl/Resources/data/languages/rw.json index 88ab19f6f0043..065a55fc26509 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.37.5", + "Version": "2.1.38.72", "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 090ae199ac949..1d1590404316c 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.37.1", + "Version": "2.1.38.69", "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 50533898eb1da..366d9168ca943 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.37.6", + "Version": "2.1.38.73", "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 d603809eb8848..4439247dff434 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.37.1", + "Version": "2.1.39.11", "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 59b5c83140e3a..550fd7a28071b 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.37.8", + "Version": "2.1.39.37", "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 dc1188966c9e2..cad5c25b4ad11 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.37.8", + "Version": "2.1.38.69", "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 b3630d62da13e..55452edfe4e8c 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.37.5", + "Version": "2.1.39.11", "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 0375864be5016..eac02f59857f7 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.37.5", + "Version": "2.1.39.11", "Names": { "aa": "afarčina", "ab": "abcházčina", @@ -25,6 +25,7 @@ "arc": "aramejčina", "arn": "mapudungun", "arp": "arapažština", + "ars": "arabčina – nadžd", "arw": "arawačtina", "as": "ásamčina", "asa": "asu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index c028f89322e79..4a4c320aa806d 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "afarščina", "ab": "abhaščina", @@ -374,6 +374,7 @@ "rm": "retoromanščina", "rn": "rundščina", "ro": "romunščina", + "ro_MD": "moldavščina", "rof": "rombo", "rom": "romščina", "root": "rootščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sn.json b/src/Symfony/Component/Intl/Resources/data/languages/sn.json index 87da37ff58add..b78354116a13c 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.37.1", + "Version": "2.1.39.11", "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 807d4c10b2aaa..c889c4c6ff94a 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.37.1", + "Version": "2.1.38.69", "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 6188c93ccd182..49cdabfe7e184 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.37.1", + "Version": "2.1.39.11", "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 2264ce6258987..f71e9eb42f3b6 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.37.5", + "Version": "2.1.39.11", "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 3c5ee19df0c23..31c4dea7b9b13 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.37.6", + "Version": "2.1.38.69", "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 3c5ee19df0c23..31c4dea7b9b13 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.37.6", + "Version": "2.1.38.69", "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 35c833ba36e97..bab6ade2f9786 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.37.6", + "Version": "2.1.38.69", "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 7dc64f373060a..1d41f7a84be11 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.37.6", + "Version": "2.1.38.69", "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 59b5c83140e3a..550fd7a28071b 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.37.8", + "Version": "2.1.39.37", "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 dc1188966c9e2..cad5c25b4ad11 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.37.8", + "Version": "2.1.38.69", "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 a6aa67c063870..04f986c62c587 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.37.8", + "Version": "2.1.38.69", "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 5224aaba971e9..c463e8e0ef154 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.37.8", + "Version": "2.1.38.69", "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 a6aa67c063870..04f986c62c587 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.37.8", + "Version": "2.1.38.69", "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 7dc64f373060a..1d41f7a84be11 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.37.6", + "Version": "2.1.38.69", "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 8ead498a25768..a70f7dd9e63ae 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "afar", "ab": "abchaziska", @@ -30,6 +30,7 @@ "aro": "araoniska", "arp": "arapaho", "arq": "algerisk arabiska", + "ars": "najdiarabiska", "arw": "arawakiska", "ary": "marockansk arabiska", "arz": "egyptisk arabiska", 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 67aa9a3dfd839..a51c496073545 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.31.33", + "Version": "2.1.38.39", "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 418561cbc684e..5ca303c5d7f58 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.37.34", + "Version": "2.1.39.11", "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 bdaeb03d0c3b0..a3ebabc74f467 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.37.6", + "Version": "2.1.39.11", "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 793e2ca9f27f9..f0be1bb3e1edb 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.37.6", + "Version": "2.1.38.39", "Names": { "ain": "Ainu", "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 2b422e40d6244..2fa91ee1061c0 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.36.86", + "Version": "2.1.39.11", "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 a70569a02968c..deb01580bd80e 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.36.86", + "Version": "2.1.39.11", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tg.json b/src/Symfony/Component/Intl/Resources/data/languages/tg.json index 924b7eb7fbe00..d58078d30d2ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "af": "африкаанс", "am": "амҳарӣ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 2d423918575bb..b6975b84724be 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.37.56", + "Version": "2.1.39.20", "Names": { "aa": "อะฟาร์", "ab": "อับฮาเซีย", @@ -30,6 +30,7 @@ "aro": "อาเรานา", "arp": "อาราปาโฮ", "arq": "อาหรับแอลจีเรีย", + "ars": "อาหรับนัจญ์ดี", "arw": "อาราวัก", "ary": "อาหรับโมร็อกโก", "arz": "อาหรับพื้นเมืองอียิปต์", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ti.json b/src/Symfony/Component/Intl/Resources/data/languages/ti.json index 7ac049c1f271d..a615b5d5ac03c 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.37.5", + "Version": "2.1.38.72", "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 10f477b77a162..b42541207d16f 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.37.1", + "Version": "2.1.39.11", "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 0521ad106f179..10eb3a06c10ca 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.37.5", + "Version": "2.1.38.39", "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 bdd84ee42ee47..8962eac5947d5 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Afar", "ab": "Abhazca", @@ -30,6 +30,7 @@ "aro": "Araona", "arp": "Arapaho Dili", "arq": "Cezayir Arapçası", + "ars": "Necd Arapçası", "arw": "Arawak Dili", "ary": "Fas Arapçası", "arz": "Mısır Arapçası", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tt.json b/src/Symfony/Component/Intl/Resources/data/languages/tt.json index a0c613d4926e7..db0b35ff6b0f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.5", + "Version": "2.1.38.72", "Names": { "af": "африкаанс", "am": "амхар", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ug.json b/src/Symfony/Component/Intl/Resources/data/languages/ug.json index 830d0f5cae2bf..de0f5c582b976 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.37.5", + "Version": "2.1.39.11", "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 4924157395b06..57a44efaa7efe 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.37.12", + "Version": "2.1.39.20", "Names": { "aa": "афарська", "ab": "абхазька", @@ -28,6 +28,7 @@ "aro": "араона", "arp": "арапахо", "arq": "алжирська арабська", + "ars": "надждійська арабська", "arw": "аравакська", "as": "ассамська", "asa": "асу", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index e28f6175c9c33..b41f6b510f4ce 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.37.69", + "Version": "2.1.39.11", "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 34639f2fb3346..dd82472642e30 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.37.6", + "Version": "2.1.38.39", "Names": { "ar_001": "جدید معیاری عربی", "awa": "اودھی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index 0371634c158b2..e7024c28bde3a 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "afar", "ab": "abxaz", @@ -231,7 +231,7 @@ "min": "minangkabau", "mk": "makedon", "ml": "malayalam", - "mn": "mo‘g‘ul", + "mn": "mongol", "mni": "manipur", "moh": "mohauk", "mos": "mossi", @@ -258,7 +258,7 @@ "ng": "ndonga", "nia": "nias", "niu": "niue", - "nl": "golland", + "nl": "niderland", "nl_BE": "flamand", "nmg": "kvasio", "nn": "norveg-nyunorsk", 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 1ca87085df092..aafa74ab340c6 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.36.86", + "Version": "2.1.38.69", "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 1596e76fbb0f9..42e9d729b5565 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.37.1", + "Version": "2.1.38.69", "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 79deed5222ddb..4523ebba98b5a 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", @@ -29,6 +29,7 @@ "aro": "Tiếng Araona", "arp": "Tiếng Arapaho", "arq": "Tiếng Ả Rập Algeria", + "ars": "Tiếng Ả Rập Najdi", "arw": "Tiếng Arawak", "arz": "Tiếng Ả Rập Ai Cập", "as": "Tiếng Assam", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/wo.json b/src/Symfony/Component/Intl/Resources/data/languages/wo.json index f0f2f4ddf6b71..c55553c05854b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "af": "Afrikaans", "am": "Amharik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yi.json b/src/Symfony/Component/Intl/Resources/data/languages/yi.json index 7436ac7beb089..52e1f80cf7ecc 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.37.1", + "Version": "2.1.38.69", "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 6ba613fb5c19a..16fe19fc97dcc 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.37.1", + "Version": "2.1.39.11", "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 a21e3da9a574b..eed9b58da46ef 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.37.9", + "Version": "2.1.39.11", "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 90578e411002f..a4fdf9b84dd84 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.37.42", + "Version": "2.1.39.20", "Names": { "aa": "阿法尔语", "ab": "阿布哈西亚语", @@ -25,6 +25,7 @@ "arc": "阿拉米语", "arn": "马普切语", "arp": "阿拉帕霍语", + "ars": "纳吉迪阿拉伯文", "arw": "阿拉瓦克语", "as": "阿萨姆语", "asa": "帕雷语", @@ -111,7 +112,7 @@ "dsb": "下索布语", "dua": "都阿拉语", "dum": "中古荷兰语", - "dv": "迪维西语", + "dv": "迪维希语", "dyo": "朱拉语", "dyu": "迪尤拉语", "dz": "宗卡语", @@ -284,7 +285,7 @@ "lua": "卢巴-卢拉语", "lui": "卢伊塞诺语", "lun": "隆达语", - "luo": "卢欧语", + "luo": "卢奥语", "lus": "米佐语", "luy": "卢雅语", "lv": "拉脱维亚语", 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 9ec8ebf11c1fa..a1f30f3e46687 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.37.6", + "Version": "2.1.39.11", "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 787e6f04ca7fb..b10c40624a6af 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.37.5", + "Version": "2.1.39.20", "Names": { "aa": "阿法文", "ab": "阿布哈茲文", @@ -30,6 +30,7 @@ "aro": "阿拉奧納文", "arp": "阿拉帕霍文", "arq": "阿爾及利亞阿拉伯文", + "ars": "納吉迪阿拉伯文", "arw": "阿拉瓦克文", "ary": "摩洛哥阿拉伯文", "arz": "埃及阿拉伯文", 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 9ec8ebf11c1fa..a1f30f3e46687 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.37.6", + "Version": "2.1.39.11", "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 5374a4feee860..a10d135133362 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.37.1", + "Version": "2.1.39.11", "Names": { "aa": "isi-Afar", "ab": "isi-Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/as.json b/src/Symfony/Component/Intl/Resources/data/locales/as.json index 47798d123de92..9d8fd3a208c43 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/as.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/as.json @@ -1,6 +1,570 @@ { "Names": { + "af": "আফ্ৰিকানছ্", + "af_NA": "আফ্ৰিকানছ্ (নামিবিয়া)", + "af_ZA": "আফ্ৰিকানছ্ (দক্ষিণ আফ্রিকা)", + "ak": "আকান", + "ak_GH": "আকান (ঘানা)", + "am": "আমহাৰিক", + "am_ET": "আমহাৰিক (ইথিঅ’পিয়া)", + "ar": "আৰবী", + "ar_AE": "আৰবী (সংযুক্ত আৰব আমিৰাত)", + "ar_BH": "আৰবী (বাহৰেইন)", + "ar_DJ": "আৰবী (জিবুটি)", + "ar_DZ": "আৰবী (আলজেৰিয়া)", + "ar_EG": "আৰবী (ইজিপ্ত)", + "ar_EH": "আৰবী (পশ্চিমীয় ছাহাৰা)", + "ar_ER": "আৰবী (এৰিত্ৰিয়া)", + "ar_IL": "আৰবী (ইজৰাইল)", + "ar_IQ": "আৰবী (ইৰাক)", + "ar_JO": "আৰবী (জৰ্ডান)", + "ar_KM": "আৰবী (কোমোৰোজ)", + "ar_KW": "আৰবী (কুৱেইট)", + "ar_LB": "আৰবী (লেবানন)", + "ar_LY": "আৰবী (লিবিয়া)", + "ar_MA": "আৰবী (মৰক্কো)", + "ar_MR": "আৰবী (মাউৰিটানিয়া)", + "ar_OM": "আৰবী (ওমান)", + "ar_PS": "আৰবী (ফিলিস্তিন অঞ্চল)", + "ar_QA": "আৰবী (কাটাৰ)", + "ar_SA": "আৰবী (চৌডি আৰবিয়া)", + "ar_SD": "আৰবী (চুডান)", + "ar_SO": "আৰবী (চোমালিয়া)", + "ar_SS": "আৰবী (দক্ষিণ চুডান)", + "ar_SY": "আৰবী (চিৰিয়া)", + "ar_TD": "আৰবী (চাড)", + "ar_TN": "আৰবী (টুনিচিয়া)", + "ar_YE": "আৰবী (য়েমেন)", "as": "অসমীয়া", - "as_IN": "অসমীয়া (ভারত)" + "as_IN": "অসমীয়া (ভাৰত)", + "az": "আজেৰবাইজানী", + "az_AZ": "আজেৰবাইজানী (আজাৰবেইজান)", + "az_Cyrl": "আজেৰবাইজানী (চিৰিলিক)", + "az_Cyrl_AZ": "আজেৰবাইজানী (চিৰিলিক, আজাৰবেইজান)", + "az_Latn": "আজেৰবাইজানী (লেটিন)", + "az_Latn_AZ": "আজেৰবাইজানী (লেটিন, আজাৰবেইজান)", + "be": "বেলাৰুছীয়", + "be_BY": "বেলাৰুছীয় (বেলাৰুছ)", + "bg": "বুলগেৰীয়", + "bg_BG": "বুলগেৰীয় (বুলগেৰিয়া)", + "bm": "বামবাৰা", + "bm_ML": "বামবাৰা (মালি)", + "bn": "বাংলা", + "bn_BD": "বাংলা (বাংলাদেশ)", + "bn_IN": "বাংলা (ভাৰত)", + "bo": "তিব্বতী", + "bo_CN": "তিব্বতী (চীন)", + "bo_IN": "তিব্বতী (ভাৰত)", + "br": "ব্ৰেটন", + "br_FR": "ব্ৰেটন (ফ্ৰান্স)", + "bs": "বছনীয়", + "bs_BA": "বছনীয় (ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "bs_Cyrl": "বছনীয় (চিৰিলিক)", + "bs_Cyrl_BA": "বছনীয় (চিৰিলিক, ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "bs_Latn": "বছনীয় (লেটিন)", + "bs_Latn_BA": "বছনীয় (লেটিন, ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "ca": "কাতালান", + "ca_AD": "কাতালান (আন্দোৰা)", + "ca_ES": "কাতালান (স্পেইন)", + "ca_FR": "কাতালান (ফ্ৰান্স)", + "ca_IT": "কাতালান (ইটালি)", + "ce": "চেচেন", + "ce_RU": "চেচেন (ৰাছিয়া)", + "cs": "চেক", + "cs_CZ": "চেক (চিজেচিয়া)", + "cy": "ৱেলচ", + "cy_GB": "ৱেলচ (সংযুক্ত ৰাজ্য)", + "da": "ডেনিচ", + "da_DK": "ডেনিচ (ডেনমাৰ্ক)", + "da_GL": "ডেনিচ (গ্ৰীণলেণ্ড)", + "de": "জাৰ্মান", + "de_AT": "জাৰ্মান (অষ্ট্ৰিয়া)", + "de_BE": "জাৰ্মান (বেলজিয়াম)", + "de_CH": "জাৰ্মান (চুইজাৰলেণ্ড)", + "de_DE": "জাৰ্মান (জাৰ্মানী)", + "de_IT": "জাৰ্মান (ইটালি)", + "de_LI": "জাৰ্মান (লিচটেনষ্টেইন)", + "de_LU": "জাৰ্মান (লাক্সেমবাৰ্গ)", + "dz": "জোংখা", + "dz_BT": "জোংখা (ভুটান)", + "ee": "ইৱে", + "ee_GH": "ইৱে (ঘানা)", + "ee_TG": "ইৱে (টোগো)", + "el": "গ্ৰীক", + "el_CY": "গ্ৰীক (চাইপ্ৰাছ)", + "el_GR": "গ্ৰীক (গ্ৰীচ)", + "en": "ইংৰাজী", + "en_AG": "ইংৰাজী (এণ্টিগুৱা আৰু বাৰ্বুডা)", + "en_AI": "ইংৰাজী (এনগুইলা)", + "en_AS": "ইংৰাজী (আমেৰিকান চামোৱা)", + "en_AT": "ইংৰাজী (অষ্ট্ৰিয়া)", + "en_AU": "ইংৰাজী (অষ্ট্ৰেলিয়া)", + "en_BB": "ইংৰাজী (বাৰ্বাডোচ)", + "en_BE": "ইংৰাজী (বেলজিয়াম)", + "en_BI": "ইংৰাজী (বুৰুণ্ডি)", + "en_BM": "ইংৰাজী (বাৰ্মুডা)", + "en_BS": "ইংৰাজী (বাহামাছ)", + "en_BW": "ইংৰাজী (ব’টচোৱানা)", + "en_BZ": "ইংৰাজী (বেলিজ)", + "en_CA": "ইংৰাজী (কানাডা)", + "en_CC": "ইংৰাজী (কোকোচ (কীলিং) দ্বীপপুঞ্জ)", + "en_CH": "ইংৰাজী (চুইজাৰলেণ্ড)", + "en_CK": "ইংৰাজী (কুক দ্বীপপুঞ্জ)", + "en_CM": "ইংৰাজী (কেমেৰুণ)", + "en_CX": "ইংৰাজী (খ্ৰীষ্টমাছ দ্বীপ)", + "en_CY": "ইংৰাজী (চাইপ্ৰাছ)", + "en_DE": "ইংৰাজী (জাৰ্মানী)", + "en_DG": "ইংৰাজী (ডিয়েগো গাৰ্চিয়া)", + "en_DK": "ইংৰাজী (ডেনমাৰ্ক)", + "en_DM": "ইংৰাজী (ড’মিনিকা)", + "en_ER": "ইংৰাজী (এৰিত্ৰিয়া)", + "en_FI": "ইংৰাজী (ফিনলেণ্ড)", + "en_FJ": "ইংৰাজী (ফিজি)", + "en_FK": "ইংৰাজী (ফকলেণ্ড দ্বীপপুঞ্জ)", + "en_FM": "ইংৰাজী (মাইক্ৰোনেচিয়া)", + "en_GB": "ইংৰাজী (সংযুক্ত ৰাজ্য)", + "en_GD": "ইংৰাজী (গ্ৰেনাডা)", + "en_GG": "ইংৰাজী (গোৰেনচি)", + "en_GH": "ইংৰাজী (ঘানা)", + "en_GI": "ইংৰাজী (জিব্ৰাল্টৰ)", + "en_GM": "ইংৰাজী (গাম্বিয়া)", + "en_GU": "ইংৰাজী (গুৱাম)", + "en_GY": "ইংৰাজী (গায়ানা)", + "en_HK": "ইংৰাজী (হং কং এছ. এ. আৰ. চীন)", + "en_IE": "ইংৰাজী (আয়াৰলেণ্ড)", + "en_IL": "ইংৰাজী (ইজৰাইল)", + "en_IM": "ইংৰাজী (আইল অফ মেন)", + "en_IN": "ইংৰাজী (ভাৰত)", + "en_IO": "ইংৰাজী (ব্ৰিটিছ ইণ্ডিয়ান অ’চন টেৰিট’ৰি)", + "en_JE": "ইংৰাজী (জাৰ্চি)", + "en_JM": "ইংৰাজী (জামাইকা)", + "en_KE": "ইংৰাজী (কেনিয়া)", + "en_KI": "ইংৰাজী (কিৰিবাটি)", + "en_KN": "ইংৰাজী (ছেইণ্ট কিটছ আৰু নেভিছ)", + "en_KY": "ইংৰাজী (কেইমেন দ্বীপপুঞ্জ)", + "en_LC": "ইংৰাজী (ছেইণ্ট লুচিয়া)", + "en_LR": "ইংৰাজী (লিবেৰিয়া)", + "en_LS": "ইংৰাজী (লেছ’থ’)", + "en_MG": "ইংৰাজী (মাদাগাস্কাৰ)", + "en_MH": "ইংৰাজী (মাৰ্শ্বাল দ্বীপপুঞ্জ)", + "en_MO": "ইংৰাজী (মাকাউ এছ. এ. আৰ. চীন)", + "en_MP": "ইংৰাজী (উত্তৰ মাৰিয়ানা দ্বীপপুঞ্জ)", + "en_MS": "ইংৰাজী (ম’ণ্টছেৰাট)", + "en_MT": "ইংৰাজী (মাল্টা)", + "en_MU": "ইংৰাজী (মৰিছাছ)", + "en_MW": "ইংৰাজী (মালাৱি)", + "en_MY": "ইংৰাজী (মালয়েচিয়া)", + "en_NA": "ইংৰাজী (নামিবিয়া)", + "en_NF": "ইংৰাজী (ন’ৰফ’ক দ্বীপ)", + "en_NG": "ইংৰাজী (নাইজেৰিয়া)", + "en_NL": "ইংৰাজী (নেডাৰলেণ্ড)", + "en_NR": "ইংৰাজী (নাউৰু)", + "en_NU": "ইংৰাজী (নিউ)", + "en_NZ": "ইংৰাজী (নিউজিলেণ্ড)", + "en_PG": "ইংৰাজী (পাপুৱা নিউ গিনি)", + "en_PH": "ইংৰাজী (ফিলিপাইনছ)", + "en_PK": "ইংৰাজী (পাকিস্তান)", + "en_PN": "ইংৰাজী (পিটকেইৰ্ণ দ্বীপপুঞ্জ)", + "en_PR": "ইংৰাজী (পুৱেৰ্টো ৰিকো)", + "en_PW": "ইংৰাজী (পালাউ)", + "en_RW": "ইংৰাজী (ৰোৱাণ্ডা)", + "en_SB": "ইংৰাজী (চোলোমোন দ্বীপপুঞ্জ)", + "en_SC": "ইংৰাজী (ছিচিলিছ)", + "en_SD": "ইংৰাজী (চুডান)", + "en_SE": "ইংৰাজী (চুইডেন)", + "en_SG": "ইংৰাজী (ছিংগাপুৰ)", + "en_SH": "ইংৰাজী (ছেইণ্ট হেলেনা)", + "en_SI": "ইংৰাজী (শ্লোভেনিয়া)", + "en_SL": "ইংৰাজী (চিয়েৰা লিঅ’ন)", + "en_SS": "ইংৰাজী (দক্ষিণ চুডান)", + "en_SX": "ইংৰাজী (চিণ্ট মাৰ্টেন)", + "en_SZ": "ইংৰাজী (স্বাজিলেণ্ড)", + "en_TC": "ইংৰাজী (টাৰ্কছ অৰু কেইক’ছ দ্বীপপুঞ্জ)", + "en_TK": "ইংৰাজী (টোকেলাউ)", + "en_TO": "ইংৰাজী (টংগা)", + "en_TT": "ইংৰাজী (ট্ৰিনিডাড আৰু টোবাগো)", + "en_TV": "ইংৰাজী (টুভালু)", + "en_TZ": "ইংৰাজী (তাঞ্জানিয়া)", + "en_UG": "ইংৰাজী (উগাণ্ডা)", + "en_UM": "ইংৰাজী (ইউ. এছ. আউটলায়িং দ্বীপপুঞ্জ)", + "en_US": "ইংৰাজী (মাৰ্কিন যুক্তৰাষ্ট্ৰ)", + "en_VC": "ইংৰাজী (ছেইণ্ট ভিনচেণ্ট আৰু গ্ৰীণাডাইনছ)", + "en_VG": "ইংৰাজী (ব্ৰিটিছ ভাৰ্জিন দ্বীপপুঞ্জ)", + "en_VI": "ইংৰাজী (ইউ. এছ. ভাৰ্জিন দ্বীপপুঞ্জ)", + "en_VU": "ইংৰাজী (ভানাটু)", + "en_WS": "ইংৰাজী (চামোৱা)", + "en_ZA": "ইংৰাজী (দক্ষিণ আফ্রিকা)", + "en_ZM": "ইংৰাজী (জাম্বিয়া)", + "en_ZW": "ইংৰাজী (জিম্বাবৱে)", + "eo": "এস্পেৰান্তো", + "es": "স্পেনিচ", + "es_AR": "স্পেনিচ (আৰ্জেণ্টিনা)", + "es_BO": "স্পেনিচ (বলিভিয়া)", + "es_BR": "স্পেনিচ (ব্ৰাজিল)", + "es_BZ": "স্পেনিচ (বেলিজ)", + "es_CL": "স্পেনিচ (চিলি)", + "es_CO": "স্পেনিচ (কলম্বিয়া)", + "es_CR": "স্পেনিচ (কোষ্টা ৰিকা)", + "es_CU": "স্পেনিচ (কিউবা)", + "es_DO": "স্পেনিচ (ড’মিনিকান ৰিপাব্লিক)", + "es_EA": "স্পেনিচ (চেউটা আৰু মেলিলা)", + "es_EC": "স্পেনিচ (ইকুৱেডৰ)", + "es_ES": "স্পেনিচ (স্পেইন)", + "es_GQ": "স্পেনিচ (ইকুৱেটৰিয়েল গিনি)", + "es_GT": "স্পেনিচ (গুৱাটেমালা)", + "es_HN": "স্পেনিচ (হন্দুৰাছ)", + "es_IC": "স্পেনিচ (কেনেৰী দ্বীপপুঞ্জ)", + "es_MX": "স্পেনিচ (মেক্সিকো)", + "es_NI": "স্পেনিচ (নিকাৰাগুৱা)", + "es_PA": "স্পেনিচ (পানামা)", + "es_PE": "স্পেনিচ (পেৰু)", + "es_PH": "স্পেনিচ (ফিলিপাইনছ)", + "es_PR": "স্পেনিচ (পুৱেৰ্টো ৰিকো)", + "es_PY": "স্পেনিচ (পাৰাগুৱে)", + "es_SV": "স্পেনিচ (এল ছেলভেড’ৰ)", + "es_US": "স্পেনিচ (মাৰ্কিন যুক্তৰাষ্ট্ৰ)", + "es_UY": "স্পেনিচ (উৰুগুৱে)", + "es_VE": "স্পেনিচ (ভেনিজুৱেলা)", + "et": "এষ্টোনিয়", + "et_EE": "এষ্টোনিয় (ইষ্টোনিয়া)", + "eu": "বাস্ক", + "eu_ES": "বাস্ক (স্পেইন)", + "fa": "ফাৰ্ছী", + "fa_AF": "ফাৰ্ছী (আফগানিস্তান)", + "fa_IR": "ফাৰ্ছী (ইৰান)", + "ff": "ফুলাহ", + "ff_CM": "ফুলাহ (কেমেৰুণ)", + "ff_GN": "ফুলাহ (গিনি)", + "ff_MR": "ফুলাহ (মাউৰিটানিয়া)", + "ff_SN": "ফুলাহ (চেনেগাল)", + "fi": "ফিনিচ", + "fi_FI": "ফিনিচ (ফিনলেণ্ড)", + "fo": "ফাৰোইজ", + "fo_DK": "ফাৰোইজ (ডেনমাৰ্ক)", + "fo_FO": "ফাৰোইজ (ফাৰো দ্বীপপুঞ্জ)", + "fr": "ফ্ৰেন্স", + "fr_BE": "ফ্ৰেন্স (বেলজিয়াম)", + "fr_BF": "ফ্ৰেন্স (বুৰকিনা ফাচো)", + "fr_BI": "ফ্ৰেন্স (বুৰুণ্ডি)", + "fr_BJ": "ফ্ৰেন্স (বেনিন)", + "fr_BL": "ফ্ৰেন্স (ছেইণ্ট বাৰ্থলেমে)", + "fr_CA": "ফ্ৰেন্স (কানাডা)", + "fr_CD": "ফ্ৰেন্স (কঙ্গো - কিনচাছা)", + "fr_CF": "ফ্ৰেন্স (মধ্য আফ্রিকান প্রজাতন্ত্র)", + "fr_CG": "ফ্ৰেন্স (কঙ্গো - ব্রাজাভিল)", + "fr_CH": "ফ্ৰেন্স (চুইজাৰলেণ্ড)", + "fr_CI": "ফ্ৰেন্স (কোটে ডি আইভৰ)", + "fr_CM": "ফ্ৰেন্স (কেমেৰুণ)", + "fr_DJ": "ফ্ৰেন্স (জিবুটি)", + "fr_DZ": "ফ্ৰেন্স (আলজেৰিয়া)", + "fr_FR": "ফ্ৰেন্স (ফ্ৰান্স)", + "fr_GA": "ফ্ৰেন্স (গেবন)", + "fr_GF": "ফ্ৰেন্স (ফ্ৰান্স গয়ানা)", + "fr_GN": "ফ্ৰেন্স (গিনি)", + "fr_GP": "ফ্ৰেন্স (গুৱাডেলুপ)", + "fr_GQ": "ফ্ৰেন্স (ইকুৱেটৰিয়েল গিনি)", + "fr_HT": "ফ্ৰেন্স (হাইটি)", + "fr_KM": "ফ্ৰেন্স (কোমোৰোজ)", + "fr_LU": "ফ্ৰেন্স (লাক্সেমবাৰ্গ)", + "fr_MA": "ফ্ৰেন্স (মৰক্কো)", + "fr_MC": "ফ্ৰেন্স (মোনাকো)", + "fr_MF": "ফ্ৰেন্স (ছেইণ্ট মাৰ্টিন)", + "fr_MG": "ফ্ৰেন্স (মাদাগাস্কাৰ)", + "fr_ML": "ফ্ৰেন্স (মালি)", + "fr_MQ": "ফ্ৰেন্স (মাৰ্টিনিক)", + "fr_MR": "ফ্ৰেন্স (মাউৰিটানিয়া)", + "fr_MU": "ফ্ৰেন্স (মৰিছাছ)", + "fr_NC": "ফ্ৰেন্স (নিউ কেলিডোনিয়া)", + "fr_NE": "ফ্ৰেন্স (নাইজাৰ)", + "fr_PF": "ফ্ৰেন্স (ফ্ৰান্স পোলেনচিয়া)", + "fr_PM": "ফ্ৰেন্স (ছেইণ্ট পিয়েৰে আৰু মিকিউৱেলন)", + "fr_RE": "ফ্ৰেন্স (ৰিইউনিয়ন)", + "fr_RW": "ফ্ৰেন্স (ৰোৱাণ্ডা)", + "fr_SC": "ফ্ৰেন্স (ছিচিলিছ)", + "fr_SN": "ফ্ৰেন্স (চেনেগাল)", + "fr_SY": "ফ্ৰেন্স (চিৰিয়া)", + "fr_TD": "ফ্ৰেন্স (চাড)", + "fr_TG": "ফ্ৰেন্স (টোগো)", + "fr_TN": "ফ্ৰেন্স (টুনিচিয়া)", + "fr_VU": "ফ্ৰেন্স (ভানাটু)", + "fr_WF": "ফ্ৰেন্স (ৱালিছ আৰু ফুটুনা)", + "fr_YT": "ফ্ৰেন্স (মায়োট্টে)", + "fy": "ৱেষ্টাৰ্ণ ফ্ৰিছিয়ান", + "fy_NL": "ৱেষ্টাৰ্ণ ফ্ৰিছিয়ান (নেডাৰলেণ্ড)", + "ga": "আইৰিচ", + "ga_IE": "আইৰিচ (আয়াৰলেণ্ড)", + "gd": "স্কটিচ গেইলিক", + "gd_GB": "স্কটিচ গেইলিক (সংযুক্ত ৰাজ্য)", + "gl": "গেলিচিয়ান", + "gl_ES": "গেলিচিয়ান (স্পেইন)", + "gu": "গুজৰাটী", + "gu_IN": "গুজৰাটী (ভাৰত)", + "gv": "মেংক্স", + "gv_IM": "মেংক্স (আইল অফ মেন)", + "ha": "হাউছা", + "ha_GH": "হাউছা (ঘানা)", + "ha_NE": "হাউছা (নাইজাৰ)", + "ha_NG": "হাউছা (নাইজেৰিয়া)", + "he": "হিব্ৰু", + "he_IL": "হিব্ৰু (ইজৰাইল)", + "hi": "হিন্দী", + "hi_IN": "হিন্দী (ভাৰত)", + "hr": "ক্ৰোৱেচিয়ান", + "hr_BA": "ক্ৰোৱেচিয়ান (ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "hr_HR": "ক্ৰোৱেচিয়ান (ক্ৰোৱেছিয়া)", + "hu": "হাঙ্গেৰিয়ান", + "hu_HU": "হাঙ্গেৰিয়ান (হাংগেৰী)", + "hy": "আৰ্মেনীয়", + "hy_AM": "আৰ্মেনীয় (আৰ্মেনিয়া)", + "id": "ইণ্ডোনেচিয়", + "id_ID": "ইণ্ডোনেচিয় (ইণ্ডোনেচিয়া)", + "ig": "ইগ্বো", + "ig_NG": "ইগ্বো (নাইজেৰিয়া)", + "ii": "ছিচুৱান ই", + "ii_CN": "ছিচুৱান ই (চীন)", + "is": "আইচলেণ্ডিক", + "is_IS": "আইচলেণ্ডিক (আইচলেণ্ড)", + "it": "ইটালিয়ান", + "it_CH": "ইটালিয়ান (চুইজাৰলেণ্ড)", + "it_IT": "ইটালিয়ান (ইটালি)", + "it_SM": "ইটালিয়ান (চান মাৰিনো)", + "it_VA": "ইটালিয়ান (ভেটিকান চিটি)", + "ja": "জাপানী", + "ja_JP": "জাপানী (জাপান)", + "ka": "জৰ্জিয়ান", + "ka_GE": "জৰ্জিয়ান (জৰ্জিয়া)", + "ki": "কিকুয়ু", + "ki_KE": "কিকুয়ু (কেনিয়া)", + "kk": "কাজাখ", + "kk_KZ": "কাজাখ (কাজাখাস্তান)", + "kl": "কালালিছুট", + "kl_GL": "কালালিছুট (গ্ৰীণলেণ্ড)", + "km": "খমেৰ", + "km_KH": "খমেৰ (কম্বোডিয়া)", + "kn": "কানাড়া", + "kn_IN": "কানাড়া (ভাৰত)", + "ko": "কোৰিয়ান", + "ko_KP": "কোৰিয়ান (উত্তৰ কোৰিয়া)", + "ko_KR": "কোৰিয়ান (দক্ষিণ কোৰিয়া)", + "ks": "কাশ্মিৰী", + "ks_IN": "কাশ্মিৰী (ভাৰত)", + "kw": "কোৰ্নিচ", + "kw_GB": "কোৰ্নিচ (সংযুক্ত ৰাজ্য)", + "ky": "কিৰ্গিজ", + "ky_KG": "কিৰ্গিজ (কিৰ্গিজস্তান)", + "lb": "লাক্সেমবাৰ্গিচ", + "lb_LU": "লাক্সেমবাৰ্গিচ (লাক্সেমবাৰ্গ)", + "lg": "গান্দা", + "lg_UG": "গান্দা (উগাণ্ডা)", + "ln": "লিংগালা", + "ln_AO": "লিংগালা (এংগোলা)", + "ln_CD": "লিংগালা (কঙ্গো - কিনচাছা)", + "ln_CF": "লিংগালা (মধ্য আফ্রিকান প্রজাতন্ত্র)", + "ln_CG": "লিংগালা (কঙ্গো - ব্রাজাভিল)", + "lo": "লাও", + "lo_LA": "লাও (লাওচ)", + "lt": "লিথুৱানিয়ান", + "lt_LT": "লিথুৱানিয়ান (লিথুৱানিয়া)", + "lu": "লুবা-কাটাংগা", + "lu_CD": "লুবা-কাটাংগা (কঙ্গো - কিনচাছা)", + "lv": "লাটভিয়ান", + "lv_LV": "লাটভিয়ান (লাটভিয়া)", + "mg": "মালাগাছী", + "mg_MG": "মালাগাছী (মাদাগাস্কাৰ)", + "mk": "মেচিডোনীয়", + "mk_MK": "মেচিডোনীয় (মেচিডোনীয়া)", + "ml": "মালায়ালম", + "ml_IN": "মালায়ালম (ভাৰত)", + "mn": "মংগোলীয়", + "mn_MN": "মংগোলীয় (মঙ্গোলিয়া)", + "mr": "মাৰাঠী", + "mr_IN": "মাৰাঠী (ভাৰত)", + "ms": "মালয়", + "ms_BN": "মালয় (ব্ৰুনেই)", + "ms_MY": "মালয় (মালয়েচিয়া)", + "ms_SG": "মালয় (ছিংগাপুৰ)", + "mt": "মাল্টিজ", + "mt_MT": "মাল্টিজ (মাল্টা)", + "my": "বাৰ্মীজ", + "my_MM": "বাৰ্মীজ (ম্যানমাৰ (বাৰ্মা))", + "nb": "নৰৱেজিয়ান বোকমাল", + "nb_NO": "নৰৱেজিয়ান বোকমাল (নৰৱে)", + "nb_SJ": "নৰৱেজিয়ান বোকমাল (চাভালবাৰ্ড আৰু জন মেয়ন)", + "nd": "উত্তৰ নিবেবেলে", + "nd_ZW": "উত্তৰ নিবেবেলে (জিম্বাবৱে)", + "ne": "নেপালী", + "ne_IN": "নেপালী (ভাৰত)", + "ne_NP": "নেপালী (নেপাল)", + "nl": "ডাচ", + "nl_AW": "ডাচ (আৰুবা)", + "nl_BE": "ডাচ (বেলজিয়াম)", + "nl_BQ": "ডাচ (কেৰিবিয়ান নেদাৰলেণ্ডছ)", + "nl_CW": "ডাচ (কুৰাকাও)", + "nl_NL": "ডাচ (নেডাৰলেণ্ড)", + "nl_SR": "ডাচ (ছুৰিনাম)", + "nl_SX": "ডাচ (চিণ্ট মাৰ্টেন)", + "nn": "নৰৱেজিয়ান নায়নোৰ্স্ক", + "nn_NO": "নৰৱেজিয়ান নায়নোৰ্স্ক (নৰৱে)", + "om": "ওৰোমো", + "om_ET": "ওৰোমো (ইথিঅ’পিয়া)", + "om_KE": "ওৰোমো (কেনিয়া)", + "or": "ওড়িয়া", + "or_IN": "ওড়িয়া (ভাৰত)", + "os": "ওছেটিক", + "os_GE": "ওছেটিক (জৰ্জিয়া)", + "os_RU": "ওছেটিক (ৰাছিয়া)", + "pa": "পাঞ্জাবী", + "pa_Arab": "পাঞ্জাবী (আৰবী)", + "pa_Arab_PK": "পাঞ্জাবী (আৰবী, পাকিস্তান)", + "pa_Guru": "পাঞ্জাবী (গুৰুমুখী)", + "pa_Guru_IN": "পাঞ্জাবী (গুৰুমুখী, ভাৰত)", + "pa_IN": "পাঞ্জাবী (ভাৰত)", + "pa_PK": "পাঞ্জাবী (পাকিস্তান)", + "pl": "প’লিচ", + "pl_PL": "প’লিচ (পোলেণ্ড)", + "ps": "পুস্ত", + "ps_AF": "পুস্ত (আফগানিস্তান)", + "pt": "পৰ্তুগীজ", + "pt_AO": "পৰ্তুগীজ (এংগোলা)", + "pt_BR": "পৰ্তুগীজ (ব্ৰাজিল)", + "pt_CH": "পৰ্তুগীজ (চুইজাৰলেণ্ড)", + "pt_CV": "পৰ্তুগীজ (কেপ ভার্দে)", + "pt_GQ": "পৰ্তুগীজ (ইকুৱেটৰিয়েল গিনি)", + "pt_GW": "পৰ্তুগীজ (গিনি-বিছাও)", + "pt_LU": "পৰ্তুগীজ (লাক্সেমবাৰ্গ)", + "pt_MO": "পৰ্তুগীজ (মাকাউ এছ. এ. আৰ. চীন)", + "pt_MZ": "পৰ্তুগীজ (ম’জামবিক)", + "pt_PT": "পৰ্তুগীজ (পৰ্তুগাল)", + "pt_ST": "পৰ্তুগীজ (চাও টোমে আৰু প্ৰিনচিপে)", + "pt_TL": "পৰ্তুগীজ (টিমোৰ-লেচটে)", + "qu": "কুৱেচুৱা", + "qu_BO": "কুৱেচুৱা (বলিভিয়া)", + "qu_EC": "কুৱেচুৱা (ইকুৱেডৰ)", + "qu_PE": "কুৱেচুৱা (পেৰু)", + "rm": "ৰোমানচ", + "rm_CH": "ৰোমানচ (চুইজাৰলেণ্ড)", + "rn": "ৰুন্দি", + "rn_BI": "ৰুন্দি (বুৰুণ্ডি)", + "ro": "ৰোমানীয়", + "ro_MD": "ৰোমানীয় (মোলডোভা)", + "ro_RO": "ৰোমানীয় (ৰোমানিয়া)", + "ru": "ৰাছিয়ান", + "ru_BY": "ৰাছিয়ান (বেলাৰুছ)", + "ru_KG": "ৰাছিয়ান (কিৰ্গিজস্তান)", + "ru_KZ": "ৰাছিয়ান (কাজাখাস্তান)", + "ru_MD": "ৰাছিয়ান (মোলডোভা)", + "ru_RU": "ৰাছিয়ান (ৰাছিয়া)", + "ru_UA": "ৰাছিয়ান (ইউক্ৰেইন)", + "rw": "কিনয়াৰোৱাণ্ডা", + "rw_RW": "কিনয়াৰোৱাণ্ডা (ৰোৱাণ্ডা)", + "se": "উদীচ্য ছামি", + "se_FI": "উদীচ্য ছামি (ফিনলেণ্ড)", + "se_NO": "উদীচ্য ছামি (নৰৱে)", + "se_SE": "উদীচ্য ছামি (চুইডেন)", + "sg": "ছাঙ্গো", + "sg_CF": "ছাঙ্গো (মধ্য আফ্রিকান প্রজাতন্ত্র)", + "si": "সিংহলা", + "si_LK": "সিংহলা (শ্রীলংকা)", + "sk": "শ্লোভাক", + "sk_SK": "শ্লোভাক (শ্লোভাকিয়া)", + "sl": "শ্লোভেনিয়ান", + "sl_SI": "শ্লোভেনিয়ান (শ্লোভেনিয়া)", + "sn": "চোনা", + "sn_ZW": "চোনা (জিম্বাবৱে)", + "so": "ছোমালি", + "so_DJ": "ছোমালি (জিবুটি)", + "so_ET": "ছোমালি (ইথিঅ’পিয়া)", + "so_KE": "ছোমালি (কেনিয়া)", + "so_SO": "ছোমালি (চোমালিয়া)", + "sq": "আলবেনীয়", + "sq_AL": "আলবেনীয় (আলবেনিয়া)", + "sq_MK": "আলবেনীয় (মেচিডোনীয়া)", + "sq_XK": "আলবেনীয় (কচ’ভ’)", + "sr": "ছাৰ্বিয়ান", + "sr_BA": "ছাৰ্বিয়ান (ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "sr_Cyrl": "ছাৰ্বিয়ান (চিৰিলিক)", + "sr_Cyrl_BA": "ছাৰ্বিয়ান (চিৰিলিক, ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "sr_Cyrl_ME": "ছাৰ্বিয়ান (চিৰিলিক, মণ্টেনেগ্ৰু)", + "sr_Cyrl_RS": "ছাৰ্বিয়ান (চিৰিলিক, ছাৰ্বিয়া)", + "sr_Cyrl_XK": "ছাৰ্বিয়ান (চিৰিলিক, কচ’ভ’)", + "sr_Latn": "ছাৰ্বিয়ান (লেটিন)", + "sr_Latn_BA": "ছাৰ্বিয়ান (লেটিন, ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা)", + "sr_Latn_ME": "ছাৰ্বিয়ান (লেটিন, মণ্টেনেগ্ৰু)", + "sr_Latn_RS": "ছাৰ্বিয়ান (লেটিন, ছাৰ্বিয়া)", + "sr_Latn_XK": "ছাৰ্বিয়ান (লেটিন, কচ’ভ’)", + "sr_ME": "ছাৰ্বিয়ান (মণ্টেনেগ্ৰু)", + "sr_RS": "ছাৰ্বিয়ান (ছাৰ্বিয়া)", + "sr_XK": "ছাৰ্বিয়ান (কচ’ভ’)", + "sv": "ছুইডিচ", + "sv_AX": "ছুইডিচ (আলণ্ড দ্বীপপুঞ্জ)", + "sv_FI": "ছুইডিচ (ফিনলেণ্ড)", + "sv_SE": "ছুইডিচ (চুইডেন)", + "sw": "স্বাহিলি", + "sw_CD": "স্বাহিলি (কঙ্গো - কিনচাছা)", + "sw_KE": "স্বাহিলি (কেনিয়া)", + "sw_TZ": "স্বাহিলি (তাঞ্জানিয়া)", + "sw_UG": "স্বাহিলি (উগাণ্ডা)", + "ta": "তামিল", + "ta_IN": "তামিল (ভাৰত)", + "ta_LK": "তামিল (শ্রীলংকা)", + "ta_MY": "তামিল (মালয়েচিয়া)", + "ta_SG": "তামিল (ছিংগাপুৰ)", + "te": "তেলুগু", + "te_IN": "তেলুগু (ভাৰত)", + "tg": "তাজিক", + "tg_TJ": "তাজিক (তাজিকিস্তান)", + "th": "থাই", + "th_TH": "থাই (থাইলেণ্ড)", + "ti": "টিগৰিনিয়া", + "ti_ER": "টিগৰিনিয়া (এৰিত্ৰিয়া)", + "ti_ET": "টিগৰিনিয়া (ইথিঅ’পিয়া)", + "to": "টোঙ্গান", + "to_TO": "টোঙ্গান (টংগা)", + "tr": "তুৰ্কী", + "tr_CY": "তুৰ্কী (চাইপ্ৰাছ)", + "tr_TR": "তুৰ্কী (তুৰ্কি)", + "tt": "তাতাৰ", + "tt_RU": "তাতাৰ (ৰাছিয়া)", + "ug": "উইঘুৰ", + "ug_CN": "উইঘুৰ (চীন)", + "uk": "ইউক্ৰেইনীয়", + "uk_UA": "ইউক্ৰেইনীয় (ইউক্ৰেইন)", + "ur": "উৰ্দু", + "ur_IN": "উৰ্দু (ভাৰত)", + "ur_PK": "উৰ্দু (পাকিস্তান)", + "uz": "উজবেক", + "uz_AF": "উজবেক (আফগানিস্তান)", + "uz_Arab": "উজবেক (আৰবী)", + "uz_Arab_AF": "উজবেক (আৰবী, আফগানিস্তান)", + "uz_Cyrl": "উজবেক (চিৰিলিক)", + "uz_Cyrl_UZ": "উজবেক (চিৰিলিক, উজবেকিস্তান)", + "uz_Latn": "উজবেক (লেটিন)", + "uz_Latn_UZ": "উজবেক (লেটিন, উজবেকিস্তান)", + "uz_UZ": "উজবেক (উজবেকিস্তান)", + "vi": "ভিয়েটনামী", + "vi_VN": "ভিয়েটনামী (ভিয়েটনাম)", + "wo": "ৱোলাফ", + "wo_SN": "ৱোলাফ (চেনেগাল)", + "yi": "ইদ্দিছ", + "yo": "ইউৰুবা", + "yo_BJ": "ইউৰুবা (বেনিন)", + "yo_NG": "ইউৰুবা (নাইজেৰিয়া)", + "zh": "চীনা", + "zh_CN": "চীনা (চীন)", + "zh_HK": "চীনা (হং কং এছ. এ. আৰ. চীন)", + "zh_Hans": "চীনা (সৰলীকৃত)", + "zh_Hans_CN": "চীনা (সৰলীকৃত, চীন)", + "zh_Hans_HK": "চীনা (সৰলীকৃত, হং কং এছ. এ. আৰ. চীন)", + "zh_Hans_MO": "চীনা (সৰলীকৃত, মাকাউ এছ. এ. আৰ. চীন)", + "zh_Hans_SG": "চীনা (সৰলীকৃত, ছিংগাপুৰ)", + "zh_Hant": "চীনা (পৰম্পৰাগত)", + "zh_Hant_HK": "চীনা (পৰম্পৰাগত, হং কং এছ. এ. আৰ. চীন)", + "zh_Hant_MO": "চীনা (পৰম্পৰাগত, মাকাউ এছ. এ. আৰ. চীন)", + "zh_Hant_TW": "চীনা (পৰম্পৰাগত, টাইৱান)", + "zh_MO": "চীনা (মাকাউ এছ. এ. আৰ. চীন)", + "zh_SG": "চীনা (ছিংগাপুৰ)", + "zh_TW": "চীনা (টাইৱান)", + "zu": "ঝুলু", + "zu_ZA": "ঝুলু (দক্ষিণ আফ্রিকা)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index 66008e4e364a7..1ed7c8f2b611e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -71,7 +71,7 @@ "ce": "tchetcheneg", "ce_RU": "tchetcheneg (Rusia)", "cs": "tchekeg", - "cs_CZ": "tchekeg (Republik Tchek)", + "cs_CZ": "tchekeg (Tchekia)", "cy": "kembraeg", "cy_GB": "kembraeg (Rouantelezh-Unanet)", "da": "daneg", @@ -232,6 +232,11 @@ "fa": "perseg", "fa_AF": "perseg (Afghanistan)", "fa_IR": "perseg (Iran)", + "ff": "fula", + "ff_CM": "fula (Kameroun)", + "ff_GN": "fula (Ginea)", + "ff_MR": "fula (Maouritania)", + "ff_SN": "fula (Senegal)", "fi": "finneg", "fi_FI": "finneg (Finland)", "fo": "faeroeg", @@ -332,6 +337,8 @@ "ki_KE": "kikuyu (Kenya)", "kk": "kazak", "kk_KZ": "kazak (Kazakstan)", + "kl": "greunlandeg", + "kl_GL": "greunlandeg (Greunland)", "km": "khmer", "km_KH": "khmer (Kambodja)", "kn": "kanareg", @@ -400,6 +407,9 @@ "nn_NO": "norvegeg nynorsk (Norvegia)", "no": "norvegeg", "no_NO": "norvegeg (Norvegia)", + "om": "oromoeg", + "om_ET": "oromoeg (Etiopia)", + "om_KE": "oromoeg (Kenya)", "or": "oriya", "or_IN": "oriya (India)", "os": "oseteg", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index 7c7b266e89860..1e1154a5f8e44 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -58,11 +58,11 @@ "br": "Llydaweg", "br_FR": "Llydaweg (Ffrainc)", "bs": "Bosnieg", - "bs_BA": "Bosnieg (Bosnia a Herzegovina)", + "bs_BA": "Bosnieg (Bosnia & Herzegovina)", "bs_Cyrl": "Bosnieg (Cyrilig)", - "bs_Cyrl_BA": "Bosnieg (Cyrilig, Bosnia a Herzegovina)", + "bs_Cyrl_BA": "Bosnieg (Cyrilig, Bosnia & Herzegovina)", "bs_Latn": "Bosnieg (Lladin)", - "bs_Latn_BA": "Bosnieg (Lladin, Bosnia a Herzegovina)", + "bs_Latn_BA": "Bosnieg (Lladin, Bosnia & Herzegovina)", "ca": "Catalaneg", "ca_AD": "Catalaneg (Andorra)", "ca_ES": "Catalaneg (Sbaen)", @@ -310,7 +310,7 @@ "hi": "Hindi", "hi_IN": "Hindi (India)", "hr": "Croateg", - "hr_BA": "Croateg (Bosnia a Herzegovina)", + "hr_BA": "Croateg (Bosnia & Herzegovina)", "hr_HR": "Croateg (Croatia)", "hu": "Hwngareg", "hu_HU": "Hwngareg (Hwngari)", @@ -466,7 +466,7 @@ "sg": "Sango", "sg_CF": "Sango (Gweriniaeth Canolbarth Affrica)", "sh": "Serbo-Croateg", - "sh_BA": "Serbo-Croateg (Bosnia a Herzegovina)", + "sh_BA": "Serbo-Croateg (Bosnia & Herzegovina)", "si": "Sinhaleg", "si_LK": "Sinhaleg (Sri Lanka)", "sk": "Slofaceg", @@ -485,14 +485,14 @@ "sq_MK": "Albaneg (Macedonia)", "sq_XK": "Albaneg (Kosovo)", "sr": "Serbeg", - "sr_BA": "Serbeg (Bosnia a Herzegovina)", + "sr_BA": "Serbeg (Bosnia & Herzegovina)", "sr_Cyrl": "Serbeg (Cyrilig)", - "sr_Cyrl_BA": "Serbeg (Cyrilig, Bosnia a Herzegovina)", + "sr_Cyrl_BA": "Serbeg (Cyrilig, Bosnia & Herzegovina)", "sr_Cyrl_ME": "Serbeg (Cyrilig, Montenegro)", "sr_Cyrl_RS": "Serbeg (Cyrilig, Serbia)", "sr_Cyrl_XK": "Serbeg (Cyrilig, Kosovo)", "sr_Latn": "Serbeg (Lladin)", - "sr_Latn_BA": "Serbeg (Lladin, Bosnia a Herzegovina)", + "sr_Latn_BA": "Serbeg (Lladin, Bosnia & Herzegovina)", "sr_Latn_ME": "Serbeg (Lladin, Montenegro)", "sr_Latn_RS": "Serbeg (Lladin, Serbia)", "sr_Latn_XK": "Serbeg (Lladin, Kosovo)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en_IN.json b/src/Symfony/Component/Intl/Resources/data/locales/en_IN.json index c4f30ca257a40..947e50075649e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en_IN.json @@ -2,8 +2,6 @@ "Names": { "bn": "Bengali", "bn_BD": "Bengali (Bangladesh)", - "bn_IN": "Bengali (India)", - "or": "Oriya", - "or_IN": "Oriya (India)" + "bn_IN": "Bengali (India)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index 30aadf7ddf481..b94ef6570d4f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -49,9 +49,9 @@ "bg_BG": "bulgarskt (Bulgaria)", "bm": "bambara", "bm_ML": "bambara (Mali)", - "bn": "bengalskt", - "bn_BD": "bengalskt (Bangladesj)", - "bn_IN": "bengalskt (India)", + "bn": "bangla", + "bn_BD": "bangla (Bangladesj)", + "bn_IN": "bangla (India)", "bo": "tibetskt", "bo_CN": "tibetskt (Kina)", "bo_IN": "tibetskt (India)", @@ -207,7 +207,7 @@ "es_CR": "spanskt (Kosta Rika)", "es_CU": "spanskt (Kuba)", "es_DO": "spanskt (Dominikalýðveldið)", - "es_EA": "spanskt (Ceuta og Melilla)", + "es_EA": "spanskt (Ceuta & Melilla)", "es_EC": "spanskt (Ekvador)", "es_ES": "spanskt (Spania)", "es_GQ": "spanskt (Ekvatorguinea)", @@ -247,7 +247,7 @@ "fr_BF": "franskt (Burkina Faso)", "fr_BI": "franskt (Burundi)", "fr_BJ": "franskt (Benin)", - "fr_BL": "franskt (St-Barthélemy)", + "fr_BL": "franskt (St. Barthélemy)", "fr_CA": "franskt (Kanada)", "fr_CD": "franskt (Kongo, Dem. Lýðveldið)", "fr_CF": "franskt (Miðafrikalýðveldið)", @@ -277,7 +277,7 @@ "fr_NC": "franskt (Nýkaledónia)", "fr_NE": "franskt (Niger)", "fr_PF": "franskt (Franska Polynesia)", - "fr_PM": "franskt (Saint Pierre og Miquelon)", + "fr_PM": "franskt (Saint Pierre & Miquelon)", "fr_RE": "franskt (Réunion)", "fr_RW": "franskt (Ruanda)", "fr_SC": "franskt (Seyskelloyggjar)", @@ -410,8 +410,8 @@ "om": "oromo", "om_ET": "oromo (Etiopia)", "om_KE": "oromo (Kenja)", - "or": "oriya", - "or_IN": "oriya (India)", + "or": "odia", + "or_IN": "odia (India)", "os": "ossetiskt", "os_GE": "ossetiskt (Georgia)", "os_RU": "ossetiskt (Russland)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index 3e4c90a0aa93f..abeaa37865900 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -25,7 +25,7 @@ "ar_MA": "arapski (Maroko)", "ar_MR": "arapski (Mauretanija)", "ar_OM": "arapski (Oman)", - "ar_PS": "arapski (Palestinsko Područje)", + "ar_PS": "arapski (Palestinsko područje)", "ar_QA": "arapski (Katar)", "ar_SA": "arapski (Saudijska Arabija)", "ar_SD": "arapski (Sudan)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/is.json b/src/Symfony/Component/Intl/Resources/data/locales/is.json index 9edd1b928d75f..fffb8d5bd3ddc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -253,7 +253,7 @@ "fr_CF": "franska (Mið-Afríkulýðveldið)", "fr_CG": "franska (Kongó-Brazzaville)", "fr_CH": "franska (Sviss)", - "fr_CI": "franska (Fílabeinsströndin)", + "fr_CI": "franska (Côte d’Ivoire)", "fr_CM": "franska (Kamerún)", "fr_DJ": "franska (Djíbútí)", "fr_DZ": "franska (Alsír)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index 18b4243d156d9..5c1157c6a2db6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -437,7 +437,7 @@ "pt_MO": "португал (БНХАУ-ын Тусгай захиргааны бүс Макао)", "pt_MZ": "португал (Мозамбик)", "pt_PT": "португал (Португал)", - "pt_ST": "португал (Сан-Томе ба Принсипи)", + "pt_ST": "португал (Сан-Томе Принсипи)", "pt_TL": "португал (Тимор-Лесте)", "qu": "кечуа", "qu_BO": "кечуа (Боливи)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index 04c311b4093b7..176cdf75ab363 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -253,7 +253,7 @@ "fr_CF": "ଫରାସୀ (ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର)", "fr_CG": "ଫରାସୀ (କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ)", "fr_CH": "ଫରାସୀ (ସ୍ୱିଜରଲ୍ୟାଣ୍ଡ)", - "fr_CI": "ଫରାସୀ (କୋଟେ ଡି ଆଇଭୋରି)", + "fr_CI": "ଫରାସୀ (କୋତ୍ ଡି ଭ୍ଵାର୍)", "fr_CM": "ଫରାସୀ (କାମେରୁନ୍)", "fr_DJ": "ଫରାସୀ (ଜିବୋଟି)", "fr_DZ": "ଫରାସୀ (ଆଲଜେରିଆ)", @@ -418,8 +418,8 @@ "pa": "ପଞ୍ଜାବୀ", "pa_Arab": "ପଞ୍ଜାବୀ (ଆରବିକ୍)", "pa_Arab_PK": "ପଞ୍ଜାବୀ (ଆରବିକ୍, ପାକିସ୍ତାନ)", - "pa_Guru": "ପଞ୍ଜାବୀ (ଗୁରୁମୁଖୀ)", - "pa_Guru_IN": "ପଞ୍ଜାବୀ (ଗୁରୁମୁଖୀ, ଭାରତ)", + "pa_Guru": "ପଞ୍ଜାବୀ (ଗୁରମୁଖୀ)", + "pa_Guru_IN": "ପଞ୍ଜାବୀ (ଗୁରମୁଖୀ, ଭାରତ)", "pa_IN": "ପଞ୍ଜାବୀ (ଭାରତ)", "pa_PK": "ପଞ୍ଜାବୀ (ପାକିସ୍ତାନ)", "pl": "ପୋଲିଶ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ps.json b/src/Symfony/Component/Intl/Resources/data/locales/ps.json index 0c73e7a78019d..0e1e09ee186ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ps.json @@ -441,13 +441,13 @@ "qu_BO": "کېچوا (بولیویا)", "qu_EC": "کېچوا (اکوادور)", "qu_PE": "کېچوا (پیرو)", - "rm": "رومانش", - "rm_CH": "رومانش (سویس)", + "rm": "رومانیش", + "rm_CH": "رومانیش (سویس)", "rn": "رونډی", "rn_BI": "رونډی (بروندي)", - "ro": "روماني", - "ro_MD": "روماني (مولدوا)", - "ro_RO": "روماني (رومانیا)", + "ro": "رومانیایی", + "ro_MD": "رومانیایی (مولدوا)", + "ro_RO": "رومانیایی (رومانیا)", "ru": "روسي", "ru_BY": "روسي (بیلاروس)", "ru_KG": "روسي (قرغزستان)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 34964c322ec47..7a87c425d2da7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -164,7 +164,7 @@ "en_PG": "английский (Папуа — Новая Гвинея)", "en_PH": "английский (Филиппины)", "en_PK": "английский (Пакистан)", - "en_PN": "английский (острова Питкэрн)", + "en_PN": "английский (о-ва Питкэрн)", "en_PR": "английский (Пуэрто-Рико)", "en_PW": "английский (Палау)", "en_RW": "английский (Руанда)", @@ -558,15 +558,15 @@ "zh": "китайский", "zh_CN": "китайский (Китай)", "zh_HK": "китайский (Гонконг (САР))", - "zh_Hans": "китайский (упрощенный)", - "zh_Hans_CN": "китайский (упрощенный, Китай)", - "zh_Hans_HK": "китайский (упрощенный, Гонконг (САР))", - "zh_Hans_MO": "китайский (упрощенный, Макао (САР))", - "zh_Hans_SG": "китайский (упрощенный, Сингапур)", - "zh_Hant": "китайский (традиционный)", - "zh_Hant_HK": "китайский (традиционный, Гонконг (САР))", - "zh_Hant_MO": "китайский (традиционный, Макао (САР))", - "zh_Hant_TW": "китайский (традиционный, Тайвань)", + "zh_Hans": "китайский (упрощенная китайская)", + "zh_Hans_CN": "китайский (упрощенная китайская, Китай)", + "zh_Hans_HK": "китайский (упрощенная китайская, Гонконг (САР))", + "zh_Hans_MO": "китайский (упрощенная китайская, Макао (САР))", + "zh_Hans_SG": "китайский (упрощенная китайская, Сингапур)", + "zh_Hant": "китайский (традиционная китайская)", + "zh_Hant_HK": "китайский (традиционная китайская, Гонконг (САР))", + "zh_Hant_MO": "китайский (традиционная китайская, Макао (САР))", + "zh_Hant_TW": "китайский (традиционная китайская, Тайвань)", "zh_MO": "китайский (Макао (САР))", "zh_SG": "китайский (Сингапур)", "zh_TW": "китайский (Тайвань)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index 343521686a39a..2ebd78f3ab158 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -247,7 +247,7 @@ "fr_BF": "frëngjisht (Burkina-Faso)", "fr_BI": "frëngjisht (Burundi)", "fr_BJ": "frëngjisht (Benin)", - "fr_BL": "frëngjisht (Shën Bartolomeu)", + "fr_BL": "frëngjisht (Shën-Bartolome)", "fr_CA": "frëngjisht (Kanada)", "fr_CD": "frëngjisht (Kongo-Kinshasa)", "fr_CF": "frëngjisht (Republika e Afrikës Qendrore)", @@ -277,7 +277,7 @@ "fr_NC": "frëngjisht (Kaledonia e Re)", "fr_NE": "frëngjisht (Niger)", "fr_PF": "frëngjisht (Polinezia Franceze)", - "fr_PM": "frëngjisht (Shën Pier dhe Mikelon)", + "fr_PM": "frëngjisht (Shën-Pier dhe Mikelon)", "fr_RE": "frëngjisht (Reunion)", "fr_RW": "frëngjisht (Ruandë)", "fr_SC": "frëngjisht (Sejshelle)", @@ -389,7 +389,7 @@ "my_MM": "birmanisht (Mianmar (Burma))", "nb": "norvegjishte letrare", "nb_NO": "norvegjishte letrare (Norvegji)", - "nb_SJ": "norvegjishte letrare (Svalbard dhe Jan-Majen)", + "nb_SJ": "norvegjishte letrare (Svalbard e Jan-Majen)", "nd": "ndebelishte veriore", "nd_ZW": "ndebelishte veriore (Zimbabve)", "ne": "nepalisht", @@ -437,7 +437,7 @@ "pt_MO": "portugalisht (RPA i Makaos)", "pt_MZ": "portugalisht (Mozambik)", "pt_PT": "portugalisht (Portugali)", - "pt_ST": "portugalisht (Sao Tome dhe Principe)", + "pt_ST": "portugalisht (Sao-Tome e Principe)", "pt_TL": "portugalisht (Timor-Leste)", "qu": "keçuaisht", "qu_BO": "keçuaisht (Bolivi)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index a4aa990d7d327..faaa550781425 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -375,8 +375,8 @@ "mk_MK": "makedon (Makedoniya)", "ml": "malayalam", "ml_IN": "malayalam (Hindiston)", - "mn": "mo‘g‘ul", - "mn_MN": "mo‘g‘ul (Mongoliya)", + "mn": "mongol", + "mn_MN": "mongol (Mongoliya)", "mr": "maratxi", "mr_IN": "maratxi (Hindiston)", "ms": "malay", @@ -395,14 +395,14 @@ "ne": "nepal", "ne_IN": "nepal (Hindiston)", "ne_NP": "nepal (Nepal)", - "nl": "golland", - "nl_AW": "golland (Aruba)", - "nl_BE": "golland (Belgiya)", - "nl_BQ": "golland (Boneyr, Sint-Estatius va Saba)", - "nl_CW": "golland (Kyurasao)", - "nl_NL": "golland (Niderlandiya)", - "nl_SR": "golland (Surinam)", - "nl_SX": "golland (Sint-Marten)", + "nl": "niderland", + "nl_AW": "niderland (Aruba)", + "nl_BE": "niderland (Belgiya)", + "nl_BQ": "niderland (Boneyr, Sint-Estatius va Saba)", + "nl_CW": "niderland (Kyurasao)", + "nl_NL": "niderland (Niderlandiya)", + "nl_SR": "niderland (Surinam)", + "nl_SX": "niderland (Sint-Marten)", "nn": "norveg-nyunorsk", "nn_NO": "norveg-nyunorsk (Norvegiya)", "om": "oromo", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index 687053b968ac8..4fcd798d2f11f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -96,7 +96,7 @@ "en": "Tiếng Anh", "en_AG": "Tiếng Anh (Antigua và Barbuda)", "en_AI": "Tiếng Anh (Anguilla)", - "en_AS": "Tiếng Anh (Đảo Somoa thuộc Mỹ)", + "en_AS": "Tiếng Anh (Samoa thuộc Mỹ)", "en_AT": "Tiếng Anh (Áo)", "en_AU": "Tiếng Anh (Australia)", "en_BB": "Tiếng Anh (Barbados)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index 0f632aafd712a..1c9d008592ee2 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ascensioneiland", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index 6134dd9bf2930..12e0b8e15569f 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.37.1", + "Version": "2.1.39.11", "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 b810fbb077234..eacb4cad2b7d0 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index 3a962b075bc5f..00a3034237098 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.36.86", + "Version": "2.1.39.20", "Names": { "AC": "جزيرة أسينشيون", "AD": "أندورا", 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 644c9d9699355..69c31f060bc85 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.37.6", + "Version": "2.1.38.39", "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 7912fc2da1bcc..d533f5a0898f0 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.37.6", + "Version": "2.1.38.80", "Names": { "AC": "جزيرة أسينشين", "BS": "جزر البهاما", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index 5eb3585f1b448..7a8dca9572a23 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/as.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/as.json @@ -1,218 +1,260 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { - "AC": "অ্যাসেনশন আইল্যান্ড", - "AD": "এ্যান্ডোরা", - "AE": "UAE", + "AC": "এচেনচিয়ন দ্বীপ", + "AD": "আন্দোৰা", + "AE": "সংযুক্ত আৰব আমিৰাত", "AF": "আফগানিস্তান", - "AI": "এ্যাঙ্গুইলা", - "AL": "আল্বেনিয়া", - "AM": "আরমেনিয়া", - "AO": "অ্যাঙ্গোলা", - "AQ": "এন্টাৰ্টিকা", - "AR": "আর্জিণ্টিনা", - "AS": "আমেরিকান সামোয়া", - "AT": "অস্ট্রিয়া", - "AU": "অস্ট্রেলিয়া", - "AX": "আলে্যান্ড দ্বীপপুঞ্জ", - "AZ": "আজেরবাইজান", - "BA": "বসনিয়া ও হারজেগোভিনা", + "AG": "এণ্টিগুৱা আৰু বাৰ্বুডা", + "AI": "এনগুইলা", + "AL": "আলবেনিয়া", + "AM": "আৰ্মেনিয়া", + "AO": "এংগোলা", + "AQ": "এণ্টাৰ্কটিকা", + "AR": "আৰ্জেণ্টিনা", + "AS": "আমেৰিকান চামোৱা", + "AT": "অষ্ট্ৰিয়া", + "AU": "অষ্ট্ৰেলিয়া", + "AW": "আৰুবা", + "AX": "আলণ্ড দ্বীপপুঞ্জ", + "AZ": "আজাৰবেইজান", + "BA": "ব’ছনিয়া আৰু হাৰ্জেগ’ভিনা", + "BB": "বাৰ্বাডোচ", "BD": "বাংলাদেশ", "BE": "বেলজিয়াম", - "BF": "বুর্কিনা ফাসো", - "BG": "বুলগেরিয়া", - "BH": "বাহরাইন", - "BI": "বুরুন্ডি", + "BF": "বুৰকিনা ফাচো", + "BG": "বুলগেৰিয়া", + "BH": "বাহৰেইন", + "BI": "বুৰুণ্ডি", "BJ": "বেনিন", - "BN": "ব্রুনেই", - "BO": "বোলিভিয়া", - "BR": "ব্রাজিল", + "BL": "ছেইণ্ট বাৰ্থলেমে", + "BM": "বাৰ্মুডা", + "BN": "ব্ৰুনেই", + "BO": "বলিভিয়া", + "BQ": "কেৰিবিয়ান নেদাৰলেণ্ডছ", + "BR": "ব্ৰাজিল", + "BS": "বাহামাছ", "BT": "ভুটান", - "BW": "বোট্স্বানা", - "BY": "বেলারুশ", - "CC": "কোকোস (কিলিং) দ্বীপপুঞ্জ", - "CD": "কঙ্গো - কিনসাসা", + "BW": "ব’টচোৱানা", + "BY": "বেলাৰুছ", + "BZ": "বেলিজ", + "CA": "কানাডা", + "CC": "কোকোচ (কীলিং) দ্বীপপুঞ্জ", + "CD": "কঙ্গো - কিনচাছা", "CF": "মধ্য আফ্রিকান প্রজাতন্ত্র", "CG": "কঙ্গো - ব্রাজাভিল", - "CH": "সুইজর্লণ্ড", - "CI": "আইভরি কোস্ট", + "CH": "চুইজাৰলেণ্ড", + "CI": "কোটে ডি আইভৰ", "CK": "কুক দ্বীপপুঞ্জ", "CL": "চিলি", - "CM": "ক্যামেরুন", + "CM": "কেমেৰুণ", "CN": "চীন", - "CO": "কলোমবিয়া", + "CO": "কলম্বিয়া", + "CR": "কোষ্টা ৰিকা", + "CU": "কিউবা", "CV": "কেপ ভার্দে", - "CX": "ক্রিস্টমাস দ্বীপ", - "CY": "সাইপ্রাসদ্বিপ", - "DE": "জাৰ্মানি", - "DG": "দিয়েগো গার্সিয়া", - "DJ": "জিবুতি", - "DK": "ডেন্মার্ক্", - "DZ": "আলজেরিয়া", - "EA": "কিউটা & ম্লিলা", - "EC": "ইকোয়াডর", - "EE": "এস্তোনিয়াদেশ", - "EG": "মিশর", - "EH": "পশ্চিম সাহারা", - "ER": "ইরিত্রিয়া", - "ES": "স্পেন", - "ET": "ইথিওপিয়া", - "FI": "ফিনল্যাণ্ড", + "CW": "কুৰাকাও", + "CX": "খ্ৰীষ্টমাছ দ্বীপ", + "CY": "চাইপ্ৰাছ", + "CZ": "চিজেচিয়া", + "DE": "জাৰ্মানী", + "DG": "ডিয়েগো গাৰ্চিয়া", + "DJ": "জিবুটি", + "DK": "ডেনমাৰ্ক", + "DM": "ড’মিনিকা", + "DO": "ড’মিনিকান ৰিপাব্লিক", + "DZ": "আলজেৰিয়া", + "EA": "চেউটা আৰু মেলিলা", + "EC": "ইকুৱেডৰ", + "EE": "ইষ্টোনিয়া", + "EG": "ইজিপ্ত", + "EH": "পশ্চিমীয় ছাহাৰা", + "ER": "এৰিত্ৰিয়া", + "ES": "স্পেইন", + "ET": "ইথিঅ’পিয়া", + "EZ": "ইউৰোজ’ন", + "FI": "ফিনলেণ্ড", "FJ": "ফিজি", - "FK": "ফকল্যান্ড দ্বীপপুঞ্জ", - "FM": "মাইক্রোনেশিয়া", - "FO": "ফারো দ্বীপপুঞ্জ", + "FK": "ফকলেণ্ড দ্বীপপুঞ্জ", + "FM": "মাইক্ৰোনেচিয়া", + "FO": "ফাৰো দ্বীপপুঞ্জ", "FR": "ফ্ৰান্স", - "GA": "গাবোনবাদ্যযন্ত্র", + "GA": "গেবন", "GB": "সংযুক্ত ৰাজ্য", - "GE": "জর্জিয়া", - "GF": "একটি দেশের নাম", - "GG": "গেঁজি", + "GD": "গ্ৰেনাডা", + "GE": "জৰ্জিয়া", + "GF": "ফ্ৰান্স গয়ানা", + "GG": "গোৰেনচি", "GH": "ঘানা", - "GI": "জিব্রালটার", - "GM": "গাম্বিয়াদেশ", + "GI": "জিব্ৰাল্টৰ", + "GL": "গ্ৰীণলেণ্ড", + "GM": "গাম্বিয়া", "GN": "গিনি", - "GQ": "নিরক্ষীয় গিনি", - "GR": "গ্রীস", - "GS": "দক্ষিণ জৰ্জিয়া আৰু দক্ষিণ চেণ্ডৱিচ্‌ দ্বীপপুঞ্জ", - "GU": "গুয়াম", - "GW": "গিনি-বিসাউ", + "GP": "গুৱাডেলুপ", + "GQ": "ইকুৱেটৰিয়েল গিনি", + "GR": "গ্ৰীচ", + "GS": "দক্ষিণ জৰ্জিয়া আৰু দক্ষিণ চেণ্ডৱিচ দ্বীপপুঞ্জ", + "GT": "গুৱাটেমালা", + "GU": "গুৱাম", + "GW": "গিনি-বিছাও", "GY": "গায়ানা", - "HK": "হংকং এসএআর চীন", - "HR": "ক্রোয়েশিয়া", - "HU": "হাঙ্গেরি", - "IC": "ক্যানারি দ্বীপপুঞ্জ", - "ID": "ইন্দোনেশিয়া", - "IE": "আয়ারল্যাণ্ড", - "IL": "ইস্রায়েল", - "IM": "আইল অফ ম্যান", - "IN": "ভারত", - "IO": "ব্ৰিটিশ্ব ইণ্ডিয়ান মহাসাগৰৰ অঞ্চল", - "IQ": "ইরাক", - "IR": "ইরান", - "IS": "আইস্ল্যাণ্ড", + "HK": "হং কং এছ. এ. আৰ. চীন", + "HN": "হন্দুৰাছ", + "HR": "ক্ৰোৱেছিয়া", + "HT": "হাইটি", + "HU": "হাংগেৰী", + "IC": "কেনেৰী দ্বীপপুঞ্জ", + "ID": "ইণ্ডোনেচিয়া", + "IE": "আয়াৰলেণ্ড", + "IL": "ইজৰাইল", + "IM": "আইল অফ মেন", + "IN": "ভাৰত", + "IO": "ব্ৰিটিছ ইণ্ডিয়ান অ’চন টেৰিট’ৰি", + "IQ": "ইৰাক", + "IR": "ইৰান", + "IS": "আইচলেণ্ড", "IT": "ইটালি", - "JE": "জার্সি", - "JO": "জর্ডন", + "JE": "জাৰ্চি", + "JM": "জামাইকা", + "JO": "জৰ্ডান", "JP": "জাপান", "KE": "কেনিয়া", - "KG": "কিরগিজস্তান", - "KH": "কাম্বোজ", - "KI": "কিরিবাতি", - "KM": "কমোরোস", - "KP": "উত্তর কোরিয়া", - "KR": "দক্ষিণ কোরিয়া", - "KW": "কুয়েত", - "KZ": "কাজাকস্থান", - "LA": "লাত্তস", + "KG": "কিৰ্গিজস্তান", + "KH": "কম্বোডিয়া", + "KI": "কিৰিবাটি", + "KM": "কোমোৰোজ", + "KN": "ছেইণ্ট কিটছ আৰু নেভিছ", + "KP": "উত্তৰ কোৰিয়া", + "KR": "দক্ষিণ কোৰিয়া", + "KW": "কুৱেইট", + "KY": "কেইমেন দ্বীপপুঞ্জ", + "KZ": "কাজাখাস্তান", + "LA": "লাওচ", "LB": "লেবানন", - "LI": "লিচেনস্টেইন", + "LC": "ছেইণ্ট লুচিয়া", + "LI": "লিচটেনষ্টেইন", "LK": "শ্রীলংকা", - "LR": "লাইবেরিয়া", - "LS": "লেসোথো", - "LT": "লিত্ভা", - "LU": "লাক্সেমবার্গ", - "LV": "ল্যাট্ভিআ", + "LR": "লিবেৰিয়া", + "LS": "লেছ’থ’", + "LT": "লিথুৱানিয়া", + "LU": "লাক্সেমবাৰ্গ", + "LV": "লাটভিয়া", "LY": "লিবিয়া", - "MA": "মরক্কো", + "MA": "মৰক্কো", "MC": "মোনাকো", - "MD": "মোল্দাভিয়া", - "ME": "মন্টিনিগ্রো", - "MG": "ম্যাডাগ্যাস্কার", - "MH": "মার্শাল দ্বীপপুঞ্জ", - "MK": "ম্যাসাডোনিয়া", + "MD": "মোলডোভা", + "ME": "মণ্টেনেগ্ৰু", + "MF": "ছেইণ্ট মাৰ্টিন", + "MG": "মাদাগাস্কাৰ", + "MH": "মাৰ্শ্বাল দ্বীপপুঞ্জ", + "MK": "মেচিডোনীয়া", "ML": "মালি", - "MM": "মায়ানমার (বার্মা)", - "MN": "মঙ্গোলিআ", - "MO": "ম্যাকাও এসএআর চীন", - "MP": "উত্তর মারিয়ানা দ্বীপপুঞ্জ", - "MR": "মরিতানিয়া", - "MT": "মালটা", - "MU": "মরিশাস", + "MM": "ম্যানমাৰ (বাৰ্মা)", + "MN": "মঙ্গোলিয়া", + "MO": "মাকাউ এছ. এ. আৰ. চীন", + "MP": "উত্তৰ মাৰিয়ানা দ্বীপপুঞ্জ", + "MQ": "মাৰ্টিনিক", + "MR": "মাউৰিটানিয়া", + "MS": "ম’ণ্টছেৰাট", + "MT": "মাল্টা", + "MU": "মৰিছাছ", "MV": "মালদ্বীপ", - "MW": "মালাউই", - "MY": "মাল্যাশিয়া", - "MZ": "মোজাম্বিক", + "MW": "মালাৱি", + "MX": "মেক্সিকো", + "MY": "মালয়েচিয়া", + "MZ": "ম’জামবিক", "NA": "নামিবিয়া", - "NC": "নতুন ক্যালেডোনিয়া", - "NE": "নাইজারনদী", - "NF": "নরফোক দ্বীপ", - "NG": "নাইজিরিয়াদেশ", - "NL": "নেদারল্যান্ডস", - "NO": "নরত্তএদেশ", + "NC": "নিউ কেলিডোনিয়া", + "NE": "নাইজাৰ", + "NF": "ন’ৰফ’ক দ্বীপ", + "NG": "নাইজেৰিয়া", + "NI": "নিকাৰাগুৱা", + "NL": "নেডাৰলেণ্ড", + "NO": "নৰৱে", "NP": "নেপাল", - "NR": "নাউরু", - "NU": "নিউই", - "NZ": "নিউজিল্যান্ড", + "NR": "নাউৰু", + "NU": "নিউ", + "NZ": "নিউজিলেণ্ড", "OM": "ওমান", - "PE": "পেরু", - "PF": "ফরাসি পলিনেশিয়া", - "PG": "পাপুয়া নিউ গিনি", - "PH": "ফিলিপাইন", + "PA": "পানামা", + "PE": "পেৰু", + "PF": "ফ্ৰান্স পোলেনচিয়া", + "PG": "পাপুৱা নিউ গিনি", + "PH": "ফিলিপাইনছ", "PK": "পাকিস্তান", - "PL": "পোল্যান্ড", - "PN": "পিটকেয়ার্ন দ্বীপপুঞ্জ", + "PL": "পোলেণ্ড", + "PM": "ছেইণ্ট পিয়েৰে আৰু মিকিউৱেলন", + "PN": "পিটকেইৰ্ণ দ্বীপপুঞ্জ", + "PR": "পুৱেৰ্টো ৰিকো", "PS": "ফিলিস্তিন অঞ্চল", - "PT": "পর্তুগাল", + "PT": "পৰ্তুগাল", "PW": "পালাউ", - "PY": "প্যারাগুয়ে", - "QA": "কাতার", - "RE": "সাক্ষাৎ", - "RO": "রুমানিয়া", - "RS": "সার্বিয়া", - "RU": "রাশিয়া", - "RW": "রুয়ান্ডা", - "SA": "সৌদি আরব", - "SB": "সলোমান দ্বীপপুঞ্জ", - "SC": "সিসিলি", - "SD": "সুদান", - "SE": "সুইডেন", - "SG": "সিঙ্গাপুর", - "SH": "সেন্ট হেলেনা", - "SI": "স্লোভানিয়া", - "SJ": "সাভালবার্ড ও জান মেন", + "PY": "পাৰাগুৱে", + "QA": "কাটাৰ", + "RE": "ৰিইউনিয়ন", + "RO": "ৰোমানিয়া", + "RS": "ছাৰ্বিয়া", + "RU": "ৰাছিয়া", + "RW": "ৰোৱাণ্ডা", + "SA": "চৌডি আৰবিয়া", + "SB": "চোলোমোন দ্বীপপুঞ্জ", + "SC": "ছিচিলিছ", + "SD": "চুডান", + "SE": "চুইডেন", + "SG": "ছিংগাপুৰ", + "SH": "ছেইণ্ট হেলেনা", + "SI": "শ্লোভেনিয়া", + "SJ": "চাভালবাৰ্ড আৰু জন মেয়ন", "SK": "শ্লোভাকিয়া", - "SL": "সিয়েরা লিওন", - "SM": "সান মেরিনো", - "SN": "সেনেগাল", - "SO": "সোমালিয়া", - "SR": "সুরিনাম", - "SS": "দক্ষিণ সুদান", - "ST": "সাও টোম এবং প্রিনসিপে", - "SY": "সিরিয়া", - "SZ": "সোয়াজিল্যান্ড", - "TA": "ট্রিস্টান ডা কুনা", - "TD": "মত্স্যবিশেষ", + "SL": "চিয়েৰা লিঅ’ন", + "SM": "চান মাৰিনো", + "SN": "চেনেগাল", + "SO": "চোমালিয়া", + "SR": "ছুৰিনাম", + "SS": "দক্ষিণ চুডান", + "ST": "চাও টোমে আৰু প্ৰিনচিপে", + "SV": "এল ছেলভেড’ৰ", + "SX": "চিণ্ট মাৰ্টেন", + "SY": "চিৰিয়া", + "SZ": "স্বাজিলেণ্ড", + "TA": "ত্ৰিস্তান দ্যা কুনহা", + "TC": "টাৰ্কছ অৰু কেইক’ছ দ্বীপপুঞ্জ", + "TD": "চাড", "TF": "দক্ষিণ ফ্ৰান্সৰ অঞ্চল", - "TG": "যাও", - "TH": "থাইল্যান্ড", - "TJ": "তাজিকস্থান", + "TG": "টোগো", + "TH": "থাইলেণ্ড", + "TJ": "তাজিকিস্তান", "TK": "টোকেলাউ", - "TL": "পূর্ব তিমুর", - "TM": "তুর্কমেনিয়া", - "TN": "টিউনিস্", - "TO": "টাঙ্গা", - "TR": "তুরস্ক", + "TL": "টিমোৰ-লেচটে", + "TM": "তুৰ্কমেনিস্তান", + "TN": "টুনিচিয়া", + "TO": "টংগা", + "TR": "তুৰ্কি", + "TT": "ট্ৰিনিডাড আৰু টোবাগো", "TV": "টুভালু", - "TW": "তাইওয়ান", + "TW": "টাইৱান", "TZ": "তাঞ্জানিয়া", - "UA": "ইউক্রেইন্", - "UG": "উগান্ডা", - "UM": "ইউ এস আউটলিং আইল্যান্ডস", - "US": "যুক্তৰাষ্ট্ৰ", - "UY": "উরুগুয়ে", - "UZ": "উজ্বেকিস্থান", - "VA": "ভ্যাটিকান সিটি", - "VE": "ভেনেজুয়েলা", - "VN": "ভিয়েতনাম", - "VU": "ভানুয়াতু", - "WF": "ওয়ালিস ও ফুটুনা", - "WS": "সামোয়া", - "XK": "কসোভো", - "YE": "ইমেন", - "YT": "মায়োত্তে", - "ZA": "দক্ষিন আফ্রিকা", + "UA": "ইউক্ৰেইন", + "UG": "উগাণ্ডা", + "UM": "ইউ. এছ. আউটলায়িং দ্বীপপুঞ্জ", + "UN": "ৰাষ্ট্ৰসংঘ", + "US": "মাৰ্কিন যুক্তৰাষ্ট্ৰ", + "UY": "উৰুগুৱে", + "UZ": "উজবেকিস্তান", + "VA": "ভেটিকান চিটি", + "VC": "ছেইণ্ট ভিনচেণ্ট আৰু গ্ৰীণাডাইনছ", + "VE": "ভেনিজুৱেলা", + "VG": "ব্ৰিটিছ ভাৰ্জিন দ্বীপপুঞ্জ", + "VI": "ইউ. এছ. ভাৰ্জিন দ্বীপপুঞ্জ", + "VN": "ভিয়েটনাম", + "VU": "ভানাটু", + "WF": "ৱালিছ আৰু ফুটুনা", + "WS": "চামোৱা", + "XK": "কচ’ভ’", + "YE": "য়েমেন", + "YT": "মায়োট্টে", + "ZA": "দক্ষিণ আফ্রিকা", "ZM": "জাম্বিয়া", - "ZW": "জিম্বাবুয়ে" + "ZW": "জিম্বাবৱে" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index 7215413046b55..cbbac809fdd5e 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Askenson adası", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json index 4ef47b1c79750..d957f9db3197d 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.37.1", + "Version": "2.1.38.69", "Names": { "AC": "Аскенсон адасы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index 61c92f7dd149a..ca044fa291599 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.37.5", + "Version": "2.1.39.11", "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 40def1dc15a96..1a1a657bf5642 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.37.59", + "Version": "2.1.39.11", "Names": { "AC": "остров Възнесение", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index afd862110d3ea..b4486b5d0f3e7 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.31.33", + "Version": "2.1.39.11", "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 444dda95d1142..2421034c6f596 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "আন্ডোরা", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json index 0a93cace7a2d1..feb082dcec097 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.37.6", + "Version": "2.1.38.69", "Names": { "MD": "মলডোভা", "UM": "মার্কিন যুক্তরাষ্ট্রের পার্শ্ববর্তী দ্বীপপুঞ্জ" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo.json b/src/Symfony/Component/Intl/Resources/data/regions/bo.json index be930cbee3b9c..8362eff038e61 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.36.86", + "Version": "2.1.38.69", "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 1e75344f33b77..7273dbcb027d9 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.31.33", + "Version": "2.1.38.69", "Names": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 8feba99226b25..8bebb1ca0c51a 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Enez Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Enez Christmas", "CY": "Kiprenez", - "CZ": "Republik Tchek", + "CZ": "Tchekia", "DE": "Alamagn", "DG": "Diego Garcia", "DJ": "Djibouti", @@ -72,6 +72,7 @@ "ER": "Eritrea", "ES": "Spagn", "ET": "Etiopia", + "EZ": "takad an euro", "FI": "Finland", "FJ": "Fidji", "FK": "Inizi Falkland", @@ -236,6 +237,7 @@ "UA": "Ukraina", "UG": "Ouganda", "UM": "Inizi diabell ar Stadoù-Unanet", + "UN": "Broadoù unanet", "US": "Stadoù-Unanet", "UY": "Uruguay", "UZ": "Ouzbekistan", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 4fbad3e59a5c8..a73a81e738515 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ostrvo Ascension", "AD": "Andora", 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 f2a0590b93b1b..39413c42b856e 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.37.5", + "Version": "2.1.39.11", "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 b05522161e434..c6c6fcd042854 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.37.22", + "Version": "2.1.39.20", "Names": { "AC": "Illa de l’Ascensió", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index fec333eb94b06..86aa0341ab433 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.37.5", + "Version": "2.1.39.11", "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 2675e462b47f1..9d6899289ceee 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.37.11", + "Version": "2.1.39.15", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cy.json b/src/Symfony/Component/Intl/Resources/data/regions/cy.json index ad8d9a4dc5c21..b707a2dd7143f 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.37.17", + "Version": "2.1.39.11", "Names": { "AC": "Ynys Ascension", "AD": "Andorra", @@ -18,7 +18,7 @@ "AW": "Aruba", "AX": "Ynysoedd Åland", "AZ": "Azerbaijan", - "BA": "Bosnia a Herzegovina", + "BA": "Bosnia & Herzegovina", "BB": "Barbados", "BD": "Bangladesh", "BE": "Gwlad Belg", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 4facda4b1e94a..7994d129c6334 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.37.5", + "Version": "2.1.39.20", "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 1bc40b718aed4..c13a9edb986d1 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.37.96", + "Version": "2.1.39.41", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json b/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json index bec74a2999249..61261edf8cb97 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.37.6", + "Version": "2.1.38.39", "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 25c353aa38577..de7403935a99d 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.37.8", + "Version": "2.1.39.37", "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 2939bf3ff792e..e2e292ad0bc21 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.36.86", + "Version": "2.1.38.69", "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 2bfd77064737c..53cef01b73e07 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.37.1", + "Version": "2.1.39.11", "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 854d0aeeff023..a470d7b6ebeb7 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Νήσος Ασενσιόν", "AD": "Ανδόρα", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index 17b8878e53d5e..c8f3cb77d6aef 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.37.44", + "Version": "2.1.39.27", "Names": { "AC": "Ascension Island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json b/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json index 4fc248ea1a2a1..84d908b5ddcfd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "BL": "St Barthélemy", "KN": "St Kitts & Nevis", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index 1157714ed3098..a12993b8c9dc7 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.37.1", + "Version": "2.1.38.69", "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 a1fc8d090e192..083058458e3ac 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.37.22", + "Version": "2.1.39.20", "Names": { "AC": "Isla de la Ascensión", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json index c3e769120b595..3b0afed924741 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.37.22", + "Version": "2.1.38.39", "Names": { "AC": "Isla Ascensión", "BA": "Bosnia-Herzegovina", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json index f85187cbd7ac4..bc898c428a108 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.37.22", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 74f34d6238898..ae5b488e31fed 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.37.6", + "Version": "2.1.38.39", "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 56cd17a790056..bc898c428a108 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 83c9941af6876..6b0c66ccfc6e6 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.37.32", + "Version": "2.1.38.73", "Names": { "BA": "Bosnia y Herzegovina", "CI": "Côte d’Ivoire", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json index bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 2efee38e9164c..40a1330d3995e 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.37.6", + "Version": "2.1.38.39", "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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 2efee38e9164c..40a1330d3995e 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.37.6", + "Version": "2.1.38.39", "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 4c7b3d535f55e..b1325a4b7da2e 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.37.22", + "Version": "2.1.38.73", "Names": { "AC": "Isla de la Ascensión", "CI": "Côte d’Ivoire", 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 bd5200f9c3b2f..7685c507e39a4 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.37.6", + "Version": "2.1.38.39", "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 5f1778d2e2385..154c8ff11a5cf 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.37.22", + "Version": "2.1.39.11", "Names": { "AC": "Ascensioni saar", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eu.json b/src/Symfony/Component/Intl/Resources/data/regions/eu.json index c3cac4b927606..a345bca3a249a 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ascension uhartea", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index 435ee26cefd3b..3c020d7857dd1 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.37.5", + "Version": "2.1.39.11", "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 57a37843aeafe..d562a1128740d 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.37.6", + "Version": "2.1.38.39", "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 da0cb5ade2354..a51b76c6f56bf 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.37.1", + "Version": "2.1.39.11", "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 c7fcf26de6305..e8971298fdeb6 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.37.67", + "Version": "2.1.39.20", "Names": { "AC": "Ascension-saari", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index 3a3a3cf16a6df..e90c49b51210c 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -27,7 +27,7 @@ "BH": "Barein", "BI": "Burundi", "BJ": "Benin", - "BL": "St-Barthélemy", + "BL": "St. Barthélemy", "BM": "Bermuda", "BN": "Brunei", "BO": "Bolivia", @@ -64,7 +64,7 @@ "DM": "Dominika", "DO": "Dominikalýðveldið", "DZ": "Algeria", - "EA": "Ceuta og Melilla", + "EA": "Ceuta & Melilla", "EC": "Ekvador", "EE": "Estland", "EG": "Egyptaland", @@ -183,7 +183,7 @@ "PH": "Filipsoyggjar", "PK": "Pakistan", "PL": "Pólland", - "PM": "Saint Pierre og Miquelon", + "PM": "Saint Pierre & Miquelon", "PN": "Pitcairnoyggjar", "PR": "Puerto Riko", "PS": "Palestinskt landøki", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index d3b35b497329b..352312636665a 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.37.1", + "Version": "2.1.39.20", "Names": { "AC": "Île de l’Ascension", "AD": "Andorre", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json b/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json index f0587d8290330..40b65450f2db5 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.31.33", + "Version": "2.1.38.39", "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 c72210d6741ae..b82022bee00dd 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.37.22", + "Version": "2.1.38.73", "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 e3f24a83b671a..bf816d5542776 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.37.1", + "Version": "2.1.39.11", "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 2dc5a90d8e1cd..502e88e65f9cb 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.37.5", + "Version": "2.1.39.11", "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 5b18575185b03..7c42b18affe39 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Eilean na Deasgabhalach", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index 7364e8e91140c..f2c95c3ec25ae 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Illa de Ascensión", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index fd7887997ea31..a588299ce9772 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index d7a016bce806f..3ffe128e441c9 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.34.91", + "Version": "2.1.38.69", "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 4a7a133576441..4490b494547e9 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.37.1", + "Version": "2.1.39.11", "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 bbafc9a5fe388..cf28a392f2cf0 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.37.22", + "Version": "2.1.39.20", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index a434b7c3c3c2c..d21917284cdec 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "असेंशन द्वीप", "AD": "एंडोरा", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index 99d856056000e..d95a4b9dd8301 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -186,7 +186,7 @@ "PM": "Sveti Petar i Mikelon", "PN": "Otoci Pitcairn", "PR": "Portoriko", - "PS": "Palestinsko Područje", + "PS": "Palestinsko područje", "PT": "Portugal", "PW": "Palau", "PY": "Paragvaj", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index 2026fe800d66e..64fd49c62639f 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.37.5", + "Version": "2.1.39.20", "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 00ec66d471d23..e24bc7e9dc446 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.37.1", + "Version": "2.1.39.11", "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 ba7bb01ad5876..35ce14d8b9e74 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 9bfdfe03feee1..3fc4a11a6285e 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.37.1", + "Version": "2.1.38.69", "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 e2c8150e82264..a4f7cf1c4af99 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.37.1", + "Version": "2.1.38.69", "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 ba7bb01ad5876..35ce14d8b9e74 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index a9afeaf3efe32..2e58c99e291ef 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ascension-eyja", "AD": "Andorra", @@ -44,7 +44,7 @@ "CF": "Mið-Afríkulýðveldið", "CG": "Kongó-Brazzaville", "CH": "Sviss", - "CI": "Fílabeinsströndin", + "CI": "Côte d’Ivoire", "CK": "Cooks-eyjar", "CL": "Síle", "CM": "Kamerún", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index 7327238e86745..fe6e7438d6245 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.37.1", + "Version": "2.1.39.40", "Names": { "AC": "Isola Ascensione", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index bbafc9a5fe388..cf28a392f2cf0 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.37.22", + "Version": "2.1.39.20", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index f4a4235d0ec92..a5ccf21526ed5 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.37.1", + "Version": "2.1.39.20", "Names": { "AC": "アセンション島", "AD": "アンドラ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index e330fd998b56e..059c01949e569 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 0fb79a2809f03..8cb757dd0fe64 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.31.33", + "Version": "2.1.39.11", "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 bfa1336c1e0f6..8cd36f18ca83d 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Әскенжін аралы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kl.json b/src/Symfony/Component/Intl/Resources/data/regions/kl.json index 91ef2bc0f48b5..722ffeacbd101 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.37.1", + "Version": "2.1.38.69", "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 4dba79c8097fe..05c5092091519 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "កោះ​អាសេនសិន", "AD": "អង់ដូរ៉ា", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index 8d6ab6308b40c..548183e2ff7ee 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "ಅಸೆನ್ಶನ್ ದ್ವೀಪ", "AD": "ಅಂಡೋರಾ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index ee380c01e439f..1fb1a39b0b31f 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.37.5", + "Version": "2.1.39.20", "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 a9004cd204e3f..82188bb1919b5 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.31.33", + "Version": "2.1.38.39", "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 6277326e02cc1..6c0da75828d99 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.37.1", + "Version": "2.1.39.11", "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 152644b9807c7..5281f948e3357 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.31.33", + "Version": "2.1.38.69", "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 3dadf94b7df37..33ae2611291e2 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Вознесение аралы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index 9f8fa8f145804..0245d11143561 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.37.1", + "Version": "2.1.39.11", "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 3afaf3185a7f0..1fab8dc64aa31 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.31.33", + "Version": "2.1.39.11", "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 a079bec2370fd..b040df76cc886 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.37.1", + "Version": "2.1.39.11", "Names": { "AD": "Andorɛ", "AE": "Lɛmila alabo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index eb64b1ff2337b..7756792ab9f81 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "ເກາະອາເຊນຊັນ", "AD": "ອັນດໍຣາ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index c8d0a1199503e..59370d64af771 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.37.5", + "Version": "2.1.39.11", "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 5679762189841..66a55c512bdb6 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.37.1", + "Version": "2.1.39.11", "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 05b91ccffd48e..df0e0c598b373 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Debesbraukšanas sala", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index e1ba6bb6c949b..578d7f6734895 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.37.1", + "Version": "2.1.39.27", "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 9179b9280419c..c295be3a8ab61 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.37.1", + "Version": "2.1.39.11", "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 a36dca1448fd5..b03d2f47c21ca 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Остров Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ml.json b/src/Symfony/Component/Intl/Resources/data/regions/ml.json index 60a7f9a2a53b3..79fc31e42cb1f 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "അസൻഷൻ ദ്വീപ്", "AD": "അൻഡോറ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mn.json b/src/Symfony/Component/Intl/Resources/data/regions/mn.json index 0ea1301700b9d..f92b045b0c784 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Асенсион арал", "AD": "Андорра", @@ -212,7 +212,7 @@ "SO": "Сомали", "SR": "Суринам", "SS": "Өмнөд Судан", - "ST": "Сан-Томе ба Принсипи", + "ST": "Сан-Томе Принсипи", "SV": "Эль Сальвадор", "SX": "Синт Мартен", "SY": "Сири", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index c338a7619bde4..2e14b9e4223be 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.31.33", + "Version": "2.1.38.39", "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 b1b05ead5700c..a957a87625cf5 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.37.22", + "Version": "2.1.39.11", "Names": { "AC": "अ‍ॅसेन्शियन बेट", "AD": "अँडोरा", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index 2629889c58941..3d33e9a15c6e7 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mt.json b/src/Symfony/Component/Intl/Resources/data/regions/mt.json index 9723bb16a0961..f9fae72c2d575 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.37.1", + "Version": "2.1.39.11", "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 4402507c35965..85d06b918aeda 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "အဆန်းရှင်းကျွန်း", "AD": "အန်ဒိုရာ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index 82fb63ff6b66b..4964dded5ac09 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index f051dc3ea864d..044b6826189e3 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.31.33", + "Version": "2.1.39.11", "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 dc88ee90a3047..a07e675da7693 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "एस्केन्सन टापु", "AD": "अन्डोर्रा", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index 8311af1225e76..e5546b299c379 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.37.1", + "Version": "2.1.39.20", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index 294e7abe3d431..86dd61e79a253 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.37.5", + "Version": "2.1.39.11", "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 82fb63ff6b66b..4964dded5ac09 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 32885cf13e17b..9fc58329af14d 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.37.1", + "Version": "2.1.38.69", "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 86d3026449537..21fa28f03aa99 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.37.57", + "Version": "2.1.39.11", "Names": { "AC": "ଆସେନସିଅନ୍‌ ଦ୍ୱୀପ", "AD": "ଆଣ୍ଡୋରା", @@ -44,7 +44,7 @@ "CF": "ମଧ୍ୟ ଆଫ୍ରିକୀୟ ସାଧାରଣତନ୍ତ୍ର", "CG": "କଙ୍ଗୋ-ବ୍ରାଜିଭିଲ୍ଲେ", "CH": "ସ୍ୱିଜରଲ୍ୟାଣ୍ଡ", - "CI": "କୋଟେ ଡି ଆଇଭୋରି", + "CI": "କୋତ୍ ଡି ଭ୍ଵାର୍", "CK": "କୁକ୍‌ ଦ୍ୱୀପପୁଞ୍ଜ", "CL": "ଚିଲ୍ଲୀ", "CM": "କାମେରୁନ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index 2f7325024e81e..6858c4704cd02 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.37.1", + "Version": "2.1.38.69", "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 21308229d273d..a9d8a7e678f27 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.37.22", + "Version": "2.1.39.11", "Names": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json index 520ce5cdd0e18..07082f06a2844 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.37.1", + "Version": "2.1.38.69", "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 d85a1a4e8130f..26905881d6bbc 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.37.5", + "Version": "2.1.39.15", "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 5ac6fafe8016e..cdca91ad7bacf 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "د توغندیو ټاپو", "AD": "اندورا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt.json b/src/Symfony/Component/Intl/Resources/data/regions/pt.json index b0fb420ef048d..a6981a0078a37 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.37.1", + "Version": "2.1.39.20", "Names": { "AC": "Ilha de Ascensão", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json index 0cb60f1c611a9..b0223880bbc33 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.37.6", + "Version": "2.1.39.11", "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 183822d986a9d..2ea1a7b433c9d 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.37.5", + "Version": "2.1.38.72", "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 dbde8bbb8bdfe..54d63c4554e30 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.37.1", + "Version": "2.1.39.11", "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 84b24c32d8797..dc69587e5310d 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.37.1", + "Version": "2.1.39.11", "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 89c8c11fff08c..eed24364b6b3d 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Insula Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json index c338a7619bde4..2e14b9e4223be 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.31.33", + "Version": "2.1.38.39", "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 8763c7246199e..f54e92257c105 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.37.58", + "Version": "2.1.39.20", "Names": { "AC": "о-в Вознесения", "AD": "Андорра", @@ -184,7 +184,7 @@ "PK": "Пакистан", "PL": "Польша", "PM": "Сен-Пьер и Микелон", - "PN": "острова Питкэрн", + "PN": "о-ва Питкэрн", "PR": "Пуэрто-Рико", "PS": "Палестинские территории", "PT": "Португалия", 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 b48c3766814cb..81116beff84de 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.37.6", + "Version": "2.1.38.39", "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 12aa584f697b5..944f99c4e8dab 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.37.5", + "Version": "2.1.38.72", "Names": { "RW": "U Rwanda", "TO": "Tonga" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se.json b/src/Symfony/Component/Intl/Resources/data/regions/se.json index ee8af7e9af02e..1897e17bdf30a 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.37.1", + "Version": "2.1.38.69", "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 0d188c3a33ce9..5aba89f37403b 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.37.6", + "Version": "2.1.38.73", "Names": { "BA": "Bosnia ja Hercegovina", "EZ": "Euroavádat", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sg.json b/src/Symfony/Component/Intl/Resources/data/regions/sg.json index 81dc2124681f7..ade6ab95486fa 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.37.1", + "Version": "2.1.39.11", "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 1f77c905bc891..39cb5e416c26c 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.37.8", + "Version": "2.1.39.37", "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 e1eecd80fe0ae..391ccc6fe4441 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.37.8", + "Version": "2.1.38.69", "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 17218d3b81147..bf5c723f46dce 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "ඇසෙන්ෂන් දිවයින", "AD": "ඇන්ඩෝරාව", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index 7b527d40297f6..86a8c5ad1a08f 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.37.5", + "Version": "2.1.39.11", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index 0490197dbe85c..d77fbb0f87428 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.37.1", + "Version": "2.1.39.11", "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 4b64eeaee5fc0..fdc680fd07858 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.37.1", + "Version": "2.1.39.11", "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 b46507dd76ae6..fe2bf68c787f4 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.37.1", + "Version": "2.1.38.69", "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 3bef35b024611..7b6bd3e95a3fb 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Ishulli Asenshion", "AD": "Andorrë", @@ -27,7 +27,7 @@ "BH": "Bahrejn", "BI": "Burundi", "BJ": "Benin", - "BL": "Shën Bartolomeu", + "BL": "Shën-Bartolome", "BM": "Bermudë", "BN": "Brunei", "BO": "Bolivi", @@ -183,7 +183,7 @@ "PH": "Filipine", "PK": "Pakistan", "PL": "Poloni", - "PM": "Shën Pier dhe Mikelon", + "PM": "Shën-Pier dhe Mikelon", "PN": "Ishujt Pitkern", "PR": "Porto-Riko", "PS": "Territoret Palestineze", @@ -204,7 +204,7 @@ "SG": "Singapor", "SH": "Shën-Helenë", "SI": "Slloveni", - "SJ": "Svalbard dhe Jan-Majen", + "SJ": "Svalbard e Jan-Majen", "SK": "Sllovaki", "SL": "Siera-Leone", "SM": "San-Marino", @@ -212,7 +212,7 @@ "SO": "Somali", "SR": "Surinami", "SS": "Sudani i Jugut", - "ST": "Sao Tome dhe Principe", + "ST": "Sao-Tome e Principe", "SV": "Salvador", "SX": "Sint-Marten", "SY": "Siri", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index bbca6a7b8584f..26232a598cb38 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.37.5", + "Version": "2.1.39.11", "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 441cdc8ecd902..45a69e68da18c 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.37.6", + "Version": "2.1.38.69", "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 441cdc8ecd902..45a69e68da18c 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.37.6", + "Version": "2.1.38.69", "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 738c7946df2b9..f84567ef55118 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.37.6", + "Version": "2.1.38.69", "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 f67f65c99ad08..d34a623ad2113 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.37.6", + "Version": "2.1.38.69", "Names": { "CG": "Конго", "CV": "Кабо Верде", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json index 1f77c905bc891..39cb5e416c26c 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.37.8", + "Version": "2.1.39.37", "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 e1eecd80fe0ae..391ccc6fe4441 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.37.8", + "Version": "2.1.38.69", "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 56e274cf2be7d..040aff601d41c 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.37.8", + "Version": "2.1.38.69", "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 aaaf1f0b175d9..da074d2088c45 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.37.8", + "Version": "2.1.38.69", "Names": { "CG": "Kongo", "CV": "Kabo Verde", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json index 56e274cf2be7d..040aff601d41c 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.37.8", + "Version": "2.1.38.69", "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 f67f65c99ad08..d34a623ad2113 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.37.6", + "Version": "2.1.38.69", "Names": { "CG": "Конго", "CV": "Кабо Верде", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index 055c7afbfa06e..af919a86b366e 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.37.5", + "Version": "2.1.39.20", "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 5188b29d91ecb..78eebdaa8979d 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.37.34", + "Version": "2.1.39.11", "Names": { "AC": "Kisiwa cha Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json index c623f45a0b209..a594f4a53fdf6 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.37.6", + "Version": "2.1.39.11", "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 98dae9f58fb9b..6a13cd32f652a 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.37.6", + "Version": "2.1.38.39", "Names": { "AQ": "Antaktika", "AZ": "Azabajani", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index 25891e66b9573..440df72d4f18f 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "அஷன்ஷியன் தீவு", "AD": "அன்டோரா", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index e9eff22102608..25dd319333cc2 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.36.86", + "Version": "2.1.39.11", "Names": { "AC": "అసెన్షన్ దీవి", "AD": "ఆండోరా", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tg.json b/src/Symfony/Component/Intl/Resources/data/regions/tg.json index b9d4aba2791be..0bc0d142e5235 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "AC": "Асунсон", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index 4e32b10438898..8230d31f7e084 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.37.56", + "Version": "2.1.39.20", "Names": { "AC": "เกาะแอสเซนชัน", "AD": "อันดอร์รา", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ti.json b/src/Symfony/Component/Intl/Resources/data/regions/ti.json index 94845318f1e82..a9162136e4160 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.5", + "Version": "2.1.38.72", "Names": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index ccd3e4df9469d..23e34fc5f91b3 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Acsencion island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/to.json b/src/Symfony/Component/Intl/Resources/data/regions/to.json index ae68a21d6e891..5b63c0201836c 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.37.5", + "Version": "2.1.38.39", "Names": { "AC": "Motu ʻAsenisini", "AD": "ʻAnitola", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index 6ee0046833ade..79d8c1aec0a6e 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Ascension Adası", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tt.json b/src/Symfony/Component/Intl/Resources/data/regions/tt.json index caf0790e4ebbd..6ee5f406986a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.5", + "Version": "2.1.38.72", "Names": { "AD": "Андорра", "AE": "Берләшкән Гарәп Әмирлекләре", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ug.json b/src/Symfony/Component/Intl/Resources/data/regions/ug.json index 160d3d4eef4b2..f338015e9fc3e 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.37.5", + "Version": "2.1.39.11", "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 60ce8f149bc8c..a47cb392c1e3a 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.37.12", + "Version": "2.1.39.20", "Names": { "AC": "Острів Вознесіння", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur.json b/src/Symfony/Component/Intl/Resources/data/regions/ur.json index 89fbae8bf9059..c23df5b5407cc 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.37.69", + "Version": "2.1.39.11", "Names": { "AC": "اسینشن آئلینڈ", "AD": "انڈورا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json index 88ccc32e2392b..f916f59b9cbd2 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.37.6", + "Version": "2.1.38.39", "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 ea00440e2dd37..a93829d4ef9d3 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "Me’roj oroli", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json index fbf4d99cc061b..fbae2ab8d5b9a 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.36.86", + "Version": "2.1.38.69", "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 5bfb9f50838a3..57020b5386d28 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.37.1", + "Version": "2.1.38.69", "Names": { "AC": "Меърож ороли", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/vi.json b/src/Symfony/Component/Intl/Resources/data/regions/vi.json index 4145215c7f453..f49cb2b04f86e 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "Đảo Ascension", "AD": "Andorra", @@ -12,7 +12,7 @@ "AO": "Angola", "AQ": "Nam Cực", "AR": "Argentina", - "AS": "Đảo Somoa thuộc Mỹ", + "AS": "Samoa thuộc Mỹ", "AT": "Áo", "AU": "Australia", "AW": "Aruba", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/wo.json b/src/Symfony/Component/Intl/Resources/data/regions/wo.json index 26234d2f388a7..c3bedd8146089 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "AD": "Andoor", "AE": "Emira Arab Ini", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yi.json b/src/Symfony/Component/Intl/Resources/data/regions/yi.json index 006e9835f056e..1bc9a02eb83a6 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.37.1", + "Version": "2.1.38.69", "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 3dabbf97f38a6..93c8f2231d37f 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.37.1", + "Version": "2.1.39.11", "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 cc8b93ef43bcd..b3572cc1a1ec8 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.37.9", + "Version": "2.1.39.11", "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 e1fc2998102fc..4ecff448955ef 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.37.42", + "Version": "2.1.39.20", "Names": { "AC": "阿森松岛", "AD": "安道尔", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json index dda56c9294566..8d4cb91011495 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.37.6", + "Version": "2.1.39.11", "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 4703d826411d9..f7cefb9282ab2 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.37.5", + "Version": "2.1.39.20", "Names": { "AC": "阿森松島", "AD": "安道爾", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json index dda56c9294566..8d4cb91011495 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.37.6", + "Version": "2.1.39.11", "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 2e910a6fdad87..bfc219a289604 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.37.1", + "Version": "2.1.39.11", "Names": { "AC": "i-Ascension Island", "AD": "i-Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index f3cbf6254afd8..a673f0160c35c 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.37.5", + "Version": "2.1.39.11", "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 4a1fab10a8df1..78cb36500b713 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.37.5", + "Version": "2.1.39.11", "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 4b148de5b0128..d15ce22650fd5 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.36.86", + "Version": "2.1.39.20", "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 c2ac2ab0f4540..d7fadb3be12c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/as.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/as.json @@ -1,6 +1,49 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { - "Beng": "বঙালী" + "Arab": "আৰবী", + "Armn": "আৰ্মেনীয়", + "Beng": "বাংলা", + "Bopo": "বোপোমোফো", + "Brai": "ব্ৰেইল", + "Cyrl": "চিৰিলিক", + "Deva": "দেৱনাগৰী", + "Ethi": "ইথিঅ’পিক", + "Geor": "জৰ্জিয়ান", + "Grek": "গ্ৰীক", + "Gujr": "গুজৰাটী", + "Guru": "গুৰুমুখী", + "Hanb": "বোপোমোফোৰ সৈতে হান", + "Hang": "হেঙ্গুল", + "Hani": "হান", + "Hans": "সৰলীকৃত", + "Hant": "পৰম্পৰাগত", + "Hebr": "হিব্ৰু", + "Hira": "হিৰাগানা", + "Hrkt": "জাপানী ছিলেবেৰিজ", + "Jamo": "জামো", + "Jpan": "জাপানী", + "Kana": "কাটাকানা", + "Khmr": "খমেৰ", + "Knda": "কানাড়া", + "Kore": "কোৰিয়ান", + "Laoo": "লাও", + "Latn": "লেটিন", + "Mlym": "মালায়ালম", + "Mong": "মঙ্গোলিয়", + "Mymr": "ম্যানমাৰ", + "Orya": "ওড়িয়া", + "Sinh": "সিংহলী", + "Taml": "তামিল", + "Telu": "তেলুগু", + "Thaa": "থানা", + "Thai": "থাই", + "Tibt": "তিব্বতী", + "Zmth": "গাণিতিক চিহ্ন", + "Zsye": "ইম’জি", + "Zsym": "প্ৰতীক", + "Zxxx": "অলিখিত", + "Zyyy": "কোমোন", + "Zzzz": "অজ্ঞাত লিপি" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az.json b/src/Symfony/Component/Intl/Resources/data/scripts/az.json index 6b8669a598a4d..e2a08bc031f77 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.37.1", + "Version": "2.1.39.11", "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 72fdd12a6aba3..90710a94c3fc1 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.37.1", + "Version": "2.1.38.69", "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 a4fc672cfc4c7..d56aae85d5bb2 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.37.5", + "Version": "2.1.39.11", "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 556577f51bf21..e410e101e2ffe 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.37.59", + "Version": "2.1.39.11", "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 ad0cac31a1da3..49f615d202024 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.36.86", + "Version": "2.1.39.11", "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 a5ac116f5372c..ca701735e3afe 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.36.86", + "Version": "2.1.38.69", "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 5937863246226..e1eedf62bd2bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/br.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/br.json @@ -1,11 +1,13 @@ { - "Version": "2.1.37.1", + "Version": "2.1.39.11", "Names": { + "Adlm": "adlam", "Arab": "arabek", "Armi": "arameek impalaerel", "Armn": "armenianek", "Avst": "avestek", "Bali": "balinek", + "Bamu": "bamounek", "Beng": "bengali", "Bopo": "bopomofo", "Brai": "Braille", @@ -22,6 +24,7 @@ "Grek": "gresianek", "Gujr": "gujarati", "Guru": "gurmukhi", + "Hanb": "han gant bopomofo", "Hang": "hangeul", "Hani": "han", "Hans": "eeunaet", @@ -29,7 +32,9 @@ "Hebr": "hebraek", "Hira": "hiragana", "Hluw": "hieroglifoù Anatolia", + "Hrkt": "silabennaouegoù japanek", "Ital": "henitalek", + "Jamo": "jamo", "Java": "javanek", "Jpan": "japanek", "Kana": "katakana", @@ -62,6 +67,7 @@ "Vaii": "vai", "Xpeo": "persek kozh", "Zmth": "notadur jedoniel", + "Zsye": "fromlunioù", "Zsym": "arouezioù", "Zxxx": "anskrivet", "Zyyy": "boutin", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index 0efffd3c3d6bd..4dc0e7471f36d 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.37.5", + "Version": "2.1.39.11", "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 4f1274b335ff4..d9d4f6ad85866 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.37.5", + "Version": "2.1.39.11", "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 723a4533bb100..9cf70f5b954cf 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.37.22", + "Version": "2.1.39.20", "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 d1cfafe3a81df..5bfa9ed8f99b5 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.37.5", + "Version": "2.1.39.11", "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 aa9a3b74f7475..39e01b99a6bca 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.37.11", + "Version": "2.1.39.15", "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 74cc3252e95d1..4cad1142b15bc 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.37.17", + "Version": "2.1.39.11", "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 a97f3777067ed..846ecc4306702 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.37.5", + "Version": "2.1.39.20", "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 735ee0fdcf61d..02fc8a225e35e 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.37.96", + "Version": "2.1.39.41", "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 1d6c018f23f5d..9501061a66830 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.36.86", + "Version": "2.1.38.69", "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 928eefa3d2039..81cb17c9cbf72 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.37.1", + "Version": "2.1.39.11", "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 87f31cd3e891c..7032aad04104e 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.37.5", + "Version": "2.1.39.20", "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 dd598d2c804aa..935fb4ee47f93 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.37.44", + "Version": "2.1.39.27", "Names": { "Adlm": "Adlam", "Afak": "Afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json index 3d1ddf8207a67..2491e94fff76c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.6", + "Version": "2.1.38.73", "Names": { "Beng": "Bengali" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json index 464fec40b2dd1..8b02bfeee5f9d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "Thai": "Thai" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json index cc955117166eb..15667fdf0b59c 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.37.11", + "Version": "2.1.38.73", "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 aea0adbe910c6..b174d99fc27c4 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.37.22", + "Version": "2.1.39.20", "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 49bfcba3bf871..83367f3382e0a 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.37.22", + "Version": "2.1.38.39", "Names": { "Hanb": "han con bopomofo", "Hrkt": "katakana o hiragana", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json index 98cecfb5e86b6..1ae4f7b965473 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.37.32", + "Version": "2.1.38.73", "Names": { "Hanb": "hanb", "Mlym": "malayálam", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json index f23210b67151c..782a54fa2b780 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.22", + "Version": "2.1.38.73", "Names": { "Hanb": "hanb", "Mlym": "malayálam" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index 69d4e021830b2..6b40dff5e7a6a 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.37.22", + "Version": "2.1.39.11", "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 5c76971e38b44..76eaac574f01a 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.37.5", + "Version": "2.1.39.11", "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 5480b63f88db9..97768fa3793a2 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.37.5", + "Version": "2.1.39.11", "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 bcca228f2fc9d..be133437808b3 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.37.6", + "Version": "2.1.38.39", "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 100045a613f17..d196ed733f059 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.37.67", + "Version": "2.1.39.20", "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 3fb77501bc09d..fc3da37eb38cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json @@ -1,9 +1,9 @@ { - "Version": "2.1.37.5", + "Version": "2.1.39.11", "Names": { "Arab": "arabisk", "Armn": "armenskt", - "Beng": "bengali", + "Beng": "bangla", "Bopo": "bopomofo", "Brai": "blindaskrift", "Cyrl": "kyrilliskt", @@ -32,7 +32,7 @@ "Mlym": "malayalam", "Mong": "mongolsk", "Mymr": "myanmarskt", - "Orya": "oriya", + "Orya": "odia", "Sinh": "sinhala", "Taml": "tamilskt", "Telu": "telugu", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json index b519596fedabc..a85ad1f164923 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.37.1", + "Version": "2.1.39.20", "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 c1f36b68c3d8d..1923c30b95de1 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.37.22", + "Version": "2.1.38.73", "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 2448aee46a079..4d6ef0634107e 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.37.1", + "Version": "2.1.39.11", "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 144faf54f52ec..68a488b4120a5 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.37.5", + "Version": "2.1.39.11", "Names": { "Adlm": "Adlm", "Aghb": "Albánach Cugasach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index aa819beab45d7..ce25947cd18b8 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.37.1", + "Version": "2.1.39.11", "Names": { "Adlm": "Adlam", "Afak": "Afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index 2e3c465f9acf9..d4cdb034238ec 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.37.1", + "Version": "2.1.39.11", "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 54389bc821e51..fe525ef5beb54 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.36.86", + "Version": "2.1.39.11", "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 1449f4e513264..2212d2185750a 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.37.22", + "Version": "2.1.39.20", "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 8a31a47c425c8..93485a5b03e23 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.36.86", + "Version": "2.1.39.11", "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 2a264851d5b06..106b2ec0d02f7 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.37.1", + "Version": "2.1.39.11", "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 88da3a8e3d680..d616bbb947bea 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.37.5", + "Version": "2.1.39.20", "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 cae86f82b78c2..f91541fae62df 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.37.1", + "Version": "2.1.39.11", "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 3d7acd1abd1ad..96dba5177ecdb 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.37.5", + "Version": "2.1.39.20", "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 d212237a66f42..68db106a9d6ae 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.37.1", + "Version": "2.1.38.69", "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 3d7acd1abd1ad..96dba5177ecdb 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.37.5", + "Version": "2.1.39.20", "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 9b6fe436acfbc..5c9454756311c 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.37.5", + "Version": "2.1.39.11", "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 dfa30f27568f9..5c970930e949f 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.37.1", + "Version": "2.1.39.40", "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 1449f4e513264..2212d2185750a 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.37.22", + "Version": "2.1.39.20", "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 2de5ddcf72e96..41a3733e5a2d6 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.37.1", + "Version": "2.1.39.20", "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 881b6bbb2e8a2..d809825d6daac 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.37.1", + "Version": "2.1.39.11", "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 c049999e7cd81..72f4d79401a87 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.37.5", + "Version": "2.1.39.11", "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 e5e16f1e892a7..e4de4708ab4c0 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.37.5", + "Version": "2.1.39.11", "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 44a0759970233..bc78a971d10ea 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.37.5", + "Version": "2.1.39.11", "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 87f8da67d8be9..8bf9bd250ee46 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.37.5", + "Version": "2.1.39.20", "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 94bc61207d249..d3f02258ae97e 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.37.1", + "Version": "2.1.39.11", "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 70daaf4951361..68374dfba2514 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.37.5", + "Version": "2.1.39.11", "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 dae5dfabfcabd..6d0f4d64dd50f 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.37.1", + "Version": "2.1.39.11", "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 b92a82faab252..b66769a4aac2e 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.37.1", + "Version": "2.1.39.11", "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 4964ab1db1afb..112f36454736e 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.37.5", + "Version": "2.1.39.11", "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 70c30802b4221..e2e29b670e3d1 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.37.5", + "Version": "2.1.39.11", "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 11a7ab9eee54c..5bbb30ab41dfd 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.37.1", + "Version": "2.1.39.27", "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 0c4f6521cbd6b..ba20168c933d6 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.37.5", + "Version": "2.1.39.11", "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 8a3fb8f6bbc60..62f7b84589bc1 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.36.86", + "Version": "2.1.39.11", "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 f1a13a9b51980..8bd5d2457f7e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json @@ -1,9 +1,9 @@ { - "Version": "2.1.37.1", + "Version": "2.1.39.11", "Names": { "Arab": "араб", "Armn": "армени", - "Beng": "бенгал", + "Beng": "бенгал хэл", "Bopo": "вопомофо", "Brai": "брайл", "Cyrl": "кирилл", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index 8a8806c484b4e..93b36d661d9aa 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.37.22", + "Version": "2.1.39.11", "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 1a611379f1431..891d11f469c21 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.37.5", + "Version": "2.1.39.20", "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 a65090affff43..e2d54fd0d6e57 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.37.1", + "Version": "2.1.39.11", "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 d8cb0513f919c..b22d405907562 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.37.5", + "Version": "2.1.39.11", "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 ac636fe5fb6a7..a7a60c33f9eb2 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.37.5", + "Version": "2.1.39.20", "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 6bf67b76681d0..00f5e56a4f88a 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.36.86", + "Version": "2.1.39.11", "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 1eacdbf68f9bd..4d46cb07ccd2c 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.37.1", + "Version": "2.1.39.20", "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 98d5bb4047cad..38211d5070009 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.37.5", + "Version": "2.1.39.11", "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 ac636fe5fb6a7..a7a60c33f9eb2 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.37.5", + "Version": "2.1.39.20", "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 374db0e8d9e9e..6460d1b228ea8 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.37.1", + "Version": "2.1.38.69", "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 aa38ecae873ea..aa1310fc515df 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/or.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/or.json @@ -1,9 +1,9 @@ { - "Version": "2.1.37.57", + "Version": "2.1.39.11", "Names": { "Arab": "ଆରବିକ୍", "Armi": "ଇମ୍ପେରିଆଲ୍ ଆରମିକ୍", - "Armn": "ଆର୍ମେନିଆନ୍", + "Armn": "ଆର୍ମେନୀୟ", "Avst": "ଆବେସ୍ଥାନ୍", "Bali": "ବାଲିନୀଜ୍", "Batk": "ବାଟାକ୍", @@ -11,7 +11,7 @@ "Blis": "ବ୍ଲିସିମ୍ବଲସ୍", "Bopo": "ବୋପୋମୋଫୋ", "Brah": "ବ୍ରାହ୍ମୀ", - "Brai": "ବ୍ରେଲି", + "Brai": "ବ୍ରେଲ୍", "Bugi": "ବୁଗାନୀଜ୍", "Buhd": "ବୁହିଦ୍", "Cakm": "ଚକମା", @@ -24,29 +24,29 @@ "Cprt": "ସିପ୍ରଅଟ୍", "Cyrl": "ସିରିଲିକ୍", "Cyrs": "ଓଲ୍ଡ ଚର୍ଚ୍ଚ ସାଲଭୋନିକ୍ ସିରିଲିକ୍", - "Deva": "ଦେବନାଗରୀ", + "Deva": "ଦେବନଗରୀ", "Dsrt": "ଡେସର୍ଟ", "Egyd": "ଇଜିପ୍ଟିଆନ୍ ଡେମୋଟିକ୍", "Egyh": "ଇଜିପ୍ଟିଆନ୍ ହାଇଅରଟିକ୍", "Egyp": "ଇଜିପ୍ଟିଆନ୍ ହାଅରଗ୍ଲିପସ୍", "Ethi": "ଇଥୋପିକ୍", "Geok": "ଜର୍ଜିଆନ୍ ଖୁଟସୁରୀ", - "Geor": "ଜର୍ଜିଆନ୍", + "Geor": "ଜର୍ଜିୟ", "Glag": "ଗ୍ଲାଗ୍ଲୋଟିକ୍", "Goth": "ଗୋଥିକ୍", "Grek": "ଗ୍ରୀକ୍", "Gujr": "ଗୁଜୁରାଟୀ", - "Guru": "ଗୁରୁମୁଖୀ", + "Guru": "ଗୁରମୁଖୀ", "Hanb": "ବୋପୋମୋଫୋ ସହିତ ହାନ୍‌", "Hang": "ହାଙ୍ଗୁଲ୍", "Hani": "ହାନ୍", "Hano": "ହାନୁନ୍", "Hans": "ସରଳୀକୃତ", "Hant": "ପାରମ୍ପରିକ", - "Hebr": "ହେବ୍ର୍ୟୁ", + "Hebr": "ହିବୃ", "Hira": "ହିରାଗାନା", "Hmng": "ପାହୋ ହୋଙ୍ଗ", - "Hrkt": "ଜାପାନିଜ୍‌ ସିଲ୍ଲାବେରିଜ୍‌", + "Hrkt": "ଜାପାନୀ ସିଲାବରିଜ୍‌", "Hung": "ପୁରୁଣା ହଙ୍ଗେରିଆନ୍", "Inds": "ସିନ୍ଧୁ", "Ital": "ପୁରୁଣା ଇଟାଲୀ", @@ -54,10 +54,10 @@ "Java": "ଜାଭାନୀଜ୍", "Jpan": "ଜାପାନୀଜ୍", "Kali": "କାୟାହା ଲୀ", - "Kana": "କାଟକାନ୍", + "Kana": "କାତାକାନା", "Khar": "ଖାରୋସ୍ଥି", - "Khmr": "ଖାମେର୍", - "Knda": "କନ୍ନଡ", + "Khmr": "ଖମେର୍", + "Knda": "କନ୍ନଡ଼", "Kore": "କୋରିଆନ୍", "Kthi": "କୈଥି", "Lana": "ଲାନା", @@ -75,11 +75,11 @@ "Mani": "ମନଶୀନ୍", "Maya": "ମୟାନ୍ ହାୟରଲଜିକସ୍", "Mero": "ମେରୋଇଟିକ୍", - "Mlym": "ମାଲୟଲମ୍", + "Mlym": "ମଲୟାଲମ୍", "Mong": "ମଙ୍ଗୋଲିଆନ୍", "Moon": "ଚନ୍ଦ୍ର", "Mtei": "ମାଏତି ମାୟେକ୍", - "Mymr": "ମିଆଁମାର୍‌", + "Mymr": "ମ୍ୟାନମାର୍", "Nkoo": "ଏନ୍ କୋ", "Ogam": "ଓଘାମା", "Olck": "ଓଲ୍ ଚିକି", @@ -102,7 +102,7 @@ "Saur": "ସୌରାଷ୍ଟ୍ର", "Sgnw": "ସାଙ୍କେତିକ ଲିଖ", "Shaw": "ସାବିୟାନ୍", - "Sinh": "ସିଂହଳ", + "Sinh": "ସିଂହାଲା", "Sund": "ସୁଦାନୀଜ୍", "Sylo": "ସୀଲିତୋ ନଗରୀ", "Syrc": "ସିରିୟାକ୍", @@ -112,7 +112,7 @@ "Tagb": "ତଗବାନ୍ୱା", "Tale": "ତାଇ ଲେ", "Talu": "ନୂତନ ତାଇ ଲୁଏ", - "Taml": "ତାମିଲ", + "Taml": "ତାମିଲ୍", "Tavt": "ତାଇ ଭିଏତ୍", "Telu": "ତେଲୁଗୁ", "Teng": "ତେଙ୍ଗୱାର୍", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/os.json b/src/Symfony/Component/Intl/Resources/data/scripts/os.json index 52cf52ce0b83f..63f5b2eee5e31 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.37.1", + "Version": "2.1.38.69", "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 233ab84948db1..1f09e491bce80 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.37.22", + "Version": "2.1.39.11", "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 a0479eabc95fd..ce3cd3af361a7 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.37.1", + "Version": "2.1.38.69", "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 5bcebdb667e80..e797e10c46b64 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.37.5", + "Version": "2.1.39.15", "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 6a9844e89698a..9f5422c641039 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.36.86", + "Version": "2.1.39.11", "Names": { "Arab": "عربي", "Armn": "ارمانیایي", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index e6dd408e6134b..293a97d400014 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.37.1", + "Version": "2.1.39.20", "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 d360695e89a71..3977c81c8514f 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.37.6", + "Version": "2.1.39.11", "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 9753fb3b53664..eab31114c06ba 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.37.1", + "Version": "2.1.39.11", "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 31eafebbbe9cd..2f5125b8490f0 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.37.5", + "Version": "2.1.39.20", "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 05aefc77a4a29..5ce2b43614dfc 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.37.58", + "Version": "2.1.39.20", "Names": { "Afak": "афака", "Arab": "арабица", @@ -46,8 +46,8 @@ "Hang": "хангыль", "Hani": "китайская", "Hano": "хануну", - "Hans": "упрощенный", - "Hant": "традиционный", + "Hans": "упрощенная китайская", + "Hant": "традиционная китайская", "Hebr": "еврейская", "Hira": "хирагана", "Hluw": "лувийские иероглифы", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se.json b/src/Symfony/Component/Intl/Resources/data/scripts/se.json index 772e41e3e95a5..aaafadec4471b 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.37.1", + "Version": "2.1.38.69", "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 87331d951954b..45a0d837d1b63 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.37.6", + "Version": "2.1.38.73", "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 0a9e4d8676270..7b87fb0405050 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.37.8", + "Version": "2.1.39.37", "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 9d151d507602c..91d3a1b1cc309 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.37.5", + "Version": "2.1.39.11", "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 609556aac9202..ac6143c5b7ae2 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.37.5", + "Version": "2.1.39.11", "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 fb5a63294602b..1840e397ecf77 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.37.1", + "Version": "2.1.39.11", "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 1f8627488c081..c5176a188ae61 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.37.1", + "Version": "2.1.38.69", "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 299f11039a822..0fa699b70e454 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.37.1", + "Version": "2.1.39.11", "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 9fb18565ed3c1..072b2fa1079eb 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.37.5", + "Version": "2.1.39.11", "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 0a9e4d8676270..7b87fb0405050 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.37.8", + "Version": "2.1.39.37", "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 979da404c3e53..80a0c8b13bbfb 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.37.5", + "Version": "2.1.39.20", "Names": { "Adlm": "adlamiska", "Afak": "afakiska", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index 26ba1ce248b2b..557aba70f24be 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.37.34", + "Version": "2.1.39.11", "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 2438b300a9eab..1707d6ccaa719 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.36.86", + "Version": "2.1.39.11", "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 aa363828fb9cb..1da8028bc8d01 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.36.86", + "Version": "2.1.39.11", "Names": { "Arab": "అరబిక్", "Armi": "ఇంపీరియల్ అరామాక్", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tg.json b/src/Symfony/Component/Intl/Resources/data/scripts/tg.json index 197764af32141..4de6354f28f09 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "Arab": "Арабӣ", "Cyrl": "Кириллӣ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/th.json b/src/Symfony/Component/Intl/Resources/data/scripts/th.json index ae31a67948b44..7197f26d2244d 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.37.56", + "Version": "2.1.39.20", "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 d669761cbe239..18d98321ead53 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.37.5", + "Version": "2.1.38.72", "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 24df7a789ccc3..618cc33b9601a 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.37.1", + "Version": "2.1.39.11", "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 2f3377b4fecb9..f71011d264508 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.37.5", + "Version": "2.1.38.39", "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 2455f7f32d0aa..ab1df5e86c5fd 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.37.5", + "Version": "2.1.39.20", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json index f59f3c7efc6a2..091edc48236d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.5", + "Version": "2.1.38.72", "Names": { "Arab": "гарәп", "Cyrl": "кирилл", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json index 55d01ad7729dc..4a061d621e69b 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.37.5", + "Version": "2.1.39.11", "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 13cf589113c41..e04a68f5d309f 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.37.12", + "Version": "2.1.39.20", "Names": { "Adlm": "адлам", "Afak": "афака", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index 7c26e92044e05..c529c1c7ecada 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.37.69", + "Version": "2.1.39.11", "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 dcc0d53c9fea5..08f95d04e5749 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.37.1", + "Version": "2.1.39.11", "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 6d651741acfc9..b25a61d8bceb5 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.36.86", + "Version": "2.1.38.69", "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 cd835b5665615..c532c52387e68 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.37.1", + "Version": "2.1.38.69", "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 be5a5f5e96df1..344b1e4331ea3 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.37.5", + "Version": "2.1.39.20", "Names": { "Afak": "Chữ Afaka", "Arab": "Chữ Ả Rập", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json index 54c7bd1e58cfc..dcfdce97ecf6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/wo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/wo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.37.4", + "Version": "2.1.38.71", "Names": { "Arab": "Araab", "Cyrl": "Sirilik", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json index 766280ddea96e..e643b53387fc9 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.37.1", + "Version": "2.1.38.69", "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 e1382f6c8a7aa..56c180d82b38d 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.37.42", + "Version": "2.1.39.20", "Names": { "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 e89fe5c4e179d..bf0b06ca43642 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.37.6", + "Version": "2.1.39.11", "Names": { "Cyrl": "西里爾文", "Ethi": "埃塞俄比亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json index 4dda6f25c37a8..ae409e05bfb9d 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.37.5", + "Version": "2.1.39.20", "Names": { "Adlm": "富拉文", "Afak": "阿法卡文字", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json index e89fe5c4e179d..bf0b06ca43642 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.37.6", + "Version": "2.1.39.11", "Names": { "Cyrl": "西里爾文", "Ethi": "埃塞俄比亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json index 5c7c8f20fd8a8..30ece0ab8ec05 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.37.1", + "Version": "2.1.39.11", "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 1bfc195f5bda1..0064d80facaa8 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-60-2/icu4c/source -Revision: 40727 -Author: yoshito -Date: 2017-12-13T20:01:38.026283Z +URL: http://source.icu-project.org/repos/icu/tags/release-61-1/icu4c/source +Revision: 41146 +Author: heninger +Date: 2018-03-23T22:14:04.032868Z diff --git a/src/Symfony/Component/Intl/Resources/data/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 76887d82ad20d..721381cdd70ea 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -60.2 +61.1 diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php index f6c1eea68a5da..a802ee7110884 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractCurrencyDataProviderTest.php @@ -194,6 +194,7 @@ abstract class AbstractCurrencyDataProviderTest extends AbstractDataProviderTest 'MNT', 'MOP', 'MRO', + 'MRU', 'MTL', 'MTP', 'MUR', @@ -525,6 +526,8 @@ abstract class AbstractCurrencyDataProviderTest extends AbstractDataProviderTest 'YUD' => 891, 'ZMK' => 894, 'TWD' => 901, + 'MRU' => 929, + 'STN' => 930, 'CUC' => 931, 'ZWL' => 932, 'BYN' => 933, diff --git a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php index ab8684b99f23e..f328ebb484e17 100644 --- a/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php +++ b/src/Symfony/Component/Intl/Tests/Data/Provider/AbstractLanguageDataProviderTest.php @@ -534,6 +534,7 @@ abstract class AbstractLanguageDataProviderTest extends AbstractDataProviderTest 'sog', 'sq', 'sr', + 'sr_ME', 'srn', 'srr', 'ss', From 1ffdb5034157fbb4478e11cb67f9f9bef09f6d90 Mon Sep 17 00:00:00 2001 From: Robin Chalas Date: Mon, 19 Mar 2018 10:44:01 +0100 Subject: [PATCH 080/104] [DI] Do not suggest writing an implementation when multiple exist --- .../DependencyInjection/Compiler/AutowirePass.php | 5 +++-- .../Tests/Compiler/AutowirePassTest.php | 14 +++++++++----- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php index b29bba5efdd21..8bfc3cd9d9677 100644 --- a/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php +++ b/src/Symfony/Component/DependencyInjection/Compiler/AutowirePass.php @@ -462,10 +462,11 @@ private function createTypeNotFoundMessage(TypedReference $reference, $label) $message = sprintf('has type "%s" but this class %s.', $type, $parentMsg ? sprintf('is missing a parent class (%s)', $parentMsg) : 'was not found'); } else { + $alternatives = $this->createTypeAlternatives($reference); $message = $this->container->has($type) ? 'this service is abstract' : 'no such service exists'; - $message = sprintf('references %s "%s" but %s.%s', $r->isInterface() ? 'interface' : 'class', $type, $message, $this->createTypeAlternatives($reference)); + $message = sprintf('references %s "%s" but %s.%s', $r->isInterface() ? 'interface' : 'class', $type, $message, $alternatives); - if ($r->isInterface()) { + if ($r->isInterface() && !$alternatives) { $message .= ' Did you create a class that implements this interface?'; } } diff --git a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php index 36382a00454e9..ee0b4baef8452 100644 --- a/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php +++ b/src/Symfony/Component/DependencyInjection/Tests/Compiler/AutowirePassTest.php @@ -17,6 +17,7 @@ use Symfony\Component\DependencyInjection\Compiler\AutowirePass; use Symfony\Component\DependencyInjection\Compiler\ResolveClassPass; use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\Exception\AutowiringFailedException; use Symfony\Component\DependencyInjection\Exception\RuntimeException; use Symfony\Component\DependencyInjection\Loader\XmlFileLoader; use Symfony\Component\DependencyInjection\Reference; @@ -684,10 +685,6 @@ public function testIgnoreServiceWithClassNotExisting() $this->assertTrue($container->hasDefinition('bar')); } - /** - * @expectedException \Symfony\Component\DependencyInjection\Exception\AutowiringFailedException - * @expectedExceptionMessage Cannot autowire service "setter_injection_collision": argument "$collision" of method "Symfony\Component\DependencyInjection\Tests\Compiler\SetterInjectionCollision::setMultipleInstancesForOneArg()" references interface "Symfony\Component\DependencyInjection\Tests\Compiler\CollisionInterface" but no such service exists. You should maybe alias this interface to one of these existing services: "c1", "c2". - */ public function testSetterInjectionCollisionThrowsException() { $container = new ContainerBuilder(); @@ -700,7 +697,14 @@ public function testSetterInjectionCollisionThrowsException() (new AutowireRequiredMethodsPass())->process($container); $pass = new AutowirePass(); - $pass->process($container); + + try { + $pass->process($container); + } catch (AutowiringFailedException $e) { + } + + $this->assertNotNull($e); + $this->assertSame('Cannot autowire service "setter_injection_collision": argument "$collision" of method "Symfony\Component\DependencyInjection\Tests\Compiler\SetterInjectionCollision::setMultipleInstancesForOneArg()" references interface "Symfony\Component\DependencyInjection\Tests\Compiler\CollisionInterface" but no such service exists. You should maybe alias this interface to one of these existing services: "c1", "c2".', $e->getMessage()); } /** From b678f7f83948dd7146fedbe7cd76bd3d8a9f2781 Mon Sep 17 00:00:00 2001 From: Konstantin Scheumann Date: Thu, 29 Mar 2018 09:06:49 +0200 Subject: [PATCH 081/104] Import InvalidArgumentException in PdoAdapter --- src/Symfony/Component/Cache/Adapter/PdoAdapter.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php index f1a89bea0acec..c3fc45b672abe 100644 --- a/src/Symfony/Component/Cache/Adapter/PdoAdapter.php +++ b/src/Symfony/Component/Cache/Adapter/PdoAdapter.php @@ -12,6 +12,7 @@ namespace Symfony\Component\Cache\Adapter; use Doctrine\DBAL\Connection; +use Symfony\Component\Cache\Exception\InvalidArgumentException; use Symfony\Component\Cache\PruneableInterface; use Symfony\Component\Cache\Traits\PdoTrait; From a3a2ff0c74c7c262fac6456d3ce6a9eaaff5a85f Mon Sep 17 00:00:00 2001 From: Roland Franssen Date: Sat, 24 Mar 2018 17:52:09 +0100 Subject: [PATCH 082/104] [TwigBridge] Fix rendering of currency by MoneyType --- .../Bridge/Twig/Extension/FormExtension.php | 17 +++++++++++++ .../views/Form/bootstrap_3_layout.html.twig | 4 +-- .../views/Form/form_div_layout.html.twig | 2 +- .../FormExtensionBootstrap3LayoutTest.php | 25 +++++++++++++++++++ .../Extension/FormExtensionDivLayoutTest.php | 20 +++++++++++++++ .../views/Form/money_widget.html.php | 2 +- .../Templating/Helper/FormHelper.php | 16 ++++++++++++ .../Helper/FormHelperDivLayoutTest.php | 12 +++++++++ .../Bundle/FrameworkBundle/composer.json | 2 +- .../Form/Extension/Core/Type/MoneyType.php | 2 +- 10 files changed, 96 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Extension/FormExtension.php b/src/Symfony/Bridge/Twig/Extension/FormExtension.php index e101704efaa9d..ab7c6ab626d8c 100644 --- a/src/Symfony/Bridge/Twig/Extension/FormExtension.php +++ b/src/Symfony/Bridge/Twig/Extension/FormExtension.php @@ -88,6 +88,7 @@ public function getFilters() { return array( new TwigFilter('humanize', array($this, 'humanize')), + new TwigFilter('form_encode_currency', array($this, 'encodeCurrency'), array('is_safe' => array('html'), 'needs_environment' => true)), ); } @@ -166,6 +167,22 @@ public function isRootForm(FormView $formView) return null === $formView->parent; } + /** + * @internal + */ + public function encodeCurrency(Environment $environment, $text, $widget = '') + { + if ('UTF-8' === $charset = $environment->getCharset()) { + $text = htmlspecialchars($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + } else { + $text = htmlentities($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + $text = iconv('UTF-8', $charset, $text); + $widget = iconv('UTF-8', $charset, $widget); + } + + return str_replace('{{ widget }}', $widget, $text); + } + /** * {@inheritdoc} */ diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig index c61f28a2d302f..215f0ce754531 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig @@ -25,11 +25,11 @@ {% if prepend or append %}
{% if prepend %} - {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }} {% endif %} {{- block('form_widget_simple') -}} {% if append %} - {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }} {% endif %}
{% else %} diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig index 922b3ec7a7cee..9f1d95f2782f1 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/form_div_layout.html.twig @@ -142,7 +142,7 @@ {%- endblock integer_widget -%} {%- block money_widget -%} - {{ money_pattern|replace({ '{{ widget }}': block('form_widget_simple') })|raw }} + {{ money_pattern|form_encode_currency(block('form_widget_simple')) }} {%- endblock money_widget -%} {%- block url_widget -%} diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php index 85ef2ceed53af..2a22f7d88e2b3 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php @@ -63,6 +63,31 @@ protected function tearDown() $this->extension = null; } + public function testMoneyWidgetInIso() + { + $environment = new Environment(new StubFilesystemLoader(array( + __DIR__.'/../../Resources/views/Form', + __DIR__.'/Fixtures/templates/form', + )), array('strict_variables' => true)); + $environment->addExtension(new TranslationExtension(new StubTranslator())); + $environment->addExtension($this->extension); + $environment->setCharset('ISO-8859-1'); + + $this->extension->initRuntime($environment); + + $view = $this->factory + ->createNamed('name', 'money') + ->createView() + ; + + $this->assertSame(<<<'HTML' +
+ +
+HTML + , trim($this->renderWidget($view))); + } + protected function renderForm(FormView $view, array $vars = array()) { return (string) $this->extension->renderer->renderBlock($view, 'form', $vars); diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php index e11daf1831349..cb81f7bbc70ee 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php @@ -162,6 +162,26 @@ public function testIsRootForm($expected, FormView $formView) $this->assertSame($expected, $this->extension->isRootForm($formView)); } + public function testMoneyWidgetInIso() + { + $environment = new Environment(new StubFilesystemLoader(array( + __DIR__.'/../../Resources/views/Form', + __DIR__.'/Fixtures/templates/form', + )), array('strict_variables' => true)); + $environment->addExtension(new TranslationExtension(new StubTranslator())); + $environment->addExtension($this->extension); + $environment->setCharset('ISO-8859-1'); + + $this->extension->initRuntime($environment); + + $view = $this->factory + ->createNamed('name', 'money') + ->createView() + ; + + $this->assertSame('€ ', $this->renderWidget($view)); + } + protected function renderForm(FormView $view, array $vars = array()) { return (string) $this->extension->renderer->renderBlock($view, 'form', $vars); diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php b/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php index 644d284915371..25fe13f7e057c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/views/Form/money_widget.html.php @@ -1 +1 @@ -block($form, 'form_widget_simple'), $money_pattern) ?> +formEncodeCurrency($money_pattern, $view['form']->block($form, 'form_widget_simple')) ?> diff --git a/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php b/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php index 909fd14bb7ad6..ba63cad397c3a 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php +++ b/src/Symfony/Bundle/FrameworkBundle/Templating/Helper/FormHelper.php @@ -260,4 +260,20 @@ public function humanize($text) { return $this->renderer->humanize($text); } + + /** + * @internal + */ + public function formEncodeCurrency($text, $widget = '') + { + if ('UTF-8' === $charset = $this->getCharset()) { + $text = htmlspecialchars($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + } else { + $text = htmlentities($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + $text = iconv('UTF-8', $charset, $text); + $widget = iconv('UTF-8', $charset, $widget); + } + + return str_replace('{{ widget }}', $widget, $text); + } } diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php index c745818b1e72b..b1e8efaa6d90d 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php @@ -61,6 +61,18 @@ protected function tearDown() parent::tearDown(); } + public function testMoneyWidgetInIso() + { + $this->engine->setCharset('ISO-8859-1'); + + $view = $this->factory + ->createNamed('name', 'money') + ->createView() + ; + + $this->assertSame('€ ', $this->renderWidget($view)); + } + protected function renderForm(FormView $view, array $vars = array()) { return (string) $this->engine->get('form')->form($view, $vars); diff --git a/src/Symfony/Bundle/FrameworkBundle/composer.json b/src/Symfony/Bundle/FrameworkBundle/composer.json index ed611114fe2aa..b910cd9ed33e9 100644 --- a/src/Symfony/Bundle/FrameworkBundle/composer.json +++ b/src/Symfony/Bundle/FrameworkBundle/composer.json @@ -30,7 +30,7 @@ "symfony/security-core": "~2.6.13|~2.7.9|~2.8", "symfony/security-csrf": "~2.6", "symfony/stopwatch": "~2.3", - "symfony/templating": "~2.1", + "symfony/templating": "~2.7", "symfony/translation": "~2.7", "doctrine/annotations": "~1.0" }, diff --git a/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php b/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php index bfdf92d9466b6..7f55dc123aab1 100644 --- a/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php +++ b/src/Symfony/Component/Form/Extension/Core/Type/MoneyType.php @@ -83,7 +83,7 @@ public function getName() } /** - * Returns the pattern for this locale. + * Returns the pattern for this locale in UTF-8. * * The pattern contains the placeholder "{{ widget }}" where the HTML tag should * be inserted From c1fae9ea4e038e78494b83df83f9f5a1fbe64ba5 Mon Sep 17 00:00:00 2001 From: mweimerskirch <362092+mweimerskirch@users.noreply.github.com> Date: Fri, 30 Mar 2018 13:20:10 +0200 Subject: [PATCH 083/104] Added LB translation for #26327 (Errors sign for people that do not see colors) --- .../Validator/Resources/translations/validators.lb.xlf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Symfony/Component/Validator/Resources/translations/validators.lb.xlf b/src/Symfony/Component/Validator/Resources/translations/validators.lb.xlf index 668b2a631e9f3..4a06dbd45b7b5 100644 --- a/src/Symfony/Component/Validator/Resources/translations/validators.lb.xlf +++ b/src/Symfony/Component/Validator/Resources/translations/validators.lb.xlf @@ -314,6 +314,10 @@ This is not a valid Business Identifier Code (BIC). Dëst ass kee gëltege "Business Identifier Code" (BIC). + + Error + Feeler + From c9a03558830abe7150e192c6dc12eaad0d60d980 Mon Sep 17 00:00:00 2001 From: Chansig Date: Sat, 31 Mar 2018 09:59:49 +0200 Subject: [PATCH 084/104] [HttpCache] Unlink tmp file on error --- src/Symfony/Component/HttpKernel/HttpCache/Store.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Symfony/Component/HttpKernel/HttpCache/Store.php b/src/Symfony/Component/HttpKernel/HttpCache/Store.php index fa0d4a86712b6..d20bfaa1b0c4c 100644 --- a/src/Symfony/Component/HttpKernel/HttpCache/Store.php +++ b/src/Symfony/Component/HttpKernel/HttpCache/Store.php @@ -387,16 +387,22 @@ private function save($key, $data) $tmpFile = tempnam(dirname($path), basename($path)); if (false === $fp = @fopen($tmpFile, 'wb')) { + @unlink($tmpFile); + return false; } @fwrite($fp, $data); @fclose($fp); if ($data != file_get_contents($tmpFile)) { + @unlink($tmpFile); + return false; } if (false === @rename($tmpFile, $path)) { + @unlink($tmpFile); + return false; } } From 7d39bac2dc32b3aa3b52d4fe57ddfdf11f307ccd Mon Sep 17 00:00:00 2001 From: Christian Flothmann Date: Mon, 2 Apr 2018 10:22:38 +0200 Subject: [PATCH 085/104] add PHP errors options to XML schema definition --- .../Resources/config/schema/symfony-1.0.xsd | 6 ++++++ .../Fixtures/php/php_errors_disabled.php | 8 ++++++++ .../Fixtures/php/php_errors_enabled.php | 8 ++++++++ .../Fixtures/xml/php_errors_disabled.xml | 11 +++++++++++ .../Fixtures/xml/php_errors_enabled.xml | 11 +++++++++++ .../Fixtures/yml/php_errors_disabled.yml | 3 +++ .../Fixtures/yml/php_errors_enabled.yml | 4 ++++ .../FrameworkExtensionTest.php | 17 +++++++++++++++++ 8 files changed, 68 insertions(+) create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_disabled.php create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_enabled.php create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_disabled.xml create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_enabled.xml create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_disabled.yml create mode 100644 src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_enabled.yml diff --git a/src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd b/src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd index f81b7d225cbca..7c270685fbbca 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd +++ b/src/Symfony/Bundle/FrameworkBundle/Resources/config/schema/symfony-1.0.xsd @@ -29,6 +29,7 @@ + @@ -273,6 +274,11 @@ + + + + + diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_disabled.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_disabled.php new file mode 100644 index 0000000000000..1338ec55107ec --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_disabled.php @@ -0,0 +1,8 @@ +loadFromExtension('framework', array( + 'php_errors' => array( + 'log' => false, + 'throw' => false, + ), +)); diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_enabled.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_enabled.php new file mode 100644 index 0000000000000..a33875ec6a7ae --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/php/php_errors_enabled.php @@ -0,0 +1,8 @@ +loadFromExtension('framework', array( + 'php_errors' => array( + 'log' => true, + 'throw' => true, + ), +)); diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_disabled.xml b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_disabled.xml new file mode 100644 index 0000000000000..b7da5df70b652 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_disabled.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_enabled.xml b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_enabled.xml new file mode 100644 index 0000000000000..ef13b906a9c46 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/xml/php_errors_enabled.xml @@ -0,0 +1,11 @@ + + + + + + + diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_disabled.yml b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_disabled.yml new file mode 100644 index 0000000000000..958f75638ab75 --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_disabled.yml @@ -0,0 +1,3 @@ +framework: + php_errors: + throw: false diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_enabled.yml b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_enabled.yml new file mode 100644 index 0000000000000..f48531014e4fb --- /dev/null +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/Fixtures/yml/php_errors_enabled.yml @@ -0,0 +1,4 @@ +framework: + php_errors: + log: true + throw: true diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php index c78354ed08952..3a81958b1158c 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/DependencyInjection/FrameworkExtensionTest.php @@ -27,6 +27,7 @@ use Symfony\Component\DependencyInjection\ChildDefinition; use Symfony\Component\DependencyInjection\Compiler\CompilerPassInterface; use Symfony\Component\DependencyInjection\ContainerBuilder; +use Symfony\Component\DependencyInjection\ContainerInterface; use Symfony\Component\DependencyInjection\Definition; use Symfony\Component\DependencyInjection\Loader\ClosureLoader; use Symfony\Component\DependencyInjection\ParameterBag\ParameterBag; @@ -319,6 +320,22 @@ public function testWorkflowServicesCanBeEnabled() $this->assertTrue($container->hasDefinition('console.command.workflow_dump')); } + public function testEnabledPhpErrorsConfig() + { + $container = $this->createContainerFromFile('php_errors_enabled'); + + $this->assertEquals(new Reference('logger', ContainerInterface::NULL_ON_INVALID_REFERENCE), $container->getDefinition('debug.debug_handlers_listener')->getArgument(1)); + $this->assertSame(-1, $container->getParameter('debug.error_handler.throw_at')); + } + + public function testDisabledPhpErrorsConfig() + { + $container = $this->createContainerFromFile('php_errors_disabled'); + + $this->assertNull($container->getDefinition('debug.debug_handlers_listener')->getArgument(1)); + $this->assertSame(0, $container->getParameter('debug.error_handler.throw_at')); + } + public function testRouter() { $container = $this->createContainerFromFile('full'); From 92322f1be0e2026e65efda9f3ccdc44765280b9e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:33:07 +0200 Subject: [PATCH 086/104] fixed deprecated messages in tests --- .../Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php | 2 +- .../Tests/Templating/Helper/FormHelperDivLayoutTest.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php index d0b4da5e7c517..120b39fd03e32 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php @@ -100,7 +100,7 @@ public function testMoneyWidgetInIso() $this->extension->initRuntime($environment); $view = $this->factory - ->createNamed('name', 'money') + ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() ; diff --git a/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php b/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php index 2590cc4457a5d..80d1e696d88de 100644 --- a/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php +++ b/src/Symfony/Bundle/FrameworkBundle/Tests/Templating/Helper/FormHelperDivLayoutTest.php @@ -90,7 +90,7 @@ public function testMoneyWidgetInIso() $this->engine->setCharset('ISO-8859-1'); $view = $this->factory - ->createNamed('name', 'money') + ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() ; From 500b6794eb4246ee274b4a11b4d12394b7c3b8ee Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:40:46 +0200 Subject: [PATCH 087/104] moved Twig runtime to proper class --- .../Bridge/Twig/Extension/FormExtension.php | 18 +----------------- src/Symfony/Component/Form/FormRenderer.php | 16 ++++++++++++++++ 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Extension/FormExtension.php b/src/Symfony/Bridge/Twig/Extension/FormExtension.php index 0563f9392795b..9194064549e14 100644 --- a/src/Symfony/Bridge/Twig/Extension/FormExtension.php +++ b/src/Symfony/Bridge/Twig/Extension/FormExtension.php @@ -96,7 +96,7 @@ public function getFilters() { return array( new TwigFilter('humanize', array('Symfony\Component\Form\FormRenderer', 'humanize')), - new TwigFilter('form_encode_currency', array($this, 'encodeCurrency'), array('is_safe' => array('html'), 'needs_environment' => true)), + new TwigFilter('form_encode_currency', array('Symfony\Component\Form\FormRenderer', 'encodeCurrency'), array('is_safe' => array('html'), 'needs_environment' => true)), ); } @@ -167,22 +167,6 @@ public function __unset($name) unset($this->$name); } - /** - * @internal - */ - public function encodeCurrency(Environment $environment, $text, $widget = '') - { - if ('UTF-8' === $charset = $environment->getCharset()) { - $text = htmlspecialchars($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); - } else { - $text = htmlentities($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); - $text = iconv('UTF-8', $charset, $text); - $widget = iconv('UTF-8', $charset, $widget); - } - - return str_replace('{{ widget }}', $widget, $text); - } - /** * {@inheritdoc} */ diff --git a/src/Symfony/Component/Form/FormRenderer.php b/src/Symfony/Component/Form/FormRenderer.php index 4f4107c5f7f53..badb0272f89f6 100644 --- a/src/Symfony/Component/Form/FormRenderer.php +++ b/src/Symfony/Component/Form/FormRenderer.php @@ -283,4 +283,20 @@ public function humanize($text) { return ucfirst(strtolower(trim(preg_replace(array('/([A-Z])/', '/[_\s]+/'), array('_$1', ' '), $text)))); } + + /** + * @internal + */ + public function encodeCurrency(Environment $environment, $text, $widget = '') + { + if ('UTF-8' === $charset = $environment->getCharset()) { + $text = htmlspecialchars($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + } else { + $text = htmlentities($text, ENT_QUOTES | (\defined('ENT_SUBSTITUTE') ? ENT_SUBSTITUTE : 0), 'UTF-8'); + $text = iconv('UTF-8', $charset, $text); + $widget = iconv('UTF-8', $charset, $widget); + } + + return str_replace('{{ widget }}', $widget, $text); + } } From 79d491cee17f456017ec5b6ef8642e90961be95b Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:45:16 +0200 Subject: [PATCH 088/104] fixed deprecated messages in tests --- .../Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php index 8d30a3f37bc95..23a5caf3bf7e9 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php @@ -199,7 +199,7 @@ public function testMoneyWidgetInIso() $this->extension->initRuntime($environment); $view = $this->factory - ->createNamed('name', 'money') + ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() ; From 910ec3a3b21705ee29f40f816a05f20d45b05505 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:53:08 +0200 Subject: [PATCH 089/104] updated CHANGELOG for 2.7.44 --- CHANGELOG-2.7.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/CHANGELOG-2.7.md b/CHANGELOG-2.7.md index 2d7bfd9f74dd6..70677f3d18e3d 100644 --- a/CHANGELOG-2.7.md +++ b/CHANGELOG-2.7.md @@ -7,6 +7,27 @@ 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.44 (2018-04-02) + + * bug #26727 [HttpCache] Unlink tmp file on error (Chansig) + * bug #26675 [HttpKernel] DumpDataCollector: do not flush when a dumper is provided (ogizanagi) + * bug #26663 [TwigBridge] Fix rendering of currency by MoneyType (ro0NL) + * bug #26677 Support phpdbg SAPI in Debug::enable() (hkdobrev) + * bug #26621 [Form] no type errors with invalid submitted data types (xabbuh) + * bug #26337 [Finder] Fixed leading/trailing / in filename (lyrixx) + * bug #26584 [TwigBridge] allow html5 compatible rendering of forms with null names (systemist) + * bug #24401 [Form] Change datetime to datetime-local for HTML5 datetime input (pierredup) + * bug #26370 [Security] added userChecker to SimpleAuthenticationProvider (i3or1s) + * bug #26569 [BrowserKit] Fix cookie path handling when $domain is null (dunglas) + * bug #26598 Fixes #26563 (open_basedir restriction in effect) (temperatur) + * bug #26568 [Debug] Reset previous exception handler earlier to prevent infinite loop (nicolas-grekas) + * bug #26567 [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore (fancyweb) + * bug #26356 [FrameworkBundle] HttpCache is not longer abstract (lyrixx) + * bug #26548 [DomCrawler] Change bad wording in ChoiceFormField::untick (dunglas) + * bug #26433 [DomCrawler] extract(): fix a bug when the attribute list is empty (dunglas) + * bug #26452 [Intl] Load locale aliases to support alias fallbacks (jakzal) + * bug #26450 [CssSelector] Fix CSS identifiers parsing - they can start with dash (jakubkulhan) + * 2.7.43 (2018-03-05) * bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal) From 1f53736f83b070710a81efe577553a3974082439 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:53:22 +0200 Subject: [PATCH 090/104] update CONTRIBUTORS for 2.7.44 --- CONTRIBUTORS.md | 66 ++++++++++++++++++++++++++++++++----------------- 1 file changed, 44 insertions(+), 22 deletions(-) diff --git a/CONTRIBUTORS.md b/CONTRIBUTORS.md index 1034172772791..1cb4373ec2030 100644 --- a/CONTRIBUTORS.md +++ b/CONTRIBUTORS.md @@ -27,8 +27,8 @@ Symfony is the result of the work of many people who made the code better - Pascal Borreli (pborreli) - Wouter De Jong (wouterj) - Joseph Bielawski (stloyd) - - Karma Dordrak (drak) - Roland Franssen (ro0) + - Karma Dordrak (drak) - Lukas Kahwe Smith (lsmith) - Martin Hasoň (hason) - Jeremy Mikola (jmikola) @@ -40,10 +40,10 @@ Symfony is the result of the work of many people who made the code better - Guilhem Niot (energetick) - Sarah Khalil (saro0h) - Jonathan Wage (jwage) + - Hamza Amrouche (simperfit) - Diego Saint Esteben (dosten) - Alexandre Salomé (alexandresalome) - William Durand (couac) - - Hamza Amrouche (simperfit) - ornicar - Francis Besset (francisbesset) - Iltar van der Berg (kjarli) @@ -54,19 +54,20 @@ Symfony is the result of the work of many people who made the code better - Peter Rehm (rpet) - Saša Stamenković (umpirsky) - Matthias Pigulla (mpdude) + - Samuel ROZE (sroze) - Henrik Bjørnskov (henrikbjorn) + - Dany Maillard (maidmaid) - Miha Vrhovnik - - Diego Saint Esteben (dii3g0) - Pierre du Plessis (pierredup) - - Dany Maillard (maidmaid) + - Tobias Nyholm (tobias) + - Diego Saint Esteben (dii3g0) - Konstantin Kudryashov (everzet) - Kevin Bond (kbond) - Bilal Amarni (bamarni) - Alexander M. Turek (derrabus) - Jérémy DERUSSÉ (jderusse) - Florin Patan (florinpatan) - - Samuel ROZE (sroze) - - Tobias Nyholm (tobias) + - Mathieu Piot (mpiot) - Gábor Egyed (1ed) - Michel Weimerskirch (mweimerskirch) - Andrej Hudec (pulzarraider) @@ -97,9 +98,9 @@ Symfony is the result of the work of many people who made the code better - Antoine Hérault (herzult) - Paráda József (paradajozsef) - David Maicher (dmaicher) + - Vladimir Reznichenko (kalessil) - Arnaud Le Blanc (arnaud-lb) - Maxime STEINHAUSSER - - Vladimir Reznichenko (kalessil) - Michal Piotrowski (eventhorizon) - Tim Nagel (merk) - Brice BERNARD (brikou) @@ -143,22 +144,23 @@ Symfony is the result of the work of many people who made the code better - Jérôme Vasseur (jvasseur) - Jérémie Augustin (jaugustin) - Andréia Bohner (andreia) + - Philipp Wahala (hifi) - Julien Falque (julienfalque) - Rafael Dohms (rdohms) - Arnaud Kleinpeter (nanocom) - jwdeitch - Mikael Pajunen - Joel Wurtz (brouznouf) + - Valentin Udaltsov (vudaltsov) - Chris Wilkinson (thewilkybarkid) - Oleg Voronkovich - - Philipp Wahala (hifi) - Vyacheslav Pavlov - Richard van Laak (rvanlaak) - Richard Shank (iampersistent) - Thomas Rabaix (rande) + - gadelat (gadelat) - Rouven Weßling (realityking) - Teoh Han Hui (teohhanhui) - - Valentin Udaltsov (vudaltsov) - Clemens Tolboom - Helmer Aaviksoo - Hiromi Hishida (77web) @@ -171,6 +173,7 @@ Symfony is the result of the work of many people who made the code better - GDIBass - jeremyFreeAgent (Jérémy Romey) (jeremyfreeagent) - James Halsall (jaitsu) + - Matthieu Napoli (mnapoli) - Gabriel Caruso - Warnar Boekkooi (boekkooi) - Dmitrii Chekaliuk (lazyhammer) @@ -180,10 +183,10 @@ Symfony is the result of the work of many people who made the code better - Dorian Villet (gnutix) - Sergey Linnik (linniksa) - Richard Miller (mr_r_miller) + - Gabriel Ostrolucký - Mario A. Alvarez Garcia (nomack84) - Dennis Benkert (denderello) - SpacePossum - - Matthieu Napoli (mnapoli) - Benjamin Dulau (dbenjamin) - Mathieu Lemoine (lemoinem) - Christian Schmidt @@ -194,7 +197,6 @@ Symfony is the result of the work of many people who made the code better - bronze1man - sun (sun) - Larry Garfield (crell) - - Gabriel Ostrolucký - Martin Schuhfuß (usefulthink) - apetitpa - Matthieu Bontemps (mbontemps) @@ -216,6 +218,7 @@ Symfony is the result of the work of many people who made the code better - Michele Orselli (orso) - Tom Van Looy (tvlooy) - Sven Paulus (subsven) + - Thomas Calvet (fancyweb) - Rui Marinho (ruimarinho) - Niels Keurentjes (curry684) - Eugene Wissner @@ -223,7 +226,6 @@ Symfony is the result of the work of many people who made the code better - Tristan Darricau (nicofuma) - Michaël Perrin (michael.perrin) - Marcel Beerta (mazen) - - gadelat (gadelat) - Loïc Faugeron - Hidde Wieringa (hiddewie) - Marco Pivetta (ocramius) @@ -242,14 +244,15 @@ Symfony is the result of the work of many people who made the code better - Danny Berger (dpb587) - Ruben Gonzalez (rubenrua) - Adam Prager (padam87) + - Benoît Burnichon (bburnichon) - Roman Marintšenko (inori) - Xavier Montaña Carreras (xmontana) - Mickaël Andrieu (mickaelandrieu) - Xavier Perez - Arjen Brouwer (arjenjb) - Katsuhiro OGAWA - - Thomas Calvet (fancyweb) - Patrick McDougle (patrick-mcdougle) + - Yanick Witschi (toflar) - Alif Rachmawadi - Alessandro Chitolina - Kristen Gilden (kgilden) @@ -288,7 +291,6 @@ Symfony is the result of the work of many people who made the code better - Robert Kiss (kepten) - Roumen Damianoff (roumen) - Antonio J. García Lagar (ajgarlag) - - Benoît Burnichon (bburnichon) - Kim Hemsø Rasmussen (kimhemsoe) - Wouter Van Hecke - Jérôme Parmentier (lctrs) @@ -297,7 +299,6 @@ Symfony is the result of the work of many people who made the code better - Michael Holm (hollo) - Marc Weistroff (futurecat) - Christian Schmidt - - Yanick Witschi (toflar) - Edi Modrić (emodric) - Chad Sikorra (chadsikorra) - Chris Smith (cs278) @@ -331,6 +332,7 @@ Symfony is the result of the work of many people who made the code better - janschoenherr - Thomas Schulz (king2500) - Dariusz Rumiński + - Frank de Jonge (frenkynet) - Berny Cantos (xphere81) - Thierry Thuon (lepiaf) - Ricard Clau (ricardclau) @@ -349,6 +351,7 @@ Symfony is the result of the work of many people who made the code better - Inal DJAFAR (inalgnu) - Christian Gärtner (dagardner) - Tomasz Kowalczyk (thunderer) + - Artur Eshenbrener - François-Xavier de Guillebon (de-gui_f) - Damien Alexandre (damienalexandre) - Felix Labrecque @@ -368,6 +371,7 @@ Symfony is the result of the work of many people who made the code better - Philipp Kräutli (pkraeutli) - Kirill chEbba Chebunin (chebba) - Greg Thornton (xdissent) + - Florent Mata (fmata) - Costin Bereveanu (schniper) - Loïc Chardonnet (gnusat) - Marek Kalnik (marekkalnik) @@ -408,7 +412,6 @@ Symfony is the result of the work of many people who made the code better - Emanuele Gaspari (inmarelibero) - Sébastien Santoro (dereckson) - Brian King - - Frank de Jonge (frenkynet) - Michel Salib (michelsalib) - geoffrey - Steffen Roßkamp @@ -446,7 +449,6 @@ Symfony is the result of the work of many people who made the code better - Marek Pietrzak - Luc Vieillescazes (iamluc) - franek (franek) - - Artur Eshenbrener - Christian Wahler - Gintautas Miselis - Rob Bast @@ -482,7 +484,6 @@ Symfony is the result of the work of many people who made the code better - Roy Van Ginneken (rvanginneken) - ondrowan - Barry vd. Heuvel (barryvdh) - - Florent Mata - Evan S Kaufman (evanskaufman) - mcben - Jérôme Vieilledent (lolautruche) @@ -550,11 +551,13 @@ Symfony is the result of the work of many people who made the code better - Michiel Boeckaert (milio) - Geoffrey Tran (geoff) - Romain Pierre (romain-pierre) + - David Prévot - Jan Behrens - Mantas Var (mvar) - Sebastian Krebs - Jean-Christophe Cuvelier [Artack] - alcaeus + - Fred Cox - vitaliytv - Dalibor Karlović (dkarlovi) - Sebastian Blum @@ -585,6 +588,7 @@ Symfony is the result of the work of many people who made the code better - Javier López (loalf) - Reinier Kip - Geoffrey Brier (geoffrey-brier) + - Boris Vujicic (boris.vujicic) - Dustin Dobervich (dustin10) - dantleech - Anne-Sophie Bachelard (annesophie) @@ -685,6 +689,7 @@ Symfony is the result of the work of many people who made the code better - Joshua Nye - Claudio Zizza - Dave Marshall (davedevelopment) + - Jakub Kulhan (jakubkulhan) - avorobiev - Venu - Lars Vierbergen @@ -750,6 +755,7 @@ Symfony is the result of the work of many people who made the code better - Sofiane HADDAG (sofhad) - frost-nzcr4 - Bozhidar Hristov + - andrey1s - Abhoryo - Fabian Vogler (fabian) - Korvin Szanto @@ -848,6 +854,7 @@ Symfony is the result of the work of many people who made the code better - Mátyás Somfai (smatyas) - stefan.r - Valérian Galliat + - d-ph - Rikijs Murgs - Ben Ramsey (ramsey) - Amaury Leroux de Lens (amo__) @@ -923,17 +930,16 @@ Symfony is the result of the work of many people who made the code better - AKeeman (akeeman) - Lin Clark - Jeremy David (jeremy.david) + - Gocha Ossinkine (ossinkine) - Troy McCabe - Ville Mattila - ilyes kooli - gr1ev0us - mlazovla - - Boris Vujicic (boris.vujicic) - Max Beutel - Antanas Arvasevicius - Maximilian Berghoff (electricmaxxx) - nacho - - Mathieu Piot - Piotr Antosik (antek88) - Artem Lopata - Sergey Novikov (s12v) @@ -980,10 +986,12 @@ Symfony is the result of the work of many people who made the code better - Jhonny Lidfors (jhonny) - Julien Bianchi (jubianchi) - Robert Meijers + - James Sansbury - Marcin Chwedziak - hjkl - Tony Cosentino (tony-co) - Dan Wilga + - Andrew Tch - Alexander Cheprasov - Rodrigo Díez Villamuera (rodrigodiez) - Malte Blättermann @@ -1069,7 +1077,6 @@ Symfony is the result of the work of many people who made the code better - Sergey Yuferev - Tobias Stöckler - Mario Young - - Jakub Kulhan - Ilia (aliance) - Mo Di (modi) - Pablo Schläpfer @@ -1151,6 +1158,7 @@ Symfony is the result of the work of many people who made the code better - Andreas Frömer - Philip Frank - Lance McNearney + - Antoine M (amakdessi) - Gonzalo Vilaseca (gonzalovilaseca) - Giorgio Premi - Ian Carroll @@ -1217,6 +1225,7 @@ Symfony is the result of the work of many people who made the code better - Qingshan Luo - Ergie Gonzaga - Matthew J Mucklo + - AnrDaemon - fdgdfg (psampaz) - Stéphane Seng - Maxwell Vandervelde @@ -1282,6 +1291,7 @@ Symfony is the result of the work of many people who made the code better - Przemysław Piechota (kibao) - Leonid Terentyev (li0n) - ryunosuke + - zenmate - victoria - Christian Schmidt - Francisco Facioni (fran6co) @@ -1305,6 +1315,7 @@ Symfony is the result of the work of many people who made the code better - Vasily Khayrulin (sirian) - Stefan Koopmanschap (skoop) - Stefan Hüsges (tronsha) + - Jake Bishop (yakobeyak) - Dan Blows - Matt Wells - Nicolas Appriou @@ -1397,7 +1408,6 @@ Symfony is the result of the work of many people who made the code better - Artem Lopata (bumz) - Nicole Cordes - Roman Orlov - - andrey1s - VolCh - Alexey Popkov - Gijs Kunze @@ -1408,6 +1418,7 @@ Symfony is the result of the work of many people who made the code better - Daan van Renterghem - Nicole Cordes - Martin Kirilov + - amcastror - Bram Van der Sype (brammm) - Guile (guile) - Julien Moulin (lizjulien) @@ -1485,6 +1496,7 @@ Symfony is the result of the work of many people who made the code better - grifx - Robert Campbell - Matt Lehner + - Helmut Januschka - Hein Zaw Htet™ - Ruben Kruiswijk - Cosmin-Romeo TANASE @@ -1495,12 +1507,15 @@ Symfony is the result of the work of many people who made the code better - hadriengem - timaschew - Jochen Mandl + - Marin Nicolae + - Alessandro Loffredo - Ian Phillips - Haritz - Matthieu Prat - Ion Bazan - Grummfy - Filipe Guerra + - Jean Ragouin - Gerben Wijnja - Rowan Manning - Per Modin @@ -1615,6 +1630,7 @@ Symfony is the result of the work of many people who made the code better - Ron Gähler - Edwin Hageman - Mantas Urnieža + - temperatur - Cas - Dusan Kasan - Myke79 @@ -1646,6 +1662,7 @@ Symfony is the result of the work of many people who made the code better - Jörg Rühl - wesleyh - sergey + - Daniel Bannert - Karim Miladi - Michael Genereux - patrick-mcdougle @@ -1670,8 +1687,10 @@ Symfony is the result of the work of many people who made the code better - Guillaume Aveline - Adrian Philipp - James Michael DuPont + - Tim Goudriaan - Kasperki - Tammy D + - Daniel STANCU - Ondrej Slinták - vlechemin - Brian Corrigan @@ -1704,12 +1723,14 @@ Symfony is the result of the work of many people who made the code better - Elan Ruusamäe - Thorsten Hallwas - Michael Squires + - Egor Gorbachev - Derek Stephen McLean - Norman Soetbeer - zorn - Yuriy Potemkin - Benjamin Long - Matt Janssen + - Ben Miller - Peter Gribanov - Ben Johnson - kwiateusz @@ -1858,6 +1879,7 @@ Symfony is the result of the work of many people who made the code better - drublic - Andreas Streichardt - Pascal Hofmann + - Stefan Kruppa - smokeybear87 - Gustavo Adrian - Kevin Weber From ef8a14154ad6f9da75bd06322ceb9d82aba46719 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 11:53:22 +0200 Subject: [PATCH 091/104] updated VERSION for 2.7.44 --- 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 ff57c10b47341..6867adf518b91 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.44-DEV'; + const VERSION = '2.7.44'; const VERSION_ID = 20744; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; const RELEASE_VERSION = 44; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 38968efce68eb5f83ca24c11e148b13e7279574e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 12:03:31 +0200 Subject: [PATCH 092/104] fixed missing use statement --- src/Symfony/Component/Form/FormRenderer.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Symfony/Component/Form/FormRenderer.php b/src/Symfony/Component/Form/FormRenderer.php index badb0272f89f6..d68000e9321f7 100644 --- a/src/Symfony/Component/Form/FormRenderer.php +++ b/src/Symfony/Component/Form/FormRenderer.php @@ -14,6 +14,7 @@ use Symfony\Component\Form\Exception\LogicException; use Symfony\Component\Form\Exception\BadMethodCallException; use Symfony\Component\Security\Csrf\CsrfTokenManagerInterface; +use Twig\Environment; /** * Renders a form into HTML using a rendering engine. From 3758a3b1b32e4ed666267cf0d6211db5929af494 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 13:31:07 +0200 Subject: [PATCH 093/104] bumped Symfony version to 2.7.45 --- 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 6867adf518b91..687760865b6ea 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.44'; - const VERSION_ID = 20744; + const VERSION = '2.7.45-DEV'; + const VERSION_ID = 20745; const MAJOR_VERSION = 2; const MINOR_VERSION = 7; - const RELEASE_VERSION = 44; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 45; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '05/2018'; const END_OF_LIFE = '05/2019'; From 8f8d06718ec2030e266d22d4270195477be1fed2 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 13:35:51 +0200 Subject: [PATCH 094/104] fixed tests --- .../Tests/Extension/FormExtensionBootstrap3LayoutTest.php | 4 +--- .../Twig/Tests/Extension/FormExtensionDivLayoutTest.php | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php index b834fd3a6eaf0..05e0262f1f63d 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php @@ -82,11 +82,9 @@ public function testMoneyWidgetInIso() __DIR__.'/Fixtures/templates/form', )), array('strict_variables' => true)); $environment->addExtension(new TranslationExtension(new StubTranslator())); - $environment->addExtension($this->extension); + $environment->addExtension(new FormExtension()); $environment->setCharset('ISO-8859-1'); - $this->extension->initRuntime($environment); - $view = $this->factory ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php index 77c2fe2d22443..951d40360614f 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php @@ -172,11 +172,9 @@ public function testMoneyWidgetInIso() __DIR__.'/Fixtures/templates/form', )), array('strict_variables' => true)); $environment->addExtension(new TranslationExtension(new StubTranslator())); - $environment->addExtension($this->extension); + $environment->addExtension(new FormExtension()); $environment->setCharset('ISO-8859-1'); - $this->extension->initRuntime($environment); - $view = $this->factory ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() From 233afddbbfb95434729f68f3f02deff3a0d93ec9 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 13:38:17 +0200 Subject: [PATCH 095/104] updated CHANGELOG for 2.8.37 --- CHANGELOG-2.8.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/CHANGELOG-2.8.md b/CHANGELOG-2.8.md index 9f4767672eb5a..e933be2021abd 100644 --- a/CHANGELOG-2.8.md +++ b/CHANGELOG-2.8.md @@ -7,6 +7,28 @@ 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.37 (2018-04-02) + + * bug #26727 [HttpCache] Unlink tmp file on error (Chansig) + * bug #26675 [HttpKernel] DumpDataCollector: do not flush when a dumper is provided (ogizanagi) + * bug #26663 [TwigBridge] Fix rendering of currency by MoneyType (ro0NL) + * bug #26677 Support phpdbg SAPI in Debug::enable() (hkdobrev) + * bug #26589 [Ldap] cast to string when checking empty passwords (ismail1432) + * bug #26621 [Form] no type errors with invalid submitted data types (xabbuh) + * bug #26337 [Finder] Fixed leading/trailing / in filename (lyrixx) + * bug #26584 [TwigBridge] allow html5 compatible rendering of forms with null names (systemist) + * bug #24401 [Form] Change datetime to datetime-local for HTML5 datetime input (pierredup) + * bug #26370 [Security] added userChecker to SimpleAuthenticationProvider (i3or1s) + * bug #26569 [BrowserKit] Fix cookie path handling when $domain is null (dunglas) + * bug #26598 Fixes #26563 (open_basedir restriction in effect) (temperatur) + * bug #26568 [Debug] Reset previous exception handler earlier to prevent infinite loop (nicolas-grekas) + * bug #26567 [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore (fancyweb) + * bug #26356 [FrameworkBundle] HttpCache is not longer abstract (lyrixx) + * bug #26548 [DomCrawler] Change bad wording in ChoiceFormField::untick (dunglas) + * bug #26433 [DomCrawler] extract(): fix a bug when the attribute list is empty (dunglas) + * bug #26452 [Intl] Load locale aliases to support alias fallbacks (jakzal) + * bug #26450 [CssSelector] Fix CSS identifiers parsing - they can start with dash (jakubkulhan) + * 2.8.36 (2018-03-05) * bug #26368 [WebProfilerBundle] Fix Debug toolbar breaks app (xkobal) From d39e86796a45989ffba1f1acc278c88890458f0c Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 13:38:22 +0200 Subject: [PATCH 096/104] updated VERSION for 2.8.37 --- 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 cb055f5a67924..aba3e3c55bf39 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.37-DEV'; + const VERSION = '2.8.37'; const VERSION_ID = 20837; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; const RELEASE_VERSION = 37; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From 9fcb4cd0b17b51afda8c3161ad5e14c630abf5a0 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Mon, 2 Apr 2018 13:53:17 +0200 Subject: [PATCH 097/104] bumped Symfony version to 2.8.38 --- 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 aba3e3c55bf39..defbf43974e42 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.37'; - const VERSION_ID = 20837; + const VERSION = '2.8.38-DEV'; + const VERSION_ID = 20838; const MAJOR_VERSION = 2; const MINOR_VERSION = 8; - const RELEASE_VERSION = 37; - const EXTRA_VERSION = ''; + const RELEASE_VERSION = 38; + const EXTRA_VERSION = 'DEV'; const END_OF_MAINTENANCE = '11/2018'; const END_OF_LIFE = '11/2019'; From fd11cc1d0e9383e0aafdd320d35b5df24c73d31b Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Apr 2018 15:14:01 +0200 Subject: [PATCH 098/104] fix merge --- .../Twig/Resources/views/Form/bootstrap_4_layout.html.twig | 4 ++-- .../Resources/views/Form/bootstrap_base_layout.html.twig | 4 ++-- .../Resources/views/Form/foundation_5_layout.html.twig | 4 ++-- .../Tests/Extension/FormExtensionBootstrap3LayoutTest.php | 7 +++++++ .../Twig/Tests/Extension/FormExtensionDivLayoutTest.php | 7 +++++++ 5 files changed, 20 insertions(+), 6 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig index 2acd7086b0c7e..df88a00011883 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_4_layout.html.twig @@ -9,13 +9,13 @@
{%- if prepend -%}
- {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }}
{%- endif -%} {{- block('form_widget_simple') -}} {%- if append -%}
- {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }}
{%- endif -%}
diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_base_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_base_layout.html.twig index 801415872a079..2630803573ec7 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_base_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_base_layout.html.twig @@ -13,11 +13,11 @@ {% if prepend or append %}
{% if prepend %} - {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }} {% endif %} {{- block('form_widget_simple') -}} {% if append %} - {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }} {% endif %}
{% else %} diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/foundation_5_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/foundation_5_layout.html.twig index 3035689cc9dff..058bb9714c70b 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/foundation_5_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/foundation_5_layout.html.twig @@ -27,7 +27,7 @@ {% set prepend = '{{' == money_pattern[0:2] %} {% if not prepend %}
- {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }}
{% endif %}
@@ -35,7 +35,7 @@
{% if prepend %}
- {{ money_pattern|replace({ '{{ widget }}':''}) }} + {{ money_pattern|form_encode_currency }}
{% endif %} diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php index 05e0262f1f63d..d45ac367b1808 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap3LayoutTest.php @@ -85,6 +85,13 @@ public function testMoneyWidgetInIso() $environment->addExtension(new FormExtension()); $environment->setCharset('ISO-8859-1'); + $rendererEngine = new TwigRendererEngine(array( + 'bootstrap_3_layout.html.twig', + 'custom_widgets.html.twig', + ), $environment); + $this->renderer = new FormRenderer($rendererEngine, $this->getMockBuilder('Symfony\Component\Security\Csrf\CsrfTokenManagerInterface')->getMock()); + $this->registerTwigRuntimeLoader($environment, $this->renderer); + $view = $this->factory ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php index 951d40360614f..d2ea4e4a1a35f 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionDivLayoutTest.php @@ -175,6 +175,13 @@ public function testMoneyWidgetInIso() $environment->addExtension(new FormExtension()); $environment->setCharset('ISO-8859-1'); + $rendererEngine = new TwigRendererEngine(array( + 'form_div_layout.html.twig', + 'custom_widgets.html.twig', + ), $environment); + $this->renderer = new FormRenderer($rendererEngine, $this->getMockBuilder('Symfony\Component\Security\Csrf\CsrfTokenManagerInterface')->getMock()); + $this->registerTwigRuntimeLoader($environment, $this->renderer); + $view = $this->factory ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') ->createView() From 7b8acbb0ac71c4beb648cba07fee9b65cb550e44 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Apr 2018 15:41:47 +0200 Subject: [PATCH 099/104] fix merge --- .../views/Form/bootstrap_3_layout.html.twig | 59 ------------------- ...xtensionBootstrap4HorizontalLayoutTest.php | 3 +- .../FormExtensionBootstrap4LayoutTest.php | 33 ++++++++++- 3 files changed, 34 insertions(+), 61 deletions(-) diff --git a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig index 3524aac4bd2fe..d07fc67c58f75 100644 --- a/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig +++ b/src/Symfony/Bridge/Twig/Resources/views/Form/bootstrap_3_layout.html.twig @@ -32,65 +32,6 @@ {% endif %} {%- endblock money_widget %} -{% block percent_widget -%} -
- {{- block('form_widget_simple') -}} - % -
-{%- endblock percent_widget %} - -{% block datetime_widget -%} - {% if widget == 'single_text' %} - {{- block('form_widget_simple') -}} - {% else -%} - {% set attr = attr|merge({class: (attr.class|default('') ~ ' form-inline')|trim}) -%} -
- {{- form_errors(form.date) -}} - {{- form_errors(form.time) -}} - {{- form_widget(form.date, { datetime: true } ) -}} - {{- form_widget(form.time, { datetime: true } ) -}} -
- {%- endif %} -{%- endblock datetime_widget %} - -{% block date_widget -%} - {% if widget == 'single_text' %} - {{- block('form_widget_simple') -}} - {% else -%} - {% set attr = attr|merge({class: (attr.class|default('') ~ ' form-inline')|trim}) -%} - {% if datetime is not defined or not datetime -%} -
- {%- endif %} - {{- date_pattern|replace({ - '{{ year }}': form_widget(form.year), - '{{ month }}': form_widget(form.month), - '{{ day }}': form_widget(form.day), - })|raw -}} - {% if datetime is not defined or not datetime -%} -
- {%- endif -%} - {% endif %} -{%- endblock date_widget %} - -{% block time_widget -%} - {% if widget == 'single_text' %} - {{- block('form_widget_simple') -}} - {% else -%} - {% set attr = attr|merge({class: (attr.class|default('') ~ ' form-inline')|trim}) -%} - {% if datetime is not defined or false == datetime -%} -
- {%- endif -%} - {{- form_widget(form.hour) }}{% if with_minutes %}:{{ form_widget(form.minute) }}{% endif %}{% if with_seconds %}:{{ form_widget(form.second) }}{% endif %} - {% if datetime is not defined or false == datetime -%} -
- {%- endif -%} - {% endif %} -{%- endblock time_widget %} - -{% block choice_widget_collapsed -%} - {% set attr = attr|merge({class: (attr.class|default('') ~ ' form-control')|trim}) %} -{%- endblock choice_widget_collapsed %} - {% block checkbox_widget -%} {%- set parent_label_class = parent_label_class|default(label_attr.class|default('')) -%} {% if 'checkbox-inline' in parent_label_class %} diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4HorizontalLayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4HorizontalLayoutTest.php index 063edd889aed4..551d145acf4e5 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4HorizontalLayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4HorizontalLayoutTest.php @@ -19,6 +19,7 @@ use Symfony\Component\Form\FormRenderer; use Symfony\Component\Form\FormView; use Symfony\Component\Form\Tests\AbstractBootstrap4HorizontalLayoutTest; +use Twig\Environment; /** * Class providing test cases for the Bootstrap 4 Twig form theme. @@ -44,7 +45,7 @@ protected function setUp() __DIR__.'/Fixtures/templates/form', )); - $environment = new \Twig_Environment($loader, array('strict_variables' => true)); + $environment = new Environment($loader, array('strict_variables' => true)); $environment->addExtension(new TranslationExtension(new StubTranslator())); $environment->addExtension(new FormExtension()); diff --git a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4LayoutTest.php b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4LayoutTest.php index d8cbde1017345..fdc4f3ebda5c0 100644 --- a/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4LayoutTest.php +++ b/src/Symfony/Bridge/Twig/Tests/Extension/FormExtensionBootstrap4LayoutTest.php @@ -19,6 +19,7 @@ use Symfony\Component\Form\FormRenderer; use Symfony\Component\Form\FormView; use Symfony\Component\Form\Tests\AbstractBootstrap4LayoutTest; +use Twig\Environment; /** * Class providing test cases for the Bootstrap 4 horizontal Twig form theme. @@ -42,7 +43,7 @@ protected function setUp() __DIR__.'/Fixtures/templates/form', )); - $environment = new \Twig_Environment($loader, array('strict_variables' => true)); + $environment = new Environment($loader, array('strict_variables' => true)); $environment->addExtension(new TranslationExtension(new StubTranslator())); $environment->addExtension(new FormExtension()); @@ -78,6 +79,36 @@ public function testStartTagHasActionAttributeWhenActionIsZero() $this->assertSame('', $html); } + public function testMoneyWidgetInIso() + { + $environment = new Environment(new StubFilesystemLoader(array( + __DIR__.'/../../Resources/views/Form', + __DIR__.'/Fixtures/templates/form', + )), array('strict_variables' => true)); + $environment->addExtension(new TranslationExtension(new StubTranslator())); + $environment->addExtension(new FormExtension()); + $environment->setCharset('ISO-8859-1'); + + $rendererEngine = new TwigRendererEngine(array( + 'bootstrap_4_layout.html.twig', + 'custom_widgets.html.twig', + ), $environment); + $this->renderer = new FormRenderer($rendererEngine, $this->getMockBuilder('Symfony\Component\Security\Csrf\CsrfTokenManagerInterface')->getMock()); + $this->registerTwigRuntimeLoader($environment, $this->renderer); + + $view = $this->factory + ->createNamed('name', 'Symfony\Component\Form\Extension\Core\Type\MoneyType') + ->createView() + ; + + $this->assertSame(<<<'HTML' +
+ +
+HTML + , trim($this->renderWidget($view))); + } + protected function renderForm(FormView $view, array $vars = array()) { return (string) $this->renderer->renderBlock($view, 'form', $vars); From 3f316e5fb1d172f59acedc5ed6e415cec048cd65 Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Mon, 2 Apr 2018 16:30:50 +0200 Subject: [PATCH 100/104] fix merge --- src/Symfony/Component/Cache/Traits/RedisTrait.php | 6 +++++- .../Provider/LdapBindAuthenticationProviderTest.php | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Symfony/Component/Cache/Traits/RedisTrait.php b/src/Symfony/Component/Cache/Traits/RedisTrait.php index 625ca12b7a71e..ac8b5a5fccda2 100644 --- a/src/Symfony/Component/Cache/Traits/RedisTrait.php +++ b/src/Symfony/Component/Cache/Traits/RedisTrait.php @@ -120,7 +120,11 @@ public static function createConnection($dsn, array $options = array()) $redis = new $class(); $initializer = function ($redis) use ($connect, $params, $dsn, $auth) { - @$redis->{$connect}($params['host'], $params['port'], $params['timeout'], $params['persistent_id'], $params['retry_interval']); + try { + @$redis->{$connect}($params['host'], $params['port'], $params['timeout'], $params['persistent_id'], $params['retry_interval']); + } catch (\RedisException $e) { + throw new InvalidArgumentException(sprintf('Redis connection failed (%s): %s', $e->getMessage(), $dsn)); + } if (@!$redis->isConnected()) { $e = ($e = error_get_last()) && preg_match('/^Redis::p?connect\(\): (.*)/', $e['message'], $e) ? sprintf(' (%s)', $e[1]) : ''; diff --git a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php index 9bc89d50b3b3f..56c54688e49e4 100644 --- a/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php +++ b/src/Symfony/Component/Security/Core/Tests/Authentication/Provider/LdapBindAuthenticationProviderTest.php @@ -52,7 +52,7 @@ public function testEmptyPasswordShouldThrowAnException() public function testNullPasswordShouldThrowAnException() { $userProvider = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserProviderInterface')->getMock(); - $ldap = $this->getMockBuilder('Symfony\Component\Ldap\LdapClientInterface')->getMock(); + $ldap = $this->getMockBuilder('Symfony\Component\Ldap\LdapInterface')->getMock(); $userChecker = $this->getMockBuilder('Symfony\Component\Security\Core\User\UserCheckerInterface')->getMock(); $provider = new LdapBindAuthenticationProvider($userProvider, $userChecker, 'key', $ldap); From 60dd79c8359f126fff42a2d5931229dcee9849d7 Mon Sep 17 00:00:00 2001 From: Haralan Dobrev Date: Tue, 3 Apr 2018 01:34:16 +0300 Subject: [PATCH 101/104] Add PHPDbg support to HTTP components --- src/Symfony/Component/Debug/Debug.php | 2 +- src/Symfony/Component/HttpFoundation/Response.php | 2 +- .../Component/HttpKernel/DataCollector/DumpDataCollector.php | 2 +- src/Symfony/Component/Process/PhpExecutableFinder.php | 2 +- src/Symfony/Component/VarDumper/VarDumper.php | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Symfony/Component/Debug/Debug.php b/src/Symfony/Component/Debug/Debug.php index 1e29d45826d66..9ae3496b3eb81 100644 --- a/src/Symfony/Component/Debug/Debug.php +++ b/src/Symfony/Component/Debug/Debug.php @@ -45,7 +45,7 @@ public static function enable($errorReportingLevel = null, $displayErrors = true error_reporting(-1); } - if (!in_array(PHP_SAPI, array('cli', 'phpdbg'))) { + if (!\in_array(PHP_SAPI, array('cli', 'phpdbg'), true)) { ini_set('display_errors', 0); ExceptionHandler::register(); } elseif ($displayErrors && (!ini_get('log_errors') || ini_get('error_log'))) { diff --git a/src/Symfony/Component/HttpFoundation/Response.php b/src/Symfony/Component/HttpFoundation/Response.php index 4aabc0da236b1..a7459224c2a95 100644 --- a/src/Symfony/Component/HttpFoundation/Response.php +++ b/src/Symfony/Component/HttpFoundation/Response.php @@ -372,7 +372,7 @@ public function send() if (function_exists('fastcgi_finish_request')) { fastcgi_finish_request(); - } elseif ('cli' !== PHP_SAPI) { + } elseif (!\in_array(PHP_SAPI, array('cli', 'phpdbg'), true)) { static::closeOutputBuffers(0, true); } diff --git a/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php b/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php index a3880a6e8bb32..8c312aaf09b2b 100644 --- a/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php +++ b/src/Symfony/Component/HttpKernel/DataCollector/DumpDataCollector.php @@ -246,7 +246,7 @@ public function __destruct() --$i; } - if ('cli' !== PHP_SAPI && stripos($h[$i], 'html')) { + if (!\in_array(PHP_SAPI, array('cli', 'phpdbg'), true) && stripos($h[$i], 'html')) { $this->dumper = new HtmlDumper('php://output', $this->charset); } else { $this->dumper = new CliDumper('php://output', $this->charset); diff --git a/src/Symfony/Component/Process/PhpExecutableFinder.php b/src/Symfony/Component/Process/PhpExecutableFinder.php index 9b3b0f4f68337..f5c97d6bb9f8f 100644 --- a/src/Symfony/Component/Process/PhpExecutableFinder.php +++ b/src/Symfony/Component/Process/PhpExecutableFinder.php @@ -44,7 +44,7 @@ public function find($includeArgs = true) } // PHP_BINARY return the current sapi executable - if (defined('PHP_BINARY') && PHP_BINARY && in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg'))) { + if (defined('PHP_BINARY') && PHP_BINARY && \in_array(PHP_SAPI, array('cli', 'cli-server', 'phpdbg'), true)) { return PHP_BINARY.$args; } diff --git a/src/Symfony/Component/VarDumper/VarDumper.php b/src/Symfony/Component/VarDumper/VarDumper.php index 1f5ddc5b26ab2..0241486de4e51 100644 --- a/src/Symfony/Component/VarDumper/VarDumper.php +++ b/src/Symfony/Component/VarDumper/VarDumper.php @@ -29,7 +29,7 @@ public static function dump($var) { if (null === self::$handler) { $cloner = new VarCloner(); - $dumper = in_array(PHP_SAPI, array('cli', 'phpdbg')) ? new CliDumper() : new HtmlDumper(); + $dumper = \in_array(PHP_SAPI, array('cli', 'phpdbg'), true) ? new CliDumper() : new HtmlDumper(); self::$handler = function ($var) use ($cloner, $dumper) { $dumper->dump($cloner->cloneVar($var)); }; From e787ecfc3f8fa42e38c90971a0624c779ed4b5c3 Mon Sep 17 00:00:00 2001 From: Anto Date: Sat, 3 Mar 2018 15:10:27 +0100 Subject: [PATCH 102/104] [Yaml] Fix regression when trying to parse multiline --- src/Symfony/Component/Yaml/Parser.php | 6 ++- .../Component/Yaml/Tests/ParserTest.php | 46 +++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/Symfony/Component/Yaml/Parser.php b/src/Symfony/Component/Yaml/Parser.php index dbb6f716dee3e..7446ae065cd40 100644 --- a/src/Symfony/Component/Yaml/Parser.php +++ b/src/Symfony/Component/Yaml/Parser.php @@ -402,7 +402,7 @@ private function doParse($value, $flags) throw new ParseException('Multiple documents are not supported.', $this->currentLineNb + 1, $this->currentLine, $this->filename); } - if (isset($this->currentLine[1]) && '?' === $this->currentLine[0] && ' ' === $this->currentLine[1]) { + if ($deprecatedUsage = (isset($this->currentLine[1]) && '?' === $this->currentLine[0] && ' ' === $this->currentLine[1])) { @trigger_error($this->getDeprecationMessage('Starting an unquoted string with a question mark followed by a space is deprecated since Symfony 3.3 and will throw \Symfony\Component\Yaml\Exception\ParseException in 4.0.'), E_USER_DEPRECATED); } @@ -427,6 +427,10 @@ private function doParse($value, $flags) $value = ''; foreach ($this->lines as $line) { + // If the indentation is not consistent at offset 0, it is to be considered as a ParseError + if (0 === $this->offset && !$deprecatedUsage && isset($line[0]) && ' ' === $line[0]) { + throw new ParseException('Unable to parse.', $this->getRealCurrentLineNb() + 1, $this->currentLine, $this->filename); + } if ('' === trim($line)) { $value .= "\n"; } elseif (!$previousLineWasNewline && !$previousLineWasTerminatedWithBackslash) { diff --git a/src/Symfony/Component/Yaml/Tests/ParserTest.php b/src/Symfony/Component/Yaml/Tests/ParserTest.php index 617cd22e9c738..86417ab5689ab 100644 --- a/src/Symfony/Component/Yaml/Tests/ParserTest.php +++ b/src/Symfony/Component/Yaml/Tests/ParserTest.php @@ -812,6 +812,41 @@ public function testNonStringFollowedByCommentEmbeddedInMapping() $this->assertSame($expected, $this->parser->parse($yaml)); } + public function getParseExceptionNotAffectedMultiLineStringLastResortParsing() + { + $tests = array(); + + $yaml = <<<'EOT' +a + b: +EOT; + $tests['parse error on first line'] = array($yaml); + + $yaml = <<<'EOT' +a + +b + c: +EOT; + $tests['parse error due to inconsistent indentation'] = array($yaml); + + $yaml = <<<'EOT' + & * ! | > ' " % @ ` #, { asd a;sdasd }-@^qw3 +EOT; + $tests['symfony/symfony/issues/22967#issuecomment-322067742'] = array($yaml); + + return $tests; + } + + /** + * @dataProvider getParseExceptionNotAffectedMultiLineStringLastResortParsing + * @expectedException \Symfony\Component\Yaml\Exception\ParseException + */ + public function testParseExceptionNotAffectedByMultiLineStringLastResortParsing($yaml) + { + $this->parser->parse($yaml); + } + public function testMultiLineStringLastResortParsing() { $yaml = <<<'EOT' @@ -825,6 +860,17 @@ public function testMultiLineStringLastResortParsing() ); $this->assertSame($expected, $this->parser->parse($yaml)); + + $yaml = <<<'EOT' +a: + b + c +EOT; + $expected = array( + 'a' => 'b c', + ); + + $this->assertSame($expected, $this->parser->parse($yaml)); } /** From 8ed4d8d0cd73c24882757d16f0a4d7372e53b91e Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 3 Apr 2018 08:20:26 +0200 Subject: [PATCH 103/104] updated CHANGELOG for 4.0.7 --- CHANGELOG-4.0.md | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) diff --git a/CHANGELOG-4.0.md b/CHANGELOG-4.0.md index c3af769a411f8..d055c43f1435d 100644 --- a/CHANGELOG-4.0.md +++ b/CHANGELOG-4.0.md @@ -7,6 +7,49 @@ in 4.0 minor versions. To get the diff for a specific change, go to https://github.com/symfony/symfony/commit/XXX where XXX is the change hash To get the diff between two versions, go to https://github.com/symfony/symfony/compare/v4.0.0...v4.0.1 +* 4.0.7 (2018-04-03) + + * bug #26387 [Yaml] Fix regression when trying to parse multiline (antograssiot) + * bug #26749 Add PHPDbg support to HTTP components (hkdobrev) + * bug #26609 [Console] Fix check of color support on Windows (mlocati) + * bug #26727 [HttpCache] Unlink tmp file on error (Chansig) + * bug #26675 [HttpKernel] DumpDataCollector: do not flush when a dumper is provided (ogizanagi) + * bug #26663 [TwigBridge] Fix rendering of currency by MoneyType (ro0NL) + * bug #26595 [DI] Do not suggest writing an implementation when multiple exist (chalasr) + * bug #26662 [DI] Fix hardcoded cache dir for warmups (nicolas-grekas) + * bug #26677 Support phpdbg SAPI in Debug::enable() (hkdobrev) + * bug #26600 [Routing] Fixed the importing of files using glob patterns that match multiple resources (skalpa) + * bug #26589 [Ldap] cast to string when checking empty passwords (ismail1432) + * bug #26626 [WebProfilerBundle] use the router to resolve file links (nicolas-grekas) + * bug #26634 [DI] Cleanup remainings from autoregistration (nicolas-grekas) + * bug #26635 [DI] Dont tell about autoregistration in strict autowiring mode (nicolas-grekas) + * bug #26621 [Form] no type errors with invalid submitted data types (xabbuh) + * bug #26612 [PHPunit] suite variable should be used (prisis) + * bug #26337 [Finder] Fixed leading/trailing / in filename (lyrixx) + * bug #26584 [TwigBridge] allow html5 compatible rendering of forms with null names (systemist) + * bug #24401 [Form] Change datetime to datetime-local for HTML5 datetime input (pierredup) + * bug #26513 [FrameworkBundle] Respect debug mode when warm up annotations (Strate) + * bug #26370 [Security] added userChecker to SimpleAuthenticationProvider (i3or1s) + * bug #26569 [BrowserKit] Fix cookie path handling when $domain is null (dunglas) + * bug #26273 [Security][Profiler] Display the original expression in 'Access decision log' (lyrixx) + * bug #26427 [DependencyInjection] fix regression when extending the Container class without a constructor (lsmith77) + * bug #26562 [Bridge\PhpUnit] Cannot autoload class "\Symfony\Bridge\PhpUnit\SymfonyTestsListener" (Jake Bishop) + * bug #26598 Fixes #26563 (open_basedir restriction in effect) (temperatur) + * bug #26568 [Debug] Reset previous exception handler earlier to prevent infinite loop (nicolas-grekas) + * bug #26590 Make sure form errors is valid HTML (Nyholm) + * bug #26567 [DoctrineBridge] Don't rely on ClassMetadataInfo->hasField in DoctrineOrmTypeGuesser anymore (fancyweb) + * feature #26408 Readd 'form_label_errors' block to disable errors on form labels (birkof) + * bug #26591 [TwigBridge] Make sure we always render errors. Eventhough labels are disabled (Nyholm) + * bug #26356 [FrameworkBundle] HttpCache is not longer abstract (lyrixx) + * bug #26548 [DomCrawler] Change bad wording in ChoiceFormField::untick (dunglas) + * bug #26482 [PhpUnitBridge] Ability to use different composer.json file (amcastror) + * bug #26443 [Fix][HttpFoundation] Fix the updating of timestamp in the MemcachedSessionHandler (Alessandro Loffredo) + * bug #26400 [Config] ReflectionClassResource check abstract class (andrey1s) + * bug #26433 [DomCrawler] extract(): fix a bug when the attribute list is empty (dunglas) + * bug #26041 Display the Welcome Page when there is no homepage defined (javiereguiluz) + * bug #26452 [Intl] Load locale aliases to support alias fallbacks (jakzal) + * bug #26450 [CssSelector] Fix CSS identifiers parsing - they can start with dash (jakubkulhan) + * 4.0.6 (2018-03-05) * bug #26393 [DI] Skip resource tracking if disabled (chalasr) From df782dada335f0ac4ea144c8f73bb48de12ab4b5 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Tue, 3 Apr 2018 08:20:33 +0200 Subject: [PATCH 104/104] updated VERSION for 4.0.7 --- 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 0b1ddcb628be9..883d7c9eaf476 100644 --- a/src/Symfony/Component/HttpKernel/Kernel.php +++ b/src/Symfony/Component/HttpKernel/Kernel.php @@ -63,12 +63,12 @@ abstract class Kernel implements KernelInterface, RebootableInterface, Terminabl private $requestStackSize = 0; private $resetServices = false; - const VERSION = '4.0.7-DEV'; + const VERSION = '4.0.7'; const VERSION_ID = 40007; const MAJOR_VERSION = 4; const MINOR_VERSION = 0; const RELEASE_VERSION = 7; - const EXTRA_VERSION = 'DEV'; + const EXTRA_VERSION = ''; const END_OF_MAINTENANCE = '07/2018'; const END_OF_LIFE = '01/2019'; pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy