diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php index 107d6bb295098..96dd4a3cd1555 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php @@ -51,17 +51,17 @@ public static function assertEquals($expected, $actual, $message = '', $delta = public function dataProvider() { return array( - array(\IntlDateFormatter::SHORT, null, null, '03.02.10 04:05', '2010-02-03 04:05:00 UTC'), - array(\IntlDateFormatter::MEDIUM, null, null, '03.02.2010 04:05', '2010-02-03 04:05:00 UTC'), - array(\IntlDateFormatter::LONG, null, null, '03. Februar 2010 04:05', '2010-02-03 04:05:00 UTC'), - array(\IntlDateFormatter::FULL, null, null, 'Mittwoch, 03. Februar 2010 04:05', '2010-02-03 04:05:00 UTC'), + array(\IntlDateFormatter::SHORT, null, null, '03.02.10, 04:05', '2010-02-03 04:05:00 UTC'), + array(\IntlDateFormatter::MEDIUM, null, null, '03.02.2010, 04:05', '2010-02-03 04:05:00 UTC'), + array(\IntlDateFormatter::LONG, null, null, '3. Februar 2010 um 04:05', '2010-02-03 04:05:00 UTC'), + array(\IntlDateFormatter::FULL, null, null, 'Mittwoch, 3. Februar 2010 um 04:05', '2010-02-03 04:05:00 UTC'), array(\IntlDateFormatter::SHORT, \IntlDateFormatter::NONE, null, '03.02.10', '2010-02-03 00:00:00 UTC'), array(\IntlDateFormatter::MEDIUM, \IntlDateFormatter::NONE, null, '03.02.2010', '2010-02-03 00:00:00 UTC'), - array(\IntlDateFormatter::LONG, \IntlDateFormatter::NONE, null, '03. Februar 2010', '2010-02-03 00:00:00 UTC'), - array(\IntlDateFormatter::FULL, \IntlDateFormatter::NONE, null, 'Mittwoch, 03. Februar 2010', '2010-02-03 00:00:00 UTC'), - array(null, \IntlDateFormatter::SHORT, null, '03.02.2010 04:05', '2010-02-03 04:05:00 UTC'), - array(null, \IntlDateFormatter::MEDIUM, null, '03.02.2010 04:05:06', '2010-02-03 04:05:06 UTC'), - array(null, \IntlDateFormatter::LONG, null, '03.02.2010 04:05:06 GMT', '2010-02-03 04:05:06 UTC'), + array(\IntlDateFormatter::LONG, \IntlDateFormatter::NONE, null, '3. Februar 2010', '2010-02-03 00:00:00 UTC'), + array(\IntlDateFormatter::FULL, \IntlDateFormatter::NONE, null, 'Mittwoch, 3. Februar 2010', '2010-02-03 00:00:00 UTC'), + array(null, \IntlDateFormatter::SHORT, null, '03.02.2010, 04:05', '2010-02-03 04:05:00 UTC'), + array(null, \IntlDateFormatter::MEDIUM, null, '03.02.2010, 04:05:06', '2010-02-03 04:05:06 UTC'), + array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 GMT', '2010-02-03 04:05:06 UTC'), // see below for extra test case for time format FULL array(\IntlDateFormatter::NONE, \IntlDateFormatter::SHORT, null, '04:05', '1970-01-01 04:05:00 UTC'), array(\IntlDateFormatter::NONE, \IntlDateFormatter::MEDIUM, null, '04:05:06', '1970-01-01 04:05:06 UTC'), @@ -103,7 +103,7 @@ public function testTransformFullTime() { $transformer = new DateTimeToLocalizedStringTransformer('UTC', 'UTC', null, \IntlDateFormatter::FULL); - $this->assertEquals('03.02.2010 04:05:06 GMT', $transformer->transform($this->dateTime)); + $this->assertEquals('03.02.2010, 04:05:06 GMT', $transformer->transform($this->dateTime)); } public function testTransformToDifferentLocale() @@ -131,7 +131,7 @@ public function testTransformWithDifferentTimezones() $dateTime = clone $input; $dateTime->setTimezone(new \DateTimeZone('Asia/Hong_Kong')); - $this->assertEquals($dateTime->format('d.m.Y H:i'), $transformer->transform($input)); + $this->assertEquals($dateTime->format('d.m.Y, H:i'), $transformer->transform($input)); } public function testTransformWithDifferentPatterns() @@ -153,7 +153,7 @@ public function testTransformDateTimeImmutableTimezones() $dateTime = clone $input; $dateTime = $dateTime->setTimezone(new \DateTimeZone('Asia/Hong_Kong')); - $this->assertEquals($dateTime->format('d.m.Y H:i'), $transformer->transform($input)); + $this->assertEquals($dateTime->format('d.m.Y, H:i'), $transformer->transform($input)); } /** @@ -201,7 +201,7 @@ public function testReverseTransformFullTime() { $transformer = new DateTimeToLocalizedStringTransformer('UTC', 'UTC', null, \IntlDateFormatter::FULL); - $this->assertDateTimeEquals($this->dateTime, $transformer->reverseTransform('03.02.2010 04:05:06 GMT+00:00')); + $this->assertDateTimeEquals($this->dateTime, $transformer->reverseTransform('03.02.2010, 04:05:06 GMT+00:00')); } public function testReverseTransformFromDifferentLocale() @@ -220,7 +220,7 @@ public function testReverseTransformWithDifferentTimezones() $dateTime = new \DateTime('2010-02-03 04:05:00 Asia/Hong_Kong'); $dateTime->setTimezone(new \DateTimeZone('America/New_York')); - $this->assertDateTimeEquals($dateTime, $transformer->reverseTransform('03.02.2010 04:05')); + $this->assertDateTimeEquals($dateTime, $transformer->reverseTransform('03.02.2010, 04:05')); } public function testReverseTransformWithDifferentPatterns() diff --git a/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTypeTest.php b/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTypeTest.php index d1049ee5cb35b..213a09d42f4e9 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTypeTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/Type/DateTypeTest.php @@ -476,7 +476,7 @@ public function testMonthsOptionShortFormat() $view = $form->createView(); $this->assertEquals(array( - new ChoiceView(1, '1', 'Jän'), + new ChoiceView(1, '1', 'Jän.'), new ChoiceView(4, '4', 'Apr.'), ), $view['month']->vars['choices']); } diff --git a/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php b/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php index 65894340cb3b7..59987594235f0 100644 --- a/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php +++ b/src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php @@ -49,6 +49,7 @@ class LanguageDataGenerator extends AbstractDataGenerator 'fr' => 'fra', 'gn' => 'grn', 'hy' => 'hye', + 'hr' => 'hrv', 'ik' => 'ipk', 'is' => 'isl', 'iu' => 'iku', @@ -76,6 +77,7 @@ class LanguageDataGenerator extends AbstractDataGenerator 'sc' => 'srd', 'sk' => 'slk', 'sq' => 'sqi', + 'sr' => 'srp', 'sw' => 'swa', 'uz' => 'uzb', 'yi' => 'yid', @@ -164,10 +166,13 @@ protected function generateDataForMeta(BundleReaderInterface $reader, $tempDir) private function generateAlpha2ToAlpha3Mapping(ArrayAccessibleResourceBundle $metadataBundle) { - $aliases = $metadataBundle['languageAlias']; + // Data structure has changed in ICU 5.5 from "languageAlias" to "alias->language" + $aliases = $metadataBundle['languageAlias'] ?: $metadataBundle['alias']['language']; $alpha2ToAlpha3 = array(); foreach ($aliases as $alias => $language) { + // $language is a string before ICU 5.5 + $language = is_string($language) ? $language : $language['replacement']; if (2 === strlen($language) && 3 === strlen($alias)) { if (isset(self::$preferredAlpha2ToAlpha3Mapping[$language])) { // Validate to prevent typos @@ -181,12 +186,13 @@ private function generateAlpha2ToAlpha3Mapping(ArrayAccessibleResourceBundle $me } $alpha3 = self::$preferredAlpha2ToAlpha3Mapping[$language]; + $alpha2 = is_string($aliases[$alpha3]) ? $aliases[$alpha3] : $aliases[$alpha3]['replacement']; - if ($language !== $aliases[$alpha3]) { + if ($language !== $alpha2) { throw new RuntimeException( 'The statically set three-letter mapping '.$alpha3.' '. 'for the language code '.$language.' seems to be '. - 'an alias for '.$aliases[$alpha3].'. Wrong mapping?' + 'an alias for '.$alpha2.'. Wrong mapping?' ); } diff --git a/src/Symfony/Component/Intl/Intl.php b/src/Symfony/Component/Intl/Intl.php index cb14e334d07ae..21031b5bbbbc9 100644 --- a/src/Symfony/Component/Intl/Intl.php +++ b/src/Symfony/Component/Intl/Intl.php @@ -234,7 +234,7 @@ public static function getIcuDataVersion() */ public static function getIcuStubVersion() { - return '51.2'; + return '55.1'; } /** diff --git a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php index 7bc7a2ba880fb..f89ce8a469274 100644 --- a/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php +++ b/src/Symfony/Component/Intl/NumberFormatter/NumberFormatter.php @@ -239,7 +239,7 @@ class NumberFormatter private static $enTextAttributes = array( self::DECIMAL => array('', '', '-', '', '*', '', ''), - self::CURRENCY => array('¤', '', '(¤', ')', '*', ''), + self::CURRENCY => array('¤', '', '-¤', '', '*', ''), ); /** @@ -337,7 +337,7 @@ public function formatCurrency($value, $currency) $ret = $symbol.$value; - return $negative ? '('.$ret.')' : $ret; + return $negative ? '-'.$ret : $ret; } /** diff --git a/src/Symfony/Component/Intl/Resources/bin/icu.ini b/src/Symfony/Component/Intl/Resources/bin/icu.ini index 119f2431a4644..e6fdd01d4addb 100644 --- a/src/Symfony/Component/Intl/Resources/bin/icu.ini +++ b/src/Symfony/Component/Intl/Resources/bin/icu.ini @@ -10,4 +10,5 @@ 51 = http://source.icu-project.org/repos/icu/icu/tags/release-51-2/source 52 = http://source.icu-project.org/repos/icu/icu/tags/release-52-1/source 53 = http://source.icu-project.org/repos/icu/icu/tags/release-53-1/source -54 = http://source.icu-project.org/repos/icu/icu/tags/release-54-rc/source +54 = http://source.icu-project.org/repos/icu/icu/tags/release-54-1/source +55 = http://source.icu-project.org/repos/icu/icu/tags/release-55-1/source diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af.json b/src/Symfony/Component/Intl/Resources/data/currencies/af.json index a74298b288990..9afdf7b121d49 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json b/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json index 33fb85a21b962..2aef02218ac58 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.8.19", + "Version": "2.1.11.68", "Names": { "NAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/am.json b/src/Symfony/Component/Intl/Resources/data/currencies/am.json index 0dcb2802c2cc4..a57f27eb1dd3d 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index df0f1d41f28c0..ab361c2cddbcd 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", 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 a31c162528f58..59eb218f207b6 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.8.19", + "Version": "2.1.12.18", "Names": { "SDG": [ "SDG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az.json b/src/Symfony/Component/Intl/Resources/data/currencies/az.json index 663644af2ffd5..7e0d9febbaf7c 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -339,7 +339,7 @@ ], "GBP": [ "£", - "Britaniya Funt Sterlinqi" + "Britaniya Funt" ], "GEK": [ "GEK", 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 a39cf708f0041..b2e78c1c18d3e 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.6.69", + "Version": "2.1.10.34", "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 81fe60b6ffc01..16104d0738360 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.7.39", + "Version": "2.1.10.93", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 05ebd807ba418..400a1727ccc87 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index 14c7eaef4f06a..6538f0dc4bc86 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.6.69", + "Version": "2.1.10.42", "Names": { "AED": [ "AED", @@ -71,7 +71,7 @@ ], "GBP": [ "£", - "angilɛ Livri Siterlingi" + "angilɛ Livri" ], "GHC": [ "GHC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json index 5542f06e9fd73..c0c3e2fab81de 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/br.json b/src/Symfony/Component/Intl/Resources/data/currencies/br.json index 2dae349cfd383..e306d45927676 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.7.39", + "Version": "2.1.10.93", "Names": { "ADP": [ "ADP", @@ -315,7 +315,7 @@ ], "GBP": [ "£ RU", - "lur sterling Breizh-Veur" + "lur Breizh-Veur" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index 1eb182c5c92e1..cf2f548ce5b23 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.8.9", + "Version": "2.1.13.46", "Names": { "ADP": [ "ADP", @@ -359,7 +359,7 @@ ], "GBP": [ "GBP", - "Britanska funta sterlinga" + "Britanska funta" ], "GEK": [ "GEK", 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 4b0e3967f5945..32269c22386b8 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Британска фунта стерлинга" + "Британска фунта" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 2ef75b4de01ae..4c0078d777fe0 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -384,7 +384,7 @@ ], "GBP": [ "£", - "lliura esterlina britànica" + "lliura britànica" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json index 374d1bfc34805..56e4d6d834399 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json index 5a1ef690bd403..0f863d4b4670d 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.7.80", + "Version": "2.1.10.93", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "Punt Sterling Prydain" + "Punt Prydain" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index 595be924df269..ad7d2f5bb7c34 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.9.62", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index e9f51f4da7d2a..bb8baf95c60a4 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.8.9", + "Version": "2.1.13.4", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "Britisches Pfund Sterling" + "Britisches Pfund" ], "GEK": [ "GEK", 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 5b4c928ffef92..79e16153822d0 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.8.21", + "Version": "2.1.11.70", "Names": { "BYR": [ "BYR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json index e86e2009ed080..d12f95b41a40f 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "britainga pound sterling" + "britainga pound" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/el.json b/src/Symfony/Component/Intl/Resources/data/currencies/el.json index f60a3e03082a5..16c31e27158e1 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -335,7 +335,7 @@ ], "GBP": [ "£", - "Λίρα Στερλίνα Βρετανίας" + "Λίρα Βρετανίας" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en.json b/src/Symfony/Component/Intl/Resources/data/currencies/en.json index ea4d71c8beabe..de65afe2b89d6 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.8.87", + "Version": "2.1.13.48", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "British Pound Sterling" + "British Pound" ], "GEK": [ "GEK", @@ -1019,7 +1019,7 @@ ], "UZS": [ "UZS", - "Uzbekistan Som" + "Uzbekistani Som" ], "VEB": [ "VEB", @@ -1047,7 +1047,7 @@ ], "XAF": [ "FCFA", - "CFA Franc BEAC" + "Central African CFA Franc" ], "XCD": [ "EC$", @@ -1067,7 +1067,7 @@ ], "XOF": [ "CFA", - "CFA Franc BCEAO" + "West African CFA Franc" ], "XPF": [ "CFPF", 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 b2a152e66609b..9200ddfa9cbb6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json @@ -1,6 +1,34 @@ { - "Version": "2.1.6.69", + "Version": "2.1.12.90", "Names": { + "BYB": [ + "BYB", + "Belarusian New Rouble (1994–1999)" + ], + "BYR": [ + "BYR", + "Belarusian Rouble" + ], + "JPY": [ + "JP¥", + "Japanese Yen" + ], + "LVR": [ + "LVR", + "Latvian Rouble" + ], + "RUB": [ + "RUB", + "Russian Rouble" + ], + "RUR": [ + "RUR", + "Russian Rouble (1991–1998)" + ], + "TJR": [ + "TJR", + "Tajikistani Rouble" + ], "USD": [ "US$", "US Dollar" 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 1a349fe3619bb..0c9f8aee20d82 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json @@ -1,33 +1,13 @@ { - "Version": "2.1.8.19", + "Version": "2.1.11.59", "Names": { - "BYR": [ - "BYR", - "Belarusian Rouble" - ], - "GBP": [ - "£", - "British Pound" - ], - "RUB": [ - "RUB", - "Russian Rouble" + "AUD": [ + "$", + "Australian Dollar" ], "SCR": [ "SCR", "Seychelles Rupee" - ], - "UZS": [ - "UZS", - "Uzbekistani Som" - ], - "XAF": [ - "FCFA", - "Central African CFA Franc" - ], - "XOF": [ - "CFA", - "West African CFA Franc" ] } } 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 047b6985677e2..30e3c1d7ae862 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.6.69", + "Version": "2.1.11.50", "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 c14e0df720e18..f5e01aae7112b 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.6.69", + "Version": "2.1.11.50", "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 09f3fd3b0aa15..1c75a1a37e191 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json @@ -1,13 +1,9 @@ { - "Version": "2.1.8.19", + "Version": "2.1.14.16", "Names": { "CAD": [ "$", "Canadian Dollar" - ], - "USD": [ - "US$", - "US Dollar" ] } } 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 f8ac8071372c7..a1e3b0c7f2a02 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json @@ -7,7 +7,7 @@ ], "GBP": [ "GB£", - "British Pound Sterling" + "British Pound" ] } } 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 dea2a9566a5eb..94a4111273b8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GB.json @@ -1,374 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.11.59", "Names": { - "ADP": [ - "ADP", - "Andorran Peseta" - ], - "AED": [ - "AED", - "United Arab Emirates Dirham" - ], - "AFA": [ - "AFA", - "Afghan Afghani (1927–2002)" - ], - "AFN": [ - "AFN", - "Afghan Afghani" - ], - "ALL": [ - "ALL", - "Albanian Lek" - ], - "AMD": [ - "AMD", - "Armenian Dram" - ], - "ANG": [ - "ANG", - "Netherlands Antillean Guilder" - ], - "AOA": [ - "AOA", - "Angolan Kwanza" - ], - "ARS": [ - "ARS", - "Argentine Peso" - ], - "ATS": [ - "ATS", - "Austrian Schilling" - ], - "AUD": [ - "A$", - "Australian Dollar" - ], - "AWG": [ - "AWG", - "Aruban Florin" - ], - "AZM": [ - "AZM", - "Azerbaijani Manat (1993–2006)" - ], - "AZN": [ - "AZN", - "Azerbaijani Manat" - ], - "BAD": [ - "BAD", - "Bosnia-Herzegovina Dinar (1992–1994)" - ], - "BAM": [ - "BAM", - "Bosnia-Herzegovina Convertible Mark" - ], - "BAN": [ - "BAN", - "Bosnia-Herzegovina New Dinar (1994–1997)" - ], - "BBD": [ - "BBD", - "Barbadian Dollar" - ], - "BDT": [ - "BDT", - "Bangladeshi Taka" - ], - "BEC": [ - "BEC", - "Belgian Franc (convertible)" - ], - "BEF": [ - "BEF", - "Belgian Franc" - ], - "BEL": [ - "BEL", - "Belgian Franc (financial)" - ], - "BGL": [ - "BGL", - "Bulgarian Hard Lev" - ], - "BGM": [ - "BGM", - "Bulgarian Socialist Lev" - ], - "BGN": [ - "BGN", - "Bulgarian Lev" - ], - "BGO": [ - "BGO", - "Bulgarian Lev (1879–1952)" - ], - "BHD": [ - "BHD", - "Bahraini Dinar" - ], - "BIF": [ - "BIF", - "Burundian Franc" - ], - "BMD": [ - "BMD", - "Bermudan Dollar" - ], - "BND": [ - "BND", - "Brunei Dollar" - ], - "BOB": [ - "BOB", - "Bolivian Boliviano" - ], - "BRL": [ - "R$", - "Brazilian Real" - ], - "BSD": [ - "BSD", - "Bahamian Dollar" - ], - "BTN": [ - "BTN", - "Bhutanese Ngultrum" - ], - "BUK": [ - "BUK", - "Burmese Kyat" - ], - "BWP": [ - "BWP", - "Botswanan Pula" - ], - "BYB": [ - "BYB", - "Belarusian New Rouble (1994–1999)" - ], - "BYR": [ - "BYR", - "Belarusian Ruble" - ], - "BZD": [ - "BZD", - "Belize Dollar" - ], - "CAD": [ - "CA$", - "Canadian Dollar" - ], - "CDF": [ - "CDF", - "Congolese Franc" - ], - "CHE": [ - "CHE", - "WIR Euro" - ], - "CHF": [ - "CHF", - "Swiss Franc" - ], - "CHW": [ - "CHW", - "WIR Franc" - ], - "CLP": [ - "CLP", - "Chilean Peso" - ], - "CNY": [ - "CN¥", - "Chinese Yuan" - ], - "COP": [ - "COP", - "Colombian Peso" - ], - "CRC": [ - "CRC", - "Costa Rican Colón" - ], - "CSD": [ - "CSD", - "Serbian Dinar (2002–2006)" - ], - "CSK": [ - "CSK", - "Czechoslovak Hard Koruna" - ], - "CUC": [ - "CUC", - "Cuban Convertible Peso" - ], - "CUP": [ - "CUP", - "Cuban Peso" - ], - "CVE": [ - "CVE", - "Cape Verdean Escudo" - ], - "CYP": [ - "CYP", - "Cypriot Pound" - ], - "CZK": [ - "CZK", - "Czech Republic Koruna" - ], - "DDM": [ - "DDM", - "East German Mark" - ], - "DEM": [ - "DEM", - "German Mark" - ], - "DJF": [ - "DJF", - "Djiboutian Franc" - ], - "DKK": [ - "DKK", - "Danish Krone" - ], - "DOP": [ - "DOP", - "Dominican Peso" - ], - "DZD": [ - "DZD", - "Algerian Dinar" - ], - "EEK": [ - "EEK", - "Estonian Kroon" - ], - "EGP": [ - "EGP", - "Egyptian Pound" - ], - "ERN": [ - "ERN", - "Eritrean Nakfa" - ], - "ESA": [ - "ESA", - "Spanish Peseta (A account)" - ], - "ESB": [ - "ESB", - "Spanish Peseta (convertible account)" - ], - "ESP": [ - "ESP", - "Spanish Peseta" - ], - "ETB": [ - "ETB", - "Ethiopian Birr" - ], - "EUR": [ - "€", - "Euro" - ], - "FIM": [ - "FIM", - "Finnish Markka" - ], - "FJD": [ - "FJD", - "Fijian Dollar" - ], - "FKP": [ - "FKP", - "Falkland Islands Pound" - ], - "FRF": [ - "FRF", - "French Franc" - ], - "GBP": [ - "£", - "British Pound Sterling" - ], - "GEK": [ - "GEK", - "Georgian Kupon Larit" - ], - "GEL": [ - "GEL", - "Georgian Lari" - ], - "GHS": [ - "GHS", - "Ghanaian Cedi" - ], - "GIP": [ - "GIP", - "Gibraltar Pound" - ], - "GMD": [ - "GMD", - "Gambian Dalasi" - ], - "GNF": [ - "GNF", - "Guinean Franc" - ], - "GRD": [ - "GRD", - "Greek Drachma" - ], - "GTQ": [ - "GTQ", - "Guatemalan Quetzal" - ], - "GYD": [ - "GYD", - "Guyanaese Dollar" - ], - "HKD": [ - "HK$", - "Hong Kong Dollar" - ], - "HNL": [ - "HNL", - "Honduran Lempira" - ], - "HRD": [ - "HRD", - "Croatian Dinar" - ], - "HRK": [ - "HRK", - "Croatian Kuna" - ], - "HTG": [ - "HTG", - "Haitian Gourde" - ], - "HUF": [ - "HUF", - "Hungarian Forint" - ], - "IDR": [ - "IDR", - "Indonesian Rupiah" - ], - "IEP": [ - "IEP", - "Irish Pound" - ], - "ILP": [ - "ILP", - "Israeli Pound" - ], "ILR": [ "ILR", "Israeli Shekel (1980–1985)" @@ -376,562 +8,6 @@ "ILS": [ "₪", "Israeli New Shekel" - ], - "INR": [ - "₹", - "Indian Rupee" - ], - "IQD": [ - "IQD", - "Iraqi Dinar" - ], - "IRR": [ - "IRR", - "Iranian Rial" - ], - "ISK": [ - "ISK", - "Icelandic Króna" - ], - "ITL": [ - "ITL", - "Italian Lira" - ], - "JMD": [ - "JMD", - "Jamaican Dollar" - ], - "JOD": [ - "JOD", - "Jordanian Dinar" - ], - "KES": [ - "KES", - "Kenyan Shilling" - ], - "KGS": [ - "KGS", - "Kyrgystani Som" - ], - "KHR": [ - "KHR", - "Cambodian Riel" - ], - "KMF": [ - "KMF", - "Comorian Franc" - ], - "KPW": [ - "KPW", - "North Korean Won" - ], - "KRH": [ - "KRH", - "South Korean Hwan (1953–1962)" - ], - "KRO": [ - "KRO", - "South Korean Won (1945–1953)" - ], - "KRW": [ - "₩", - "South Korean Won" - ], - "KWD": [ - "KWD", - "Kuwaiti Dinar" - ], - "KYD": [ - "KYD", - "Cayman Islands Dollar" - ], - "KZT": [ - "KZT", - "Kazakhstani Tenge" - ], - "LAK": [ - "LAK", - "Laotian Kip" - ], - "LBP": [ - "LBP", - "Lebanese Pound" - ], - "LKR": [ - "LKR", - "Sri Lankan Rupee" - ], - "LRD": [ - "LRD", - "Liberian Dollar" - ], - "LSL": [ - "LSL", - "Lesotho Loti" - ], - "LTL": [ - "LTL", - "Lithuanian Litas" - ], - "LTT": [ - "LTT", - "Lithuanian Talonas" - ], - "LUC": [ - "LUC", - "Luxembourgian Convertible Franc" - ], - "LUF": [ - "LUF", - "Luxembourgian Franc" - ], - "LUL": [ - "LUL", - "Luxembourg Financial Franc" - ], - "LVL": [ - "LVL", - "Latvian Lats" - ], - "LVR": [ - "LVR", - "Latvian Rouble" - ], - "LYD": [ - "LYD", - "Libyan Dinar" - ], - "MAD": [ - "MAD", - "Moroccan Dirham" - ], - "MCF": [ - "MCF", - "Monegasque Franc" - ], - "MDC": [ - "MDC", - "Moldovan Cupon" - ], - "MDL": [ - "MDL", - "Moldovan Leu" - ], - "MGA": [ - "MGA", - "Malagasy Ariary" - ], - "MKD": [ - "MKD", - "Macedonian Denar" - ], - "MKN": [ - "MKN", - "Macedonian Denar (1992–1993)" - ], - "MMK": [ - "MMK", - "Myanmar Kyat" - ], - "MNT": [ - "MNT", - "Mongolian Tugrik" - ], - "MOP": [ - "MOP", - "Macanese Pataca" - ], - "MRO": [ - "MRO", - "Mauritanian Ouguiya" - ], - "MTL": [ - "MTL", - "Maltese Lira" - ], - "MTP": [ - "MTP", - "Maltese Pound" - ], - "MUR": [ - "MUR", - "Mauritian Rupee" - ], - "MVP": [ - "MVP", - "Maldivian Rupee" - ], - "MVR": [ - "MVR", - "Maldivian Rufiyaa" - ], - "MWK": [ - "MWK", - "Malawian Kwacha" - ], - "MXN": [ - "MX$", - "Mexican Peso" - ], - "MXP": [ - "MXP", - "Mexican Silver Peso (1861–1992)" - ], - "MXV": [ - "MXV", - "Mexican Investment Unit" - ], - "MYR": [ - "MYR", - "Malaysian Ringgit" - ], - "MZN": [ - "MZN", - "Mozambican Metical" - ], - "NAD": [ - "NAD", - "Namibian Dollar" - ], - "NGN": [ - "NGN", - "Nigerian Naira" - ], - "NIC": [ - "NIC", - "Nicaraguan Córdoba (1988–1991)" - ], - "NIO": [ - "NIO", - "Nicaraguan Córdoba" - ], - "NLG": [ - "NLG", - "Dutch Guilder" - ], - "NOK": [ - "NOK", - "Norwegian Krone" - ], - "NPR": [ - "NPR", - "Nepalese Rupee" - ], - "NZD": [ - "NZ$", - "New Zealand Dollar" - ], - "OMR": [ - "OMR", - "Omani Rial" - ], - "PAB": [ - "PAB", - "Panamanian Balboa" - ], - "PEN": [ - "PEN", - "Peruvian Nuevo Sol" - ], - "PGK": [ - "PGK", - "Papua New Guinean Kina" - ], - "PHP": [ - "PHP", - "Philippine Peso" - ], - "PKR": [ - "PKR", - "Pakistani Rupee" - ], - "PLN": [ - "PLN", - "Polish Zloty" - ], - "PLZ": [ - "PLZ", - "Polish Zloty (1950–1995)" - ], - "PTE": [ - "PTE", - "Portuguese Escudo" - ], - "PYG": [ - "PYG", - "Paraguayan Guarani" - ], - "QAR": [ - "QAR", - "Qatari Rial" - ], - "ROL": [ - "ROL", - "Romanian Leu (1952–2006)" - ], - "RON": [ - "RON", - "Romanian Leu" - ], - "RSD": [ - "RSD", - "Serbian Dinar" - ], - "RUB": [ - "RUB", - "Russian Ruble" - ], - "RUR": [ - "RUR", - "Russian Rouble (1991–1998)" - ], - "RWF": [ - "RWF", - "Rwandan Franc" - ], - "SAR": [ - "SAR", - "Saudi Riyal" - ], - "SBD": [ - "SBD", - "Solomon Islands Dollar" - ], - "SCR": [ - "SCR", - "Seychellois Rupee" - ], - "SDG": [ - "SDG", - "Sudanese Pound" - ], - "SEK": [ - "SEK", - "Swedish Krona" - ], - "SGD": [ - "SGD", - "Singapore Dollar" - ], - "SHP": [ - "SHP", - "Saint Helena Pound" - ], - "SIT": [ - "SIT", - "Slovenian Tolar" - ], - "SKK": [ - "SKK", - "Slovak Koruna" - ], - "SLL": [ - "SLL", - "Sierra Leonean Leone" - ], - "SOS": [ - "SOS", - "Somali Shilling" - ], - "SRD": [ - "SRD", - "Surinamese Dollar" - ], - "SSP": [ - "SSP", - "South Sudanese Pound" - ], - "STD": [ - "STD", - "São Tomé and Príncipe Dobra" - ], - "SUR": [ - "SUR", - "Soviet Rouble" - ], - "SVC": [ - "SVC", - "Salvadoran Colón" - ], - "SYP": [ - "SYP", - "Syrian Pound" - ], - "SZL": [ - "SZL", - "Swazi Lilangeni" - ], - "THB": [ - "฿", - "Thai Baht" - ], - "TJR": [ - "TJR", - "Tajikistani Rouble" - ], - "TJS": [ - "TJS", - "Tajikistani Somoni" - ], - "TMM": [ - "TMM", - "Turkmenistani Manat (1993–2009)" - ], - "TMT": [ - "TMT", - "Turkmenistani Manat" - ], - "TND": [ - "TND", - "Tunisian Dinar" - ], - "TOP": [ - "TOP", - "Tongan Paʻanga" - ], - "TPE": [ - "TPE", - "Timorese Escudo" - ], - "TRL": [ - "TRL", - "Turkish Lira (1922–2005)" - ], - "TRY": [ - "TRY", - "Turkish Lira" - ], - "TTD": [ - "TTD", - "Trinidad and Tobago Dollar" - ], - "TWD": [ - "NT$", - "New Taiwan Dollar" - ], - "TZS": [ - "TZS", - "Tanzanian Shilling" - ], - "UAH": [ - "UAH", - "Ukrainian Hryvnia" - ], - "UAK": [ - "UAK", - "Ukrainian Karbovanets" - ], - "UGX": [ - "UGX", - "Ugandan Shilling" - ], - "USN": [ - "USN", - "US Dollar (Next day)" - ], - "USS": [ - "USS", - "US Dollar (Same day)" - ], - "UYU": [ - "UYU", - "Uruguayan Peso" - ], - "UZS": [ - "UZS", - "Uzbekistan Som" - ], - "VEF": [ - "VEF", - "Venezuelan Bolívar" - ], - "VND": [ - "₫", - "Vietnamese Dong" - ], - "VNN": [ - "VNN", - "Vietnamese Dong (1978–1985)" - ], - "VUV": [ - "VUV", - "Vanuatu Vatu" - ], - "WST": [ - "WST", - "Samoan Tala" - ], - "XAF": [ - "FCFA", - "CFA Franc BEAC" - ], - "XCD": [ - "EC$", - "East Caribbean Dollar" - ], - "XEU": [ - "XEU", - "European Currency Unit" - ], - "XFO": [ - "XFO", - "French Gold Franc" - ], - "XFU": [ - "XFU", - "French UIC-Franc" - ], - "XOF": [ - "CFA", - "CFA Franc BCEAO" - ], - "XPF": [ - "CFPF", - "CFP Franc" - ], - "XRE": [ - "XRE", - "RINET Funds" - ], - "YDD": [ - "YDD", - "Yemeni Dinar" - ], - "YER": [ - "YER", - "Yemeni Rial" - ], - "YUD": [ - "YUD", - "Yugoslavian Hard Dinar (1966–1990)" - ], - "YUM": [ - "YUM", - "Yugoslavian New Dinar (1994–2002)" - ], - "YUN": [ - "YUN", - "Yugoslavian Convertible Dinar (1990–1992)" - ], - "YUR": [ - "YUR", - "Yugoslavian Reformed Dinar (1992–1993)" - ], - "ZAL": [ - "ZAL", - "South African Rand (financial)" - ], - "ZAR": [ - "ZAR", - "South African Rand" - ], - "ZMK": [ - "ZMK", - "Zambian Kwacha (1968–2012)" - ], - "ZMW": [ - "ZMW", - "Zambian Kwacha" ] } } 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 e021775712919..e4f13bc8702d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json @@ -3,7 +3,7 @@ "Names": { "GBP": [ "GB£", - "British Pound Sterling" + "British Pound" ], "GIP": [ "£", 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 3e0ed42fbbaf1..ab87c840c21af 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.6.69", + "Version": "2.1.10.93", "Names": { "JMD": [ "$", 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 b4ec64f362e87..c1d9a0ad987e6 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.8.19", + "Version": "2.1.11.50", "Names": { "MOP": [ "MOP$", 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 213c563a55b84..4f0ec3d6c2f5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json @@ -1,9 +1,9 @@ { - "Version": "2.1.8.19", + "Version": "2.1.11.50", "Names": { "GBP": [ "GB£", - "British Pound Sterling" + "British Pound" ] } } 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 66af4fe049780..841d021c5e85a 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.8.19", + "Version": "2.1.11.51", "Names": { "NZD": [ "$", 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 546a42d121d2f..1c859bed0dda4 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.8.19", + "Version": "2.1.11.51", "Names": { "PKR": [ "Rs", 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 9da5ff893d1fe..8a704f204ae7b 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.8.19", + "Version": "2.1.11.51", "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 f6d406010fa71..6dd9742d054a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json @@ -3,11 +3,11 @@ "Names": { "GBP": [ "GB£", - "British Pound Sterling" + "British Pound" ], "SHP": [ "£", - "Saint Helena Pound" + "St. Helena Pound" ] } } 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 31151b9d2fe4f..5ffc704e4acd4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json @@ -3,7 +3,7 @@ "Names": { "GBP": [ "GB£", - "British Pound Sterling" + "British Pound" ], "SSP": [ "£", 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 b0c5eb9744561..43f3eb5cfba38 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.6.69", + "Version": "2.1.11.51", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es.json b/src/Symfony/Component/Intl/Resources/data/currencies/es.json index 71fbf18ba3822..52a05f00585ef 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.8.9", + "Version": "2.1.13.21", "Names": { "ADP": [ "ADP", @@ -67,7 +67,7 @@ ], "AWG": [ "AWG", - "florín de Aruba" + "florín arubeño" ], "AZM": [ "AZM", @@ -87,7 +87,7 @@ ], "BBD": [ "BBD", - "dólar de Barbados" + "dólar barbadense" ], "BDT": [ "BDT", @@ -111,7 +111,7 @@ ], "BGN": [ "BGN", - "leva" + "lev búlgaro" ], "BHD": [ "BHD", @@ -167,7 +167,7 @@ ], "BSD": [ "BSD", - "dólar de las Bahamas" + "dólar bahameño" ], "BTN": [ "BTN", @@ -191,7 +191,7 @@ ], "BZD": [ "BZD", - "dólar de Belice" + "dólar beliceño" ], "CAD": [ "CA$", @@ -339,7 +339,7 @@ ], "FKP": [ "FKP", - "libra de las Islas Malvinas" + "libra malvinense" ], "FRF": [ "FRF", @@ -347,7 +347,7 @@ ], "GBP": [ "GBP", - "libra esterlina" + "libra británica" ], "GEK": [ "GEK", @@ -407,7 +407,7 @@ ], "HKD": [ "HKD", - "dólar de Hong Kong" + "dólar hongkonés" ], "HNL": [ "HNL", @@ -427,7 +427,7 @@ ], "HUF": [ "HUF", - "forinto" + "forinto húngaro" ], "IDR": [ "IDR", @@ -467,7 +467,7 @@ ], "JMD": [ "JMD", - "dólar de Jamaica" + "dólar jamaicano" ], "JOD": [ "JOD", @@ -511,7 +511,7 @@ ], "KZT": [ "KZT", - "tengue" + "tenge kazako" ], "LAK": [ "LAK", @@ -523,7 +523,7 @@ ], "LKR": [ "LKR", - "rupia de Sri Lanka" + "rupia esrilanquesa" ], "LRD": [ "LRD", @@ -535,7 +535,7 @@ ], "LTL": [ "LTL", - "litas" + "litas lituano" ], "LTT": [ "LTT", @@ -555,7 +555,7 @@ ], "LVL": [ "LVL", - "lats" + "lats letón" ], "LVR": [ "LVR", @@ -627,7 +627,7 @@ ], "MWK": [ "MWK", - "kuacha malauí" + "kwacha malauí" ], "MXN": [ "MXN", 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 2af408e48eb75..24f6220add2ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json @@ -1,62 +1,14 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { - "AMD": [ - "AMD", - "dram" - ], - "AWG": [ - "AWG", - "florín arubeño" - ], - "BBD": [ - "BBD", - "dólar barbadense" - ], - "BSD": [ - "BSD", - "dólar bahameño" - ], - "BZD": [ - "BZD", - "dólar beliceño" - ], "CAD": [ "CAD", "dólar canadiense" ], - "ERN": [ - "ERN", - "nakfa" - ], "EUR": [ "EUR", "euro" ], - "HKD": [ - "HKD", - "dólar hongkonés" - ], - "ILS": [ - "ILS", - "nuevo sheqel israelí" - ], - "JMD": [ - "JMD", - "dólar jamaicano" - ], - "KZT": [ - "KZT", - "tenge kazako" - ], - "LKR": [ - "LKR", - "rupia esrilanquesa" - ], - "MOP": [ - "MOP", - "pataca" - ], "THB": [ "THB", "bat" @@ -68,10 +20,6 @@ "VND": [ "VND", "dong" - ], - "ZMW": [ - "ZMK", - "kuacha zambiano" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json index 7ded1a5128f83..42a5f00dab41b 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.8.19", + "Version": "2.1.13.23", "Names": { "ARS": [ "$", 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 c1905894810af..319ec7c85efd2 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.8.19", + "Version": "2.1.13.23", "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 ac6321be8e09f..e9e1f954efa60 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.8.19", + "Version": "2.1.13.23", "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 8d15c5d3f1b2f..b0ae1a38dc810 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.6.69", + "Version": "2.1.13.23", "Names": { "CRC": [ "₡", 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 9af6426bd699b..82ede25b3c44b 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.8.19", + "Version": "2.1.13.23", "Names": { "USD": [ "$", 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 002fb30b45d71..4ec5104dcbee3 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.8.19", + "Version": "2.1.13.23", "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 b152c671ad5af..491257090a502 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.8.19", + "Version": "2.1.13.23", "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 75f787d9229a9..f6fe261c221e2 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.8.19", + "Version": "2.1.13.23", "Names": { "AFN": [ "Af", @@ -9,10 +9,6 @@ "ALL", "lek albanés" ], - "AMD": [ - "AMD", - "dram armenio" - ], "ANG": [ "Naf", "florín de las Antillas Neerlandesas" @@ -41,10 +37,6 @@ "BDT", "taka de Bangladesh" ], - "BGN": [ - "BGN", - "lev búlgaro" - ], "BND": [ "BND", "dólar de Brunéi" @@ -117,22 +109,10 @@ "ECV", "unidad de valor constante (UVC) ecuatoriana" ], - "ERN": [ - "ERN", - "nakfa eritreo" - ], "ETB": [ "ETB", "birr etíope" ], - "FKP": [ - "FKP", - "libra malvinense" - ], - "GBP": [ - "GBP", - "libra esterlina británica" - ], "GEL": [ "GEL", "lari georgiano" @@ -153,18 +133,10 @@ "HRK", "kuna croata" ], - "HUF": [ - "HUF", - "florín húngaro" - ], "ILS": [ "ILS", "nuevo shéquel israelí" ], - "JMD": [ - "JMD", - "dólar jamaiquino" - ], "JPY": [ "JPY", "yen japonés" @@ -189,14 +161,6 @@ "LKR", "rupia de Sri Lanka" ], - "LTL": [ - "LTL", - "litas lituano" - ], - "LVL": [ - "LVL", - "lats letón" - ], "MGA": [ "MGA", "ariary malgache" @@ -209,10 +173,6 @@ "MNT", "tugrik mongol" ], - "MOP": [ - "MOP", - "pataca de Macao" - ], "MRO": [ "MRO", "ouguiya mauritano" @@ -221,10 +181,6 @@ "MVR", "rufiyaa de Maldivas" ], - "MWK": [ - "MWK", - "kwacha malauí" - ], "MXN": [ "$", "peso mexicano" @@ -354,7 +310,7 @@ "rand sudafricano" ], "ZMW": [ - "ZMK", + "ZMW", "kwacha zambiano" ] } 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 2c211b5b5bffd..f0e2326458065 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.6.69", + "Version": "2.1.13.23", "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 f4190a288c05a..a4dec08907a49 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.8.19", + "Version": "2.1.13.23", "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 a0c3dd11a4b31..cdc194ba5b7b0 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.8.19", + "Version": "2.1.13.23", "Names": { "PEN": [ "S\/.", 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 9af6426bd699b..82ede25b3c44b 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.8.19", + "Version": "2.1.13.23", "Names": { "USD": [ "$", 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 a52252fd671dc..82ede25b3c44b 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.6.69", + "Version": "2.1.13.23", "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 b7feda73df25d..952b772c91b5f 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.8.19", + "Version": "2.1.13.23", "Names": { "JPY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json index b90e66b61bbf3..825b01ebdf5fb 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.6.69", + "Version": "2.1.11.86", "Names": { "USD": [ "US$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/et.json b/src/Symfony/Component/Intl/Resources/data/currencies/et.json index ad9a7de3544ad..5bad1f9e024d4 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json index 9d1a0ffda529d..6193883dfdcf4 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index e64836e5c79ab..bafc49643e2ed 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -783,7 +783,7 @@ ], "XAF": [ "FCFA", - "فرانک CFA مرکز آفریقا" + "فرانک CFA مرکز افریقا" ], "XCD": [ "$EC", @@ -795,7 +795,7 @@ ], "XOF": [ "CFA", - "فرانک CFA غرب آفریقا" + "فرانک CFA غرب افریقا" ], "XPF": [ "CFPF", 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 1bcc4e17b788f..b7f0a01ffde0d 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.6.69", + "Version": "2.1.12.17", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json index ab145e0358eb2..31831caf3a44f 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.8.9", + "Version": "2.1.13.33", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index 6f96394ecc647..d8c4f3cfec717 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.7.53", + "Version": "2.1.12.27", "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 16a70f9cfe7b5..d799dd0ba20ab 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.8.9", + "Version": "2.1.13.46", "Names": { "ADP": [ "ADP", @@ -343,7 +343,7 @@ ], "FKP": [ "£FK", - "livre des Falkland" + "livre des îles Malouines" ], "FRF": [ "F", 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 b844608502697..0b9611b112193 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.8.19", + "Version": "2.1.13.23", "Names": { "ARS": [ "ARS", @@ -9,10 +9,6 @@ "$ AU", "dollar australien" ], - "AZN": [ - "AZN", - "manat azerbaïdjanais" - ], "BMD": [ "BMD", "dollar bermudien" @@ -45,10 +41,6 @@ "COP", "peso colombien" ], - "CVE": [ - "CVE", - "escudo du Cap-Vert" - ], "FJD": [ "FJD", "dollar fidjien" @@ -85,10 +77,6 @@ "KRW", "won sud-coréen" ], - "LAK": [ - "LAK", - "kip laotien" - ], "LBP": [ "LBP", "livre libanaise" @@ -105,14 +93,6 @@ "$ NZ", "dollar néo-zélandais" ], - "PGK": [ - "PGK", - "kina papou-néo-guinéen" - ], - "QAR": [ - "QAR", - "riyal du Qatar" - ], "SBD": [ "SBD", "dollar des îles Salomon" @@ -121,18 +101,10 @@ "$ SG", "dollar de Singapour" ], - "SRD": [ - "SRD", - "dollar du Suriname" - ], "THB": [ "THB", "baht thaïlandais" ], - "TOP": [ - "TOP", - "pa’anga" - ], "TTD": [ "TTD", "dollar de Trinité-et-Tobago" @@ -149,14 +121,6 @@ "VND", "dông vietnamien" ], - "VUV": [ - "VUV", - "vatu" - ], - "WST": [ - "WST", - "tala" - ], "XAF": [ "XAF", "franc CFA (BEAC)" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json index 41aaa20032baa..fdd39efa89946 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.7.53", + "Version": "2.1.10.93", "Names": { "ADP": [ "ADP", @@ -379,7 +379,7 @@ ], "GBP": [ "£", - "Brits pûn sterling" + "Brits pûn" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json index 47a583d67f85b..067f7d1f70ed9 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index 7b797d7e7eb3f..3ff840757a200 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index 9bd0415bf405a..067e35c484e82 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index 6f5e5e8922966..5afecf939772f 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/he.json b/src/Symfony/Component/Intl/Resources/data/currencies/he.json index 951283a0608cd..2e6806ec124e9 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index b6efa6c6c9dc5..79054ba99e887 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -31,7 +31,7 @@ ], "ARS": [ "ARS", - "अर्जेंटीनी पीसो" + "अर्जेंटीनी पेसो" ], "AUD": [ "A$", @@ -119,7 +119,7 @@ ], "CLP": [ "CLP", - "चिली पीसो" + "चिली पेसो" ], "CNY": [ "CN¥", @@ -127,7 +127,7 @@ ], "COP": [ "COP", - "कोलंबियाई पीसो" + "कोलंबियाई पेसो" ], "CRC": [ "CRC", @@ -139,11 +139,11 @@ ], "CUC": [ "CUC", - "क्यूबाई परिवर्तनीय पीसो" + "क्यूबाई परिवर्तनीय पेसो" ], "CUP": [ "CUP", - "क्यूबाई पीसो" + "क्यूबाई पेसो" ], "CVE": [ "CVE", @@ -171,7 +171,7 @@ ], "DOP": [ "DOP", - "डोमिनिकन पीसो" + "डोमिनिकन पेसो" ], "DZD": [ "DZD", @@ -423,7 +423,7 @@ ], "MXN": [ "MX$", - "मैक्सिकन पीसो" + "मैक्सिकन पेसो" ], "MYR": [ "MYR", @@ -475,7 +475,7 @@ ], "PHP": [ "PHP", - "फ़िलिपीनी पीसो" + "फ़िलिपीनी पेसो" ], "PKR": [ "PKR", @@ -659,7 +659,7 @@ ], "UYU": [ "UYU", - "उरुग्वियन पीसो" + "उरुग्वियन पेसो" ], "UZS": [ "UZS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index 74348f1093625..86ee9e03e3e27 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json index abd36bd5f5f78..080603927e5c5 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "GBP", - "brit font sterling" + "brit font" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index 5cfbbac855de6..a6b5f2e440e3f 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "Բրիտանական ֆունտ ստեռլինգ" + "Բրիտանական ֆունտ" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/id.json b/src/Symfony/Component/Intl/Resources/data/currencies/id.json index 76769269eea91..c04c913fb1681 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -379,7 +379,7 @@ ], "GBP": [ "£", - "Pound Sterling Inggris" + "Pound Inggris" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/in.json b/src/Symfony/Component/Intl/Resources/data/currencies/in.json index 76769269eea91..c04c913fb1681 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -379,7 +379,7 @@ ], "GBP": [ "£", - "Pound Sterling Inggris" + "Pound Inggris" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/is.json b/src/Symfony/Component/Intl/Resources/data/currencies/is.json index 2b653f2f1a569..c196f346990a4 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index e7e2b54f2a924..fbef2bb82646a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/it.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/it.json @@ -1,1034 +1,1034 @@ { - "Version": "2.1.8.32", + "Version": "2.1.13.6", "Names": { "ADP": [ "ADP", - "Peseta Andorrana" + "peseta andorrana" ], "AED": [ "AED", - "Dirham degli Emirati Arabi Uniti" + "dirham degli Emirati Arabi Uniti" ], "AFA": [ "AFA", - "Afgani (1927–2002)" + "afgani (1927–2002)" ], "AFN": [ "AFN", - "Afghani" + "afghani" ], "ALL": [ "ALL", - "Lek Albanese" + "lek albanese" ], "AMD": [ "AMD", - "Dram armeno" + "dram armeno" ], "ANG": [ "ANG", - "Fiorino delle Antille Olandesi" + "fiorino delle Antille Olandesi" ], "AOA": [ "AOA", - "Kwanza Angolano" + "kwanza angolano" ], "AOK": [ "AOK", - "Kwanza Angolano (1977–1990)" + "kwanza angolano (1977–1990)" ], "AON": [ "AON", - "Nuovo Kwanza Angolano (1990–2000)" + "nuovo kwanza angolano (1990–2000)" ], "AOR": [ "AOR", - "Kwanza Reajustado Angolano (1995–1999)" + "kwanza reajustado angolano (1995–1999)" ], "ARA": [ "ARA", - "Austral Argentino" + "austral argentino" ], "ARP": [ "ARP", - "Peso Argentino (vecchio Cod.)" + "peso argentino (vecchio Cod.)" ], "ARS": [ "ARS", - "Peso Argentino" + "peso argentino" ], "ATS": [ "ATS", - "Scellino Austriaco" + "scellino austriaco" ], "AUD": [ "A$", - "Dollaro Australiano" + "dollaro australiano" ], "AWG": [ "AWG", - "Fiorino di Aruba" + "fiorino di Aruba" ], "AZM": [ "AZM", - "Manat azero (1993–2006)" + "manat azero (1993–2006)" ], "AZN": [ "AZN", - "Manat azero" + "manat azero" ], "BAD": [ "BAD", - "Dinar Bosnia-Herzegovina" + "dinar Bosnia-Herzegovina" ], "BAM": [ "BAM", - "Marco Conv. Bosnia-Erzegovina" + "marco conv. Bosnia-Erzegovina" ], "BBD": [ "BBD", - "Dollaro di Barbados" + "dollaro di Barbados" ], "BDT": [ "BDT", - "Taka Bangladese" + "taka bangladese" ], "BEC": [ "BEC", - "Franco Belga (convertibile)" + "franco belga (convertibile)" ], "BEF": [ "BEF", - "Franco Belga" + "franco belga" ], "BEL": [ "BEL", - "Franco Belga (finanziario)" + "franco belga (finanziario)" ], "BGL": [ "BGL", - "Lev Bulgaro (1962–1999)" + "lev bulgaro (1962–1999)" ], "BGN": [ "BGN", - "Lev bulgaro" + "lev bulgaro" ], "BHD": [ "BHD", - "Dinaro del Bahrein" + "dinaro del Bahrein" ], "BIF": [ "BIF", - "Franco del Burundi" + "franco del Burundi" ], "BMD": [ "BMD", - "Dollaro delle Bermuda" + "dollaro delle Bermuda" ], "BND": [ "BND", - "Dollaro del Brunei" + "dollaro del Brunei" ], "BOB": [ "BOB", - "Boliviano" + "boliviano" ], "BOP": [ "BOP", - "Peso Boliviano" + "peso boliviano" ], "BOV": [ "BOV", - "Mvdol Boliviano" + "mvdol boliviano" ], "BRB": [ "BRB", - "Cruzeiro Novo Brasiliano (1967–1986)" + "cruzeiro novo brasiliano (1967–1986)" ], "BRC": [ "BRC", - "Cruzado Brasiliano" + "cruzado brasiliano" ], "BRE": [ "BRE", - "Cruzeiro Brasiliano (1990–1993)" + "cruzeiro brasiliano (1990–1993)" ], "BRL": [ "BRL", - "Real Brasiliano" + "real brasiliano" ], "BRN": [ "BRN", - "Cruzado Novo Brasiliano" + "cruzado novo brasiliano" ], "BRR": [ "BRR", - "Cruzeiro Brasiliano" + "cruzeiro brasiliano" ], "BSD": [ "BSD", - "Dollaro delle Bahamas" + "dollaro delle Bahamas" ], "BTN": [ "BTN", - "Ngultrum Butanese" + "ngultrum butanese" ], "BUK": [ "BUK", - "Kyat Birmano" + "kyat birmano" ], "BWP": [ "BWP", - "Pula del Botswana" + "pula del Botswana" ], "BYB": [ "BYB", - "Nuovo Rublo Bielorussia (1994–1999)" + "nuovo rublo bielorusso (1994–1999)" ], "BYR": [ "BYR", - "Rublo Bielorussia" + "rublo bielorusso" ], "BZD": [ "BZD", - "Dollaro del Belize" + "dollaro del Belize" ], "CAD": [ "CA$", - "Dollaro Canadese" + "dollaro canadese" ], "CDF": [ "CDF", - "Franco Congolese" + "franco congolese" ], "CHF": [ "CHF", - "Franco svizzero" + "franco svizzero" ], "CLF": [ "CLF", - "Unidades de Fomento Chilene" + "unidades de fomento chilene" ], "CLP": [ "CLP", - "Peso Cileno" + "peso cileno" ], "CNY": [ "CN¥", - "Renminbi cinese" + "renminbi cinese" ], "COP": [ "COP", - "Peso Colombiano" + "peso colombiano" ], "CRC": [ "CRC", - "Colón Costaricano" + "colón costaricano" ], "CSD": [ "CSD", - "Antico Dinaro Serbo" + "antico dinaro serbo" ], "CSK": [ "CSK", - "Corona forte cecoslovacca" + "corona forte cecoslovacca" ], "CUC": [ "CUC", - "Peso Cubano Convertibile" + "peso cubano convertibile" ], "CUP": [ "CUP", - "Peso Cubano" + "peso cubano" ], "CVE": [ "CVE", - "Escudo del Capo Verde" + "escudo del Capo Verde" ], "CYP": [ "CYP", - "Sterlina Cipriota" + "sterlina cipriota" ], "CZK": [ "CZK", - "Corona Ceca" + "corona ceca" ], "DDM": [ "DDM", - "Ostmark della Germania Orientale" + "ostmark della Germania Orientale" ], "DEM": [ "DEM", - "Marco Tedesco" + "marco tedesco" ], "DJF": [ "DJF", - "Franco Gibutiano" + "franco gibutiano" ], "DKK": [ "DKK", - "Corona danese" + "corona danese" ], "DOP": [ "DOP", - "Peso Dominicano" + "peso dominicano" ], "DZD": [ "DZD", - "Dinaro Algerino" + "dinaro algerino" ], "ECS": [ "ECS", - "Sucre dell’Ecuador" + "sucre dell’Ecuador" ], "ECV": [ "ECV", - "Unidad de Valor Constante (UVC) dell’Ecuador" + "unidad de valor constante (UVC) dell’Ecuador" ], "EEK": [ "EEK", - "Corona dell’Estonia" + "corona dell’Estonia" ], "EGP": [ "EGP", - "Sterlina Egiziana" + "sterlina egiziana" ], "ERN": [ "ERN", - "Nakfa Eritreo" + "nakfa eritreo" ], "ESA": [ "ESA", - "Peseta Spagnola Account" + "peseta spagnola account" ], "ESB": [ "ESB", - "Peseta Spagnola Account Convertibile" + "peseta spagnola account convertibile" ], "ESP": [ "ESP", - "Peseta Spagnola" + "peseta spagnola" ], "ETB": [ "ETB", - "Birr Etiopico" + "birr etiopico" ], "EUR": [ "€", - "Euro" + "euro" ], "FIM": [ "FIM", - "Markka Finlandese" + "markka finlandese" ], "FJD": [ "FJD", - "Dollaro delle Figi" + "dollaro delle Figi" ], "FKP": [ "FKP", - "Sterlina delle Falkland" + "sterlina delle Falkland" ], "FRF": [ "FRF", - "Franco Francese" + "franco francese" ], "GBP": [ "£", - "Sterlina Inglese" + "sterlina inglese" ], "GEK": [ "GEK", - "Kupon Larit Georgiano" + "kupon larit georgiano" ], "GEL": [ "GEL", - "Lari georgiano" + "lari georgiano" ], "GHC": [ "GHC", - "Cedi del Ghana" + "cedi del Ghana" ], "GHS": [ "GHS", - "Cedi ghanese" + "cedi ghanese" ], "GIP": [ "GIP", - "Sterlina di Gibilterra" + "sterlina di Gibilterra" ], "GMD": [ "GMD", - "Dalasi del Gambia" + "dalasi del Gambia" ], "GNF": [ "GNF", - "Franco della Guinea" + "franco della Guinea" ], "GNS": [ "GNS", - "Syli della Guinea" + "syli della Guinea" ], "GQE": [ "GQE", - "Ekwele della Guinea Equatoriale" + "ekwele della Guinea Equatoriale" ], "GRD": [ "GRD", - "Dracma Greca" + "dracma greca" ], "GTQ": [ "GTQ", - "Quetzal Guatemalteco" + "quetzal guatemalteco" ], "GWE": [ "GWE", - "Escudo della Guinea portoghese" + "escudo della Guinea portoghese" ], "GWP": [ "GWP", - "Peso della Guinea-Bissau" + "peso della Guinea-Bissau" ], "GYD": [ "GYD", - "Dollaro della Guyana" + "dollaro della Guyana" ], "HKD": [ "HKD", - "Dollaro di Hong Kong" + "dollaro di Hong Kong" ], "HNL": [ "HNL", - "Lempira Honduregna" + "lempira honduregna" ], "HRD": [ "HRD", - "Dinaro Croato" + "dinaro croato" ], "HRK": [ "HRK", - "Kuna Croata" + "kuna croata" ], "HTG": [ "HTG", - "Gourde Haitiano" + "gourde haitiano" ], "HUF": [ "HUF", - "Fiorino Ungherese" + "fiorino ungherese" ], "IDR": [ "IDR", - "Rupia Indonesiana" + "rupia indonesiana" ], "IEP": [ "IEP", - "Sterlina irlandese" + "sterlina irlandese" ], "ILP": [ "ILP", - "Sterlina Israeliana" + "sterlina israeliana" ], "ILS": [ "₪", - "Nuovo siclo israeliano" + "nuovo siclo israeliano" ], "INR": [ "₹", - "Rupia Indiana" + "rupia indiana" ], "IQD": [ "IQD", - "Dinaro iracheno" + "dinaro iracheno" ], "IRR": [ "IRR", - "Rial Iraniano" + "rial iraniano" ], "ISK": [ "ISK", - "Corona islandese" + "corona islandese" ], "ITL": [ "ITL", - "Lira Italiana", + "lira italiana", {} ], "JMD": [ "JMD", - "Dollaro Giamaicano" + "dollaro giamaicano" ], "JOD": [ "JOD", - "Dinaro giordano" + "dinaro giordano" ], "JPY": [ "JPY", - "Yen giapponese" + "yen giapponese" ], "KES": [ "KES", - "Scellino Keniota" + "scellino keniota" ], "KGS": [ "KGS", - "Som Kirghiso" + "som Kirghiso" ], "KHR": [ "KHR", - "Riel Cambogiano" + "riel cambogiano" ], "KMF": [ "KMF", - "Franco Comoriano" + "franco Comoriano" ], "KPW": [ "KPW", - "Won Nordcoreano" + "won nordcoreano" ], "KRW": [ "KRW", - "Won Sudcoreano" + "won sudcoreano" ], "KWD": [ "KWD", - "Dinaro kuwaitiano" + "dinaro kuwaitiano" ], "KYD": [ "KYD", - "Dollaro delle Isole Cayman" + "dollaro delle Isole Cayman" ], "KZT": [ "KZT", - "Tenge kazako" + "tenge kazako" ], "LAK": [ "LAK", - "Kip Laotiano" + "kip laotiano" ], "LBP": [ "LBP", - "Lira libanese" + "lira libanese" ], "LKR": [ "LKR", - "Rupia di Sri Lanka" + "rupia di Sri Lanka" ], "LRD": [ "LRD", - "Dollaro Liberiano" + "dollaro liberiano" ], "LSL": [ "LSL", - "Loti del Lesotho" + "loti del Lesotho" ], "LTL": [ "LTL", - "Litas lituano" + "litas lituano" ], "LTT": [ "LTT", - "Talonas Lituani" + "talonas lituani" ], "LUC": [ "LUC", - "Franco Convertibile del Lussemburgo" + "franco convertibile del Lussemburgo" ], "LUF": [ "LUF", - "Franco del Lussemburgo" + "franco del Lussemburgo" ], "LUL": [ "LUL", - "Franco Finanziario del Lussemburgo" + "franco finanziario del Lussemburgo" ], "LVL": [ "LVL", - "Lats lettone" + "lats lettone" ], "LVR": [ "LVR", - "Rublo Lettone" + "rublo lettone" ], "LYD": [ "LYD", - "Dinaro Libico" + "dinaro libico" ], "MAD": [ "MAD", - "Dirham Marocchino" + "dirham marocchino" ], "MAF": [ "MAF", - "Franco Marocchino" + "franco marocchino" ], "MDL": [ "MDL", - "Leu Moldavo" + "leu moldavo" ], "MGA": [ "MGA", - "Ariary Malgascio" + "ariary malgascio" ], "MGF": [ "MGF", - "Franco Malgascio" + "franco malgascio" ], "MKD": [ "MKD", - "Dinaro Macedone" + "dinaro macedone" ], "MLF": [ "MLF", - "Franco di Mali" + "franco di Mali" ], "MMK": [ "MMK", - "Kyat di Myanmar" + "kyat di Myanmar" ], "MNT": [ "MNT", - "Tugrik mongolo" + "tugrik mongolo" ], "MOP": [ "MOP", - "Pataca di Macao" + "pataca di Macao" ], "MRO": [ "MRO", - "Ouguiya della Mauritania" + "ouguiya della Mauritania" ], "MTL": [ "MTL", - "Lira Maltese" + "lira maltese" ], "MTP": [ "MTP", - "Sterlina Maltese" + "sterlina maltese" ], "MUR": [ "MUR", - "Rupia Mauriziana" + "rupia mauriziana" ], "MVR": [ "MVR", - "Rufiyaa delle Maldive" + "rufiyaa delle Maldive" ], "MWK": [ "MWK", - "Kwacha Malawiano" + "kwacha malawiano" ], "MXN": [ "MXN", - "Peso Messicano" + "peso messicano" ], "MXP": [ "MXP", - "Peso messicano d’argento (1861–1992)" + "peso messicano d’argento (1861–1992)" ], "MXV": [ "MXV", - "Unidad de Inversion (UDI) Messicana" + "unidad de inversion (UDI) messicana" ], "MYR": [ "MYR", - "Ringgit della Malesia" + "ringgit della Malesia" ], "MZE": [ "MZE", - "Escudo del Mozambico" + "escudo del Mozambico" ], "MZN": [ "MZN", - "Metical mozambicano" + "metical mozambicano" ], "NAD": [ "NAD", - "Dollaro Namibiano" + "dollaro namibiano" ], "NGN": [ "NGN", - "Naira Nigeriana" + "naira nigeriana" ], "NIC": [ "NIC", - "Cordoba Nicaraguense" + "cordoba nicaraguense" ], "NIO": [ "NIO", - "Córdoba Nicaraguense" + "córdoba nicaraguense" ], "NLG": [ "NLG", - "Fiorino Olandese" + "fiorino olandese" ], "NOK": [ "NOK", - "Corona norvegese" + "corona norvegese" ], "NPR": [ "NPR", - "Rupia Nepalese" + "rupia nepalese" ], "NZD": [ "NZ$", - "Dollaro Neozelandese" + "dollaro neozelandese" ], "OMR": [ "OMR", - "Rial dell’Oman" + "rial dell’Oman" ], "PAB": [ "PAB", - "Balboa di Panama" + "balboa di Panama" ], "PEI": [ "PEI", - "Inti Peruviano" + "inti peruviano" ], "PEN": [ "PEN", - "Sol Nuevo Peruviano" + "sol nuevo peruviano" ], "PES": [ "PES", - "Sol Peruviano" + "sol peruviano" ], "PGK": [ "PGK", - "Kina della Papua Nuova Guinea" + "kina della Papua Nuova Guinea" ], "PHP": [ "PHP", - "Peso delle Filippine" + "peso delle Filippine" ], "PKR": [ "PKR", - "Rupia del Pakistan" + "rupia del Pakistan" ], "PLN": [ "PLN", - "Złoty polacco" + "złoty polacco" ], "PLZ": [ "PLZ", - "Złoty Polacco (1950–1995)" + "złoty Polacco (1950–1995)" ], "PTE": [ "PTE", - "Escudo Portoghese" + "escudo portoghese" ], "PYG": [ "PYG", - "Guaraní del Paraguay" + "guaraní del Paraguay" ], "QAR": [ "QAR", - "Rial del Qatar" + "rial del Qatar" ], "RHD": [ "RHD", - "Dollaro della Rhodesia" + "dollaro della Rhodesia" ], "ROL": [ "ROL", - "Leu della Romania" + "leu della Romania" ], "RON": [ "RON", - "Leu Rumeno" + "leu rumeno" ], "RSD": [ "RSD", - "Dinaro Serbo" + "dinaro serbo" ], "RUB": [ "RUB", - "Rublo Russo" + "rublo russo" ], "RUR": [ "RUR", - "Rublo della CSI" + "rublo della CSI" ], "RWF": [ "RWF", - "Franco Ruandese" + "franco ruandese" ], "SAR": [ "SAR", - "Riyal saudita" + "riyal saudita" ], "SBD": [ "SBD", - "Dollaro delle Isole Solomon" + "dollaro delle Isole Solomon" ], "SCR": [ "SCR", - "Rupia delle Seychelles" + "rupia delle Seychelles" ], "SDD": [ "SDD", - "Dinaro Sudanese" + "dinaro sudanese" ], "SDG": [ "SDG", - "Sterlina Sudanese" + "sterlina sudanese" ], "SEK": [ "SEK", - "Corona svedese" + "corona svedese" ], "SGD": [ "SGD", - "Dollaro di Singapore" + "dollaro di Singapore" ], "SHP": [ "SHP", - "Sterlina di Sant’Elena" + "sterlina di Sant’Elena" ], "SIT": [ "SIT", - "Tallero Sloveno" + "tallero sloveno" ], "SKK": [ "SKK", - "Corona Slovacca" + "corona slovacca" ], "SLL": [ "SLL", - "Leone della Sierra Leone" + "leone della Sierra Leone" ], "SOS": [ "SOS", - "Scellino Somalo" + "scellino somalo" ], "SRD": [ "SRD", - "Dollaro Surinamese" + "dollaro surinamese" ], "SRG": [ "SRG", - "Fiorino del Suriname" + "fiorino del Suriname" ], "SSP": [ "SSP", - "Sterlina sudsudanese" + "sterlina sudsudanese" ], "STD": [ "STD", - "Dobra di Sao Tomé e Principe" + "dobra di Sao Tomé e Principe" ], "SUR": [ "SUR", - "Rublo Sovietico" + "rublo sovietico" ], "SVC": [ "SVC", - "Colón Salvadoregno" + "colón salvadoregno" ], "SYP": [ "SYP", - "Lira siriana" + "lira siriana" ], "SZL": [ "SZL", - "Lilangeni dello Swaziland" + "lilangeni dello Swaziland" ], "THB": [ "฿", - "Baht thailandese" + "baht thailandese" ], "TJR": [ "TJR", - "Rublo del Tajikistan" + "rublo del Tajikistan" ], "TJS": [ "TJS", - "Somoni del Tajikistan" + "somoni del Tajikistan" ], "TMM": [ "TMM", - "Manat Turkmeno (1993–2009)" + "manat turkmeno (1993–2009)" ], "TMT": [ "TMT", - "Manat Turkmeno" + "manat turkmeno" ], "TND": [ "TND", - "Dinaro Tunisino" + "dinaro tunisino" ], "TOP": [ "TOP", - "Paʻanga di Tonga" + "paʻanga di Tonga" ], "TPE": [ "TPE", - "Escudo di Timor" + "escudo di Timor" ], "TRL": [ "TRL", - "Lira turca (1922–2005)" + "lira turca (1922–2005)" ], "TRY": [ "TRY", - "Lira turca" + "lira turca" ], "TTD": [ "TTD", - "Dollaro di Trinidad e Tobago" + "dollaro di Trinidad e Tobago" ], "TWD": [ "TWD", - "Nuovo dollaro taiwanese" + "nuovo dollaro taiwanese" ], "TZS": [ "TZS", - "Scellino della Tanzania" + "scellino della Tanzania" ], "UAH": [ "UAH", - "Grivnia Ucraina" + "grivnia ucraina" ], "UAK": [ "UAK", - "Karbovanetz Ucraino" + "karbovanetz ucraino" ], "UGS": [ "UGS", - "Scellino Ugandese (1966–1987)" + "scellino ugandese (1966–1987)" ], "UGX": [ "UGX", - "Scellino Ugandese" + "scellino ugandese" ], "USD": [ "US$", - "Dollaro Statunitense" + "dollaro statunitense" ], "USN": [ "USN", - "Dollaro Statunitense (Next day)" + "dollaro statunitense (next day)" ], "USS": [ "USS", - "Dollaro Statunitense (Same day)" + "dollaro statunitense (same day)" ], "UYI": [ "UYI", - "Peso uruguaiano in unità indicizzate" + "peso uruguaiano in unità indicizzate" ], "UYP": [ "UYP", - "Peso Uruguaiano (1975–1993)" + "peso uruguaiano (1975–1993)" ], "UYU": [ "UYU", - "Peso Uruguaiano" + "peso uruguaiano" ], "UZS": [ "UZS", - "Sum dell’Uzbekistan" + "sum dell’Uzbekistan" ], "VEB": [ "VEB", - "Bolivar Venezuelano (1871–2008)" + "bolivar venezuelano (1871–2008)" ], "VEF": [ "VEF", - "Bolívar Venezuelano" + "bolívar venezuelano" ], "VND": [ "₫", - "Dong Vietnamita" + "dong vietnamita" ], "VUV": [ "VUV", - "Vatu di Vanuatu" + "vatu di Vanuatu" ], "WST": [ "WST", - "Tala della Samoa Occidentale" + "tala della Samoa Occidentale" ], "XAF": [ "FCFA", - "Franco CFA BEAC" + "franco CFA BEAC" ], "XCD": [ "EC$", - "Dollaro dei Caraibi Orientali" + "dollaro dei Caraibi Orientali" ], "XFO": [ "XFO", - "Franco Oro Francese" + "franco oro francese" ], "XFU": [ "XFU", - "Franco UIC Francese" + "franco UIC francese" ], "XOF": [ "CFA", - "Franco CFA BCEAO" + "franco CFA BCEAO" ], "XPF": [ "CFPF", - "Franco CFP" + "franco CFP" ], "XRE": [ "XRE", - "Fondi RINET" + "fondi RINET" ], "YDD": [ "YDD", - "Dinaro dello Yemen" + "dinaro dello Yemen" ], "YER": [ "YER", - "Riyal yemenita" + "riyal yemenita" ], "YUD": [ "YUD", - "Dinaro Forte Yugoslavo" + "dinaro forte yugoslavo" ], "YUM": [ "YUM", - "Dinaro Noviy Yugoslavo" + "dinaro noviy yugoslavo" ], "YUN": [ "YUN", - "Dinaro Convertibile Yugoslavo" + "dinaro convertibile yugoslavo" ], "ZAL": [ "ZAL", - "Rand Sudafricano (finanziario)" + "rand sudafricano (finanziario)" ], "ZAR": [ "ZAR", - "Rand Sudafricano" + "rand sudafricano" ], "ZMK": [ "ZMK", - "Kwacha dello Zambia (1968–2012)" + "kwacha dello Zambia (1968–2012)" ], "ZMW": [ "ZMW", - "Kwacha dello Zambia" + "kwacha dello Zambia" ], "ZRN": [ "ZRN", - "Nuovo Zaire dello Zaire" + "nuovo zaire dello Zaire" ], "ZRZ": [ "ZRZ", - "Zaire dello Zaire" + "zaire dello Zaire" ], "ZWD": [ "ZWD", - "Dollaro dello Zimbabwe" + "dollaro dello Zimbabwe" ], "ZWL": [ "ZWL", - "Dollaro Zimbabwiano (2009)" + "dollaro zimbabwiano (2009)" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index 951283a0608cd..2e6806ec124e9 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index 7571bfea3c753..c530b832ace13 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index ffc1f2262f6c0..b8d6a47de3d59 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.8.95", + "Version": "2.1.13.22", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json index 7e2bcdbf92ecd..ddeda42382e05 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/km.json b/src/Symfony/Component/Intl/Resources/data/currencies/km.json index 5c1a884d5683c..4c63a738f616d 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.8.9", + "Version": "2.1.13.51", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json index 6137a2d58b99a..f62766a02d75c 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.8.9", + "Version": "2.1.13.51", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index c167f3a39f69b..f67b15d0036e7 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.9.31", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json index 13b6e6ab48f23..87d3760ebf904 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json index 51cad80d1806a..6154ed57642ee 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "GBP", - "британия фунт стерлинги" + "британия фунт" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index b9ffdbca48115..58bd7501ae673 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Britescht Pond Sterling" + "Britescht Pond" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json index 9284bd75e404a..c40ee1193c9ac 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index 62b1d867df20a..c8b8ab5af3ab9 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.8.9", + "Version": "2.1.13.46", "Names": { "ADP": [ "ADP", @@ -366,7 +366,7 @@ "Etiopijos biras" ], "EUR": [ - "EUR", + "€", "Euras" ], "FIM": [ @@ -387,7 +387,7 @@ ], "GBP": [ "GBP", - "Didžiosios Britanijos svaras sterlingų" + "Didžiosios Britanijos svaras" ], "GEK": [ "GEK", @@ -994,7 +994,7 @@ "Ugandos šilingas" ], "USD": [ - "USD", + "dol.", "JAV doleris" ], "USN": [ diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json index 6d250f5145394..205c38f81c549 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -227,7 +227,7 @@ ], "GBP": [ "£", - "Lielbritānijas sterliņu mārciņa" + "Lielbritānijas mārciņa" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json index fa0390621c6f9..1dbc23d9681e4 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.7.12", + "Version": "2.1.12.90", "Currencies": [ "ADP", "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index fa8de995cbb30..3a3b09df2a80f 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index 7441c524bcb3d..4c49721988cb5 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json index 4ffd1da9be67c..108aee4ed3ded 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "британийн фунт стерлинг" + "британийн фунт" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json index b6a4e1c3638eb..8be401c36ef7a 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json index 077ef9cca7921..331e480dc528e 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "Paun Sterling British" + "Paun British" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json index 862555c26c819..19c5b1f7ff7df 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.8.22", + "Version": "2.1.10.93", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/my.json b/src/Symfony/Component/Intl/Resources/data/currencies/my.json index 293c450a90bc2..10854e410858c 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.8.9", + "Version": "2.1.13.21", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json index d400f608d122d..e22550d15e371 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "britiske pund sterling" + "britiske pund" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json index e88c69f71370d..d6715b33fd7a7 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.8.95", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -251,7 +251,7 @@ ], "INR": [ "₹", - "भारती रूपिँया" + "भारतीय रूपिँया" ], "IQD": [ "IQD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ne_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ne_IN.json deleted file mode 100644 index d3edcc9b77fb4..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ne_IN.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "INR": [ - "₹", - "भारतीय रूपिँया" - ] - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json index c341ff3e1f55c..73d197e026f80 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "Brits pond sterling" + "Brits pond" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json index 7a7210f4d0338..0914f799243a9 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.7.72", + "Version": "2.1.10.42", "Names": { "ADP": [ "ADP", @@ -343,7 +343,7 @@ ], "GBP": [ "£", - "britisk pund sterling" + "britisk pund" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/no.json b/src/Symfony/Component/Intl/Resources/data/currencies/no.json index d400f608d122d..e22550d15e371 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "britiske pund sterling" + "britiske pund" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index 7f16e532728ec..d59c175813aeb 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.6.69", + "Version": "2.1.10.42", "Names": { "BRL": [ "R$", @@ -19,7 +19,7 @@ ], "GBP": [ "£", - "British Pound Sterling" + "British Pound" ], "INR": [ "₹", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os.json b/src/Symfony/Component/Intl/Resources/data/currencies/os.json index e08970a771726..521ba31f5428d 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.7.53", + "Version": "2.1.10.93", "Names": { "BRL": [ "R$", @@ -11,7 +11,7 @@ ], "GBP": [ "£", - "Бритайнаг Стерлингы Фунт" + "Бритайнаг Фунт" ], "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 2e81c9b6f8967..41d6b1b17a31a 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json index c075327e73774..35525dfd8c9d9 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.8.95", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json index 0d7885119b97e..e1b475287d8aa 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -387,7 +387,7 @@ ], "GBP": [ "£", - "Libra esterlina britânica" + "Libra britânica" ], "GEK": [ "GEK", 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 f517cce1278dd..76e609f7babfc 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.8.19", + "Version": "2.1.13.23", "Names": { "AED": [ "AED", @@ -215,11 +215,11 @@ ], "NIC": [ "NIC", - "Córdoba nicaraguano" + "Córdoba nicaraguano (1988–1991)" ], "NIO": [ "NIO", - "Córdoba de ouro da Nicarágua" + "Córdoba nicaraguano" ], "OMR": [ "OMR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json index 10f5659888663..4351c7f408f3b 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json index 3ce413194290f..9ddc4566b7b70 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/root.json b/src/Symfony/Component/Intl/Resources/data/currencies/root.json index c79a29e717297..9e62635660146 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.7.12", + "Version": "2.1.12.90", "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 e2360655b0b0c..f7fbd8dccba2e 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.8.9", + "Version": "2.1.13.53", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Английский фунт стерлингов" + "Английский фунт" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json index 094692f22aa79..fe5fb815353f2 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.8.20", + "Version": "2.1.13.24", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Britanska funta sterlinga" + "Britanska funta" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sh_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/sh_BA.json deleted file mode 100644 index de384456313ad..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sh_BA.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.20", - "Names": { - "BAM": [ - "KM", - "Konvertibilna Marka" - ] - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index b013787dcdf9b..6da5d05eb40d7 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json index babe5aecb11f1..fef89f82d9336 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json index 1f2efda0eb89a..99fa96ce49d99 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so.json b/src/Symfony/Component/Intl/Resources/data/currencies/so.json index 2b2e66b4e2516..4f09a72d60f18 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.7.39", + "Version": "2.1.10.93", "Names": { "DJF": [ "DJF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json index c3208b184963a..d4ee9c89667c8 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json index e22103657ca77..d91f361fc6b18 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Британска фунта стерлинга" + "Британска фунта" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr_BA.json deleted file mode 100644 index 0d98ed23efadd..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr_BA.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "BAM": [ - "КМ", - "Конвертибилна Марка" - ] - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Cyrl_BA.json deleted file mode 100644 index 0d98ed23efadd..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Cyrl_BA.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "BAM": [ - "КМ", - "Конвертибилна Марка" - ] - } -} 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 094692f22aa79..fe5fb815353f2 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.8.20", + "Version": "2.1.13.24", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "£", - "Britanska funta sterlinga" + "Britanska funta" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn_BA.json deleted file mode 100644 index de384456313ad..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn_BA.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.20", - "Names": { - "BAM": [ - "KM", - "Konvertibilna Marka" - ] - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index 7204e113af07a..ffafa0646eb0b 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index 2fdc0c4429148..22e6497f714f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json @@ -1,9 +1,9 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", - "dirham ya Falme za Kiarabu" + "Dirham ya Falme za Kiarabu" ], "AFN": [ "AFN", @@ -23,7 +23,7 @@ ], "AOA": [ "AOA", - "kwanza ya Angola" + "Kwanza ya Angola" ], "ARS": [ "ARS", @@ -31,7 +31,7 @@ ], "AUD": [ "A$", - "dola ya Australia" + "Dola ya Australia" ], "AWG": [ "AWG", @@ -59,11 +59,11 @@ ], "BHD": [ "BHD", - "dinari ya Bahareni" + "Dinari ya Bahareni" ], "BIF": [ "BIF", - "faranga ya Burundi" + "Faranga ya Burundi" ], "BMD": [ "BMD", @@ -91,7 +91,7 @@ ], "BWP": [ "BWP", - "pula ya Botswana" + "Pula ya Botswana" ], "BYR": [ "BYR", @@ -103,15 +103,15 @@ ], "CAD": [ "CA$", - "dola ya Kanada" + "Dola ya Kanada" ], "CDF": [ "CDF", - "faranga ya Kongo" + "Faranga ya Kongo" ], "CHF": [ "CHF", - "faranga ya Uswisi" + "Faranga ya Uswisi" ], "CLP": [ "CLP", @@ -119,7 +119,7 @@ ], "CNY": [ "CN¥", - "yuan ya Uchina" + "Yuan ya Uchina" ], "COP": [ "COP", @@ -139,7 +139,7 @@ ], "CVE": [ "CVE", - "eskudo ya Kepuvede" + "Eskudo ya Kepuvede" ], "CZK": [ "CZK", @@ -147,7 +147,7 @@ ], "DJF": [ "DJF", - "faranga ya Jibuti" + "Faranga ya Jibuti" ], "DKK": [ "DKK", @@ -159,23 +159,23 @@ ], "DZD": [ "DZD", - "dinari ya Aljeria" + "Dinari ya Aljeria" ], "EGP": [ "EGP", - "pauni ya Misri" + "Pauni ya Misri" ], "ERN": [ "ERN", - "nakfa ya Eritrea" + "Nakfa ya Eritrea" ], "ETB": [ "ETB", - "birr ya Uhabeshi" + "Nirr ya Uhabeshi" ], "EUR": [ "€", - "yuro" + "Yuro" ], "FJD": [ "FJD", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "pauni ya Uingereza" + "Pauni ya Uingereza" ], "GEL": [ "GEL", @@ -195,7 +195,7 @@ ], "GHC": [ "GHC", - "sedi ya Ghana" + "Sedi ya Ghana" ], "GHS": [ "GHS", @@ -207,15 +207,15 @@ ], "GMD": [ "GMD", - "dalasi ya Gambia" + "Dalasi ya Gambia" ], "GNF": [ "GNF", - "faranga ya Guinea" + "Faranga ya Guinea" ], "GNS": [ "GNS", - "faranga ya Gine" + "Faranga ya Gine" ], "GTQ": [ "GTQ", @@ -255,7 +255,7 @@ ], "INR": [ "₹", - "rupia ya India" + "Rupia ya India" ], "IQD": [ "IQD", @@ -283,7 +283,7 @@ ], "KES": [ "Ksh", - "shilingi ya Kenya" + "Shilingi ya Kenya" ], "KGS": [ "KGS", @@ -295,7 +295,7 @@ ], "KMF": [ "KMF", - "faranga ya Komoro" + "Faranga ya Komoro" ], "KPW": [ "KPW", @@ -331,11 +331,11 @@ ], "LRD": [ "LRD", - "dola ya Liberia" + "Dola ya Liberia" ], "LSL": [ "LSL", - "loti ya Lesoto" + "Loti ya Lesoto" ], "LTL": [ "LTL", @@ -347,11 +347,11 @@ ], "LYD": [ "LYD", - "dinari ya Libya" + "Dinari ya Libya" ], "MAD": [ "MAD", - "dirham ya Moroko" + "Dirham ya Moroko" ], "MDL": [ "MDL", @@ -383,7 +383,7 @@ ], "MUR": [ "MUR", - "rupia ya Morisi" + "Rupia ya Morisi" ], "MVR": [ "MVR", @@ -391,7 +391,7 @@ ], "MWK": [ "MWK", - "kwacha ya Malawi" + "Kwacha ya Malawi" ], "MXN": [ "MX$", @@ -403,7 +403,7 @@ ], "MZM": [ "MZM", - "metikali ya Msumbiji (1980–2006)" + "Metikali ya Msumbiji (1980–2006)" ], "MZN": [ "MZN", @@ -411,11 +411,11 @@ ], "NAD": [ "NAD", - "dola ya Namibia" + "Dola ya Namibia" ], "NGN": [ "NGN", - "naira ya Nijeria" + "Naira ya Nijeria" ], "NIO": [ "NIO", @@ -483,11 +483,11 @@ ], "RWF": [ "RWF", - "faranga ya Rwanda" + "Faranga ya Rwanda" ], "SAR": [ "SAR", - "riyal ya Saudia" + "Riyal ya Saudia" ], "SBD": [ "SBD", @@ -495,15 +495,15 @@ ], "SCR": [ "SCR", - "rupia ya Ushelisheli" + "Rupia ya Ushelisheli" ], "SDG": [ "SDG", - "pauni ya Sudani" + "Pauni ya Sudani" ], "SDP": [ "SDP", - "pauni ya Sudani (1957–1998)" + "Pauni ya Sudani (1957–1998)" ], "SEK": [ "SEK", @@ -515,15 +515,15 @@ ], "SHP": [ "SHP", - "pauni ya Santahelena" + "Pauni ya Santahelena" ], "SLL": [ "SLL", - "leoni" + "Leoni" ], "SOS": [ "SOS", - "shilingi ya Somalia" + "Shilingi ya Somalia" ], "SRD": [ "SRD", @@ -531,11 +531,11 @@ ], "SSP": [ "SSP", - "pauni ya Sudani Kusini" + "Pauni ya Sudani Kusini" ], "STD": [ "STD", - "dobra ya Sao Tome na Principe" + "Dobra ya Sao Tome na Principe" ], "SYP": [ "SYP", @@ -543,7 +543,7 @@ ], "SZL": [ "SZL", - "lilangeni" + "Lilangeni" ], "THB": [ "฿", @@ -559,7 +559,7 @@ ], "TND": [ "TND", - "dinari ya Tunisia" + "Dinari ya Tunisia" ], "TOP": [ "TOP", @@ -579,7 +579,7 @@ ], "TZS": [ "TSh", - "shilingi ya Tanzania" + "Shilingi ya Tanzania" ], "UAH": [ "UAH", @@ -587,11 +587,11 @@ ], "UGX": [ "UGX", - "shilingi ya Uganda" + "Shilingi ya Uganda" ], "USD": [ "US$", - "dola ya Marekani" + "Dola ya Marekani" ], "UYU": [ "UYU", @@ -639,19 +639,19 @@ ], "ZAR": [ "ZAR", - "randi ya Afrika Kusini" + "Randi ya Afrika Kusini" ], "ZMK": [ "ZMK", - "kwacha ya Zambia (1968–2012)" + "Kwacha ya Zambia (1968–2012)" ], "ZMW": [ "ZMW", - "kwacha ya Zambia" + "Kwacha ya Zambia" ], "ZWD": [ "ZWD", - "dola ya Zimbabwe" + "Dola ya Zimbabwe" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json new file mode 100644 index 0000000000000..0923f8b789f3e --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json @@ -0,0 +1,41 @@ +{ + "Version": "2.1.11.52", + "Names": { + "CDF": [ + "FC", + "Faranga ya Kongo" + ], + "CNY": [ + "CN¥", + "Yuan Renminbi ya China" + ], + "ETB": [ + "ETB", + "Bir ya Uhabeshi" + ], + "JPY": [ + "JP¥", + "Sarafu ya Kijapani" + ], + "MGA": [ + "MGA", + "Ariary ya Bukini" + ], + "MRO": [ + "MRO", + "Ugwiya ya Moritania" + ], + "SCR": [ + "SCR", + "Rupia ya Shelisheli" + ], + "XAF": [ + "FCFA", + "Faranga CFA BEAC" + ], + "XOF": [ + "CFA", + "Faranga CFA BCEAO" + ] + } +} 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 8aba78576eb60..8f1c264e8aef0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json @@ -3,7 +3,7 @@ "Names": { "UGX": [ "USh", - "shilingi ya Uganda" + "Shilingi ya Uganda" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json index 7f91c49bd03ee..dcdf74ef43077 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", 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 d1083c0a62c54..64d4094e7c419 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json @@ -1,9 +1,9 @@ { - "Version": "2.1.6.69", + "Version": "2.1.11.74", "Names": { "MYR": [ "RM", - "மலேசிய ரிங்கிட்" + "மலேஷியன் ரிங்கித்" ], "SGD": [ "S$", 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 e6413e1e61653..5981906e9fa0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json @@ -1,9 +1,9 @@ { - "Version": "2.1.6.69", + "Version": "2.1.11.74", "Names": { "MYR": [ "RM", - "மலேசிய ரிங்கிட்" + "மலேஷியன் ரிங்கித்" ], "SGD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/te.json b/src/Symfony/Component/Intl/Resources/data/currencies/te.json index e87a650ab6916..6420cca2d514f 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/th.json b/src/Symfony/Component/Intl/Resources/data/currencies/th.json index 4216d807d18dc..b77bcef54d505 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", 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 66eef5f8fc41f..d288402e88f87 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.6.69", + "Version": "2.1.10.93", "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 3e628f034fed0..aff684c7af16c 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -199,7 +199,7 @@ ], "GBP": [ "£", - "British Pound Sterling" + "British Pound" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index 87fddbce11ee6..a5dcb2b54be98 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.8.9", + "Version": "2.1.12.94", "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 94ca894db6a2c..506535f1f7f5e 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json index a67541013bbdc..059e1381efb43 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -347,7 +347,7 @@ ], "GBP": [ "GBP", - "англійський фунт стерлінгів" + "англійський фунт" ], "GEK": [ "GEK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json index c11070323833a..d80fee33505e9 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -155,7 +155,7 @@ ], "DKK": [ "DKK", - "ڈنمارک کرونر" + "ڈنمارک کرون" ], "DOP": [ "DOP", @@ -419,7 +419,7 @@ ], "NOK": [ "NOK", - "ناروے کرونر" + "ناروے کرون" ], "NPR": [ "NPR", 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 8423eee0c11d9..64e2ae190455c 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.8.19", + "Version": "2.1.13.23", "Names": { "CRC": [ "CRC", @@ -17,10 +17,6 @@ "CVE", "کیپ ورڈی اسکیوڈو" ], - "DKK": [ - "DKK", - "ڈنمارک کرون" - ], "ERN": [ "ERN", "اریٹیریائی ناکفا" @@ -33,10 +29,6 @@ "GHS", "گھانی سیڈی" ], - "NOK": [ - "NOK", - "ناروے کرون" - ], "PKR": [ "PKR", "پاکستانی روپیہ" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json index ab7680ad2aaed..d4a0246ec6b1c 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.8.9", + "Version": "2.1.12.94", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "Ingliz funt sterlingi" + "Ingliz funt" ], "GEL": [ "GEL", 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 2fb1f2d39bd19..8481178bfc736 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.7.39", + "Version": "2.1.10.42", "Names": { "ANG": [ "ANG", @@ -91,7 +91,7 @@ ], "GBP": [ "£", - "Инглиз фунт стерлинги" + "Инглиз фунт" ], "GTQ": [ "GTQ", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json index d926ed1cba89d..41783833923b1 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -571,7 +571,7 @@ ], "LSL": [ "LSL", - "Đồng loti của Lesotho" + "Ioti Lesotho" ], "LTL": [ "LTL", @@ -699,7 +699,7 @@ ], "MZE": [ "MZE", - "Đồng Escudo Mozambique" + "Escudo Mozambique" ], "MZM": [ "MZM", @@ -895,7 +895,7 @@ ], "SVC": [ "SVC", - "Đồng Colón Salvador" + "Colón El Salvador" ], "SYP": [ "SYP", 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 10e0189ea55ce..b0065f2cf553a 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.8.19", + "Version": "2.1.13.24", "Names": { "AED": [ "AED", @@ -65,6 +65,10 @@ "ETB", "Biri ti Orílɛ́ède Eutopia" ], + "EUR": [ + "€", + "Uro" + ], "GBP": [ "£", "Pɔɔn ti Orílɛ́ède Bírítísì" @@ -165,6 +169,10 @@ "SHP", "Pɔɔun ti Orílɛ́ède ̣Elena" ], + "SLL": [ + "SLL", + "Lioni" + ], "SOS": [ "SOS", "Sile ti Orílɛ́ède Somali" @@ -173,6 +181,10 @@ "STD", "Dobira ti Orílɛ́ède Sao tome Ati Pirisipe" ], + "SZL": [ + "SZL", + "Lilangeni" + ], "TND": [ "TND", "Dina ti Orílɛ́ède Tunisia" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index 2626206f0f498..61e5aa018253f 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.8.9", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json index 19b989b23eb92..08514bbb9b120 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json @@ -1,14 +1,10 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { "AED": [ "AED", "阿拉伯聯合酋長國迪爾汗" ], - "AUD": [ - "AU$", - "澳元" - ], "AWG": [ "AWG", "阿魯巴盾" @@ -19,15 +15,11 @@ ], "BAD": [ "BAD", - "波斯尼亞-黑塞哥維那第納爾" + "波斯尼亞-赫塞哥維納第納爾" ], "BAM": [ "BAM", - "波士尼亞與赫塞哥維納可轉換馬克" - ], - "CAD": [ - "CA$", - "加元" + "波斯尼亞-赫塞哥維納可轉換馬克" ], "CRC": [ "CRC", @@ -59,24 +51,16 @@ ], "MUR": [ "MUR", - "毛里求斯盧布" + "毛里裘斯盧布" ], "MZN": [ "MZN", - "莫桑比克美提卡" + "莫桑比克梅蒂卡爾" ], "NGN": [ "NGN", "尼日利亞奈拉" ], - "NZD": [ - "NZ$", - "紐西蘭元" - ], - "RSD": [ - "RSD", - "塞爾維亞第納爾" - ], "RWF": [ "RWF", "盧旺達法郎" @@ -85,14 +69,6 @@ "SAR", "沙特阿拉伯里亞爾" ], - "SGD": [ - "SGD", - "新加坡元" - ], - "TWD": [ - "NT$", - "新台幣" - ], "USD": [ "US$", "美元" 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 d9121e0a0620c..5d0d246ba04a9 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.8.19", + "Version": "2.1.13.23", "Names": { "AWG": [ "AWG", @@ -9,25 +9,13 @@ "CN¥", "人民币" ], - "HNL": [ - "HNL", - "洪都拉斯拉伦皮拉" - ], "KYD": [ "KYD", "开曼群岛元" ], - "KZT": [ - "KZT", - "哈萨克斯坦腾格" - ], "NIO": [ "NIO", "尼加拉瓜科多巴" - ], - "UAH": [ - "UAH", - "乌克兰赫夫纳" ] } } 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 f1bed7608d45e..7d8f818dd7c41 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,22 +1,14 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "AWG": [ "AWG", "阿鲁巴弗罗林" ], - "BAN": [ - "BAN", - "波士尼亚-赫塞哥维纳第纳尔 (1994–1997)" - ], "CNY": [ "CN¥", "人民币" ], - "KZT": [ - "KZT", - "哈萨克斯坦腾格" - ], "MOP": [ "MOP$", "澳门元" 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 de974f9c998db..ac19b5a4e8413 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.8.19", + "Version": "2.1.13.23", "Names": { "AWG": [ "AWG", @@ -9,10 +9,6 @@ "CN¥", "人民币" ], - "KZT": [ - "KZT", - "哈萨克斯坦腾格" - ], "NIO": [ "NIO", "尼加拉瓜科多巴" 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 ff2492d8141c1..34b1bc54165b3 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.8.95", + "Version": "2.1.12.94", "Names": { "ADP": [ "ADP", @@ -443,7 +443,7 @@ ], "GYD": [ "GYD", - "圭亞那元" + "蓋亞那元" ], "HKD": [ "HK$", @@ -763,7 +763,7 @@ ], "OMR": [ "OMR", - "阿曼里奧" + "阿曼里亞爾" ], "PAB": [ "PAB", @@ -811,7 +811,7 @@ ], "QAR": [ "QAR", - "卡達爾里亞爾" + "卡達里亞爾" ], "RHD": [ "RHD", @@ -843,7 +843,7 @@ ], "SAR": [ "SAR", - "沙烏地里雅" + "沙烏地里亞爾" ], "SBD": [ "SBD", @@ -1083,7 +1083,7 @@ ], "YER": [ "YER", - "葉門里雅" + "葉門里亞爾" ], "YUD": [ "YUD", 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 19b989b23eb92..08514bbb9b120 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,14 +1,10 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { "AED": [ "AED", "阿拉伯聯合酋長國迪爾汗" ], - "AUD": [ - "AU$", - "澳元" - ], "AWG": [ "AWG", "阿魯巴盾" @@ -19,15 +15,11 @@ ], "BAD": [ "BAD", - "波斯尼亞-黑塞哥維那第納爾" + "波斯尼亞-赫塞哥維納第納爾" ], "BAM": [ "BAM", - "波士尼亞與赫塞哥維納可轉換馬克" - ], - "CAD": [ - "CA$", - "加元" + "波斯尼亞-赫塞哥維納可轉換馬克" ], "CRC": [ "CRC", @@ -59,24 +51,16 @@ ], "MUR": [ "MUR", - "毛里求斯盧布" + "毛里裘斯盧布" ], "MZN": [ "MZN", - "莫桑比克美提卡" + "莫桑比克梅蒂卡爾" ], "NGN": [ "NGN", "尼日利亞奈拉" ], - "NZD": [ - "NZ$", - "紐西蘭元" - ], - "RSD": [ - "RSD", - "塞爾維亞第納爾" - ], "RWF": [ "RWF", "盧旺達法郎" @@ -85,14 +69,6 @@ "SAR", "沙特阿拉伯里亞爾" ], - "SGD": [ - "SGD", - "新加坡元" - ], - "TWD": [ - "NT$", - "新台幣" - ], "USD": [ "US$", "美元" 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 32821ed4f4e42..c817687afa2ac 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.8.19", + "Version": "2.1.11.35", "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 32821ed4f4e42..c817687afa2ac 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.8.19", + "Version": "2.1.11.35", "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 de974f9c998db..ac19b5a4e8413 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.8.19", + "Version": "2.1.13.23", "Names": { "AWG": [ "AWG", @@ -9,10 +9,6 @@ "CN¥", "人民币" ], - "KZT": [ - "KZT", - "哈萨克斯坦腾格" - ], "NIO": [ "NIO", "尼加拉瓜科多巴" diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json index 524e8fedf843d..7305278ee2229 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.8.18", + "Version": "2.1.10.93", "Names": { "AED": [ "AED", @@ -187,7 +187,7 @@ ], "GBP": [ "£", - "i-British Pound Sterling" + "i-British Pound" ], "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index 7bc1cb826ee57..7dfc1b9af6af4 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "Abkasies", "ach": "Akoli", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/am.json b/src/Symfony/Component/Intl/Resources/data/languages/am.json index 2ed91a7a9c8a7..52d5254a0bcfd 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.8.9", + "Version": "2.1.12.94", "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 b0ef65c75bb38..f0db36542bc43 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar.json @@ -1,12 +1,12 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "aa": "الأفارية", "ab": "الأبخازية", "ace": "الأتشينيزية", "ach": "الأكولية", "ada": "الأدانجمية", - "ady": "الأديجه", + "ady": "الأديغة", "ae": "الأفستية", "af": "الأفريقانية", "afh": "الأفريهيلية", @@ -17,7 +17,7 @@ "ale": "الأليوتية", "alt": "الألطائية الجنوبية", "am": "الأمهرية", - "an": "الأراجونية", + "an": "الأراغونية", "ang": "الإنجليزية القديمة", "anp": "الأنجيكا", "ar": "العربية", @@ -27,9 +27,9 @@ "arp": "الأراباهو", "arw": "الأراواكية", "as": "الأسامية", - "asa": "آسو", + "asa": "الآسو", "ast": "الأسترية", - "av": "الأفاريكية", + "av": "الأوارية", "awa": "الأوادية", "ay": "الأيمارا", "az": "الأذربيجانية", @@ -38,15 +38,18 @@ "ban": "اللغة البالية", "bas": "الباسا", "bax": "بامن", - "be": "البيلوروسية", + "bbj": "لغة الغومالا", + "be": "البيلاروسية", "bej": "البيجا", "bem": "البيمبا", "bez": "بينا", + "bfd": "لغة البافوت", "bg": "البلغارية", - "bho": "البهوجبرية", + "bho": "البهوجبورية", "bi": "البيسلامية", "bik": "البيكولية", "bin": "البينية", + "bkm": "لغة الكوم", "bla": "السيكسيكية", "bm": "البامبارا", "bn": "البنغالية", @@ -58,13 +61,16 @@ "bss": "أكوس", "bua": "البرياتية", "bug": "البجينيزية", + "bum": "لغة البولو", "byn": "البلينية", + "byv": "لغة الميدومبا", "ca": "الكتالانية", "cad": "الكادو", "car": "الكاريبية", + "cay": "الكايوجية", "cch": "الأتسام", "ce": "الشيشانية", - "ceb": "السيبيونو", + "ceb": "السيبونية", "cgg": "تشيغا", "ch": "التشامورو", "chb": "التشيبشا", @@ -76,15 +82,15 @@ "chp": "الشيباوايان", "chr": "الشيروكي", "chy": "الشايان", - "ckb": "السريانية الكردية", + "ckb": "السورانية الكردية", "co": "الكورسيكية", "cop": "القبطية", "cr": "الكرى", - "crh": "التركية الكريمينية", + "crh": "لغة تتار القرم", "cs": "التشيكية", "csb": "الكاشبايان", "cu": "سلافية كنسية", - "cv": "التشفاش", + "cv": "التشوفاشي", "cy": "الولزية", "da": "الدانماركية", "dak": "الداكوتا", @@ -98,7 +104,7 @@ "dgr": "الدوجريب", "din": "الدنكا", "dje": "الزارمية", - "doi": "الدوجري", + "doi": "الدوجرية", "dsb": "الصربية السفلى", "dua": "الديولا", "dum": "الهولندية الوسطى", @@ -122,8 +128,9 @@ "enm": "الإنجليزية الوسطى", "eo": "الإسبرانتو", "es": "الإسبانية", - "es_419": "إسبانية أمريكا اللاتينية", + "es_419": "الإسبانية أمريكا اللاتينية", "es_ES": "الإسبانية الأوروبية", + "es_MX": "الإسبانية المكسيكية", "et": "الإستونية", "eu": "لغة الباسك", "ewo": "الإيوندو", @@ -151,7 +158,7 @@ "gay": "الجايو", "gba": "الجبيا", "gd": "الغيلية الأسكتلندية", - "gez": "الجيز", + "gez": "الجعزية", "gil": "لغة أهل جبل طارق", "gl": "الجاليكية", "gmh": "الألمانية العليا الوسطى", @@ -185,6 +192,7 @@ "hz": "الهيريرو", "ia": "اللّغة الوسيطة", "iba": "الإيبان", + "ibb": "الإيبيبيوية", "id": "الإندونيسية", "ie": "الإنترلينج", "ig": "الإيجبو", @@ -199,9 +207,9 @@ "ja": "اليابانية", "jbo": "اللوجبان", "jgo": "نغومبا", - "jmc": "ماتشيم", - "jpr": "الجيدو - الفارسي", - "jrb": "الجيدو - العربي", + "jmc": "الماتشامية", + "jpr": "الفارسية اليهودية", + "jrb": "العربية اليهودية", "jv": "الجاوية", "ka": "الجورجية", "kaa": "الكارا-كالباك", @@ -212,6 +220,7 @@ "kaw": "الكوي", "kbd": "الكاباردايان", "kbl": "كانمبو", + "kcg": "التايابية", "kde": "ماكونده", "kea": "كابوفيرديانو", "kfo": "الكورو", @@ -234,24 +243,25 @@ "kpe": "الكبيل", "kr": "الكانيوري", "krc": "الكاراتشاي-بالكار", - "krl": "الكريلية", - "kru": "كرخانة", + "krl": "الكاريلية", + "kru": "الكوروخ", "ks": "الكشميرية", "ksb": "شامبالا", - "ksf": "بافيا", + "ksf": "لغة البافيا", + "ksh": "لغة الكولونيان", "ku": "الكردية", - "kum": "الكميك", + "kum": "القموقية", "kut": "الكتيناي", "kv": "الكومي", "kw": "الكورنية", "ky": "القرغيزية", "la": "اللاتينية", - "lad": "الإسباعبرية", + "lad": "اللادينو", "lag": "لانجي", "lah": "اللاهندا", "lam": "اللامبا", "lb": "اللوكسمبرجية", - "lez": "الليزجهايانية", + "lez": "الليزجية", "lg": "الجاندا", "li": "الليمبرجيشية", "lkt": "لاكوتا", @@ -265,8 +275,8 @@ "lui": "اللوسينو", "lun": "اللوندا", "luo": "اللو", - "lus": "اللشاي", - "luy": "لويا", + "lus": "الميزو", + "luy": "لغة اللويا", "lv": "اللاتفية", "mad": "المادريز", "mag": "الماجا", @@ -278,7 +288,7 @@ "mdf": "الموكشا", "mdr": "الماندار", "men": "الميند", - "mer": "ميرو", + "mer": "الميرو", "mfe": "المورسيانية", "mg": "المالاجاشية", "mga": "الأيرلندية الوسطى", @@ -292,7 +302,7 @@ "ml": "الماليالام", "mn": "المنغولية", "mnc": "المانشو", - "mni": "المانيبري", + "mni": "المانيبورية", "moh": "الموهوك", "mos": "الموسي", "mr": "الماراثي", @@ -302,24 +312,25 @@ "mul": "لغات متعددة", "mus": "الكريك", "mwl": "الميرانديز", - "mwr": "المارواري", + "mwr": "الماروارية", "my": "البورمية", "myv": "الأرزية", "na": "النورو", "nap": "اللغة النابولية", - "naq": "ناما", + "naq": "لغة الناما", "nb": "البوكمالية النرويجية", "nd": "النديبيل الشمالي", "nds": "الألمانية السفلى", "ne": "النيبالية", - "new": "النيواري", + "new": "النوارية", "ng": "الندونجا", "nia": "النياس", "niu": "النيوي", "nl": "الهولندية", - "nl_BE": "الفلمنك", + "nl_BE": "الفلمنكية", "nmg": "كواسيو", "nn": "النينورسك النرويجي", + "nnh": "لغة النجيمبون", "no": "النرويجية", "nog": "النوجاي", "non": "النورس القديم", @@ -366,17 +377,17 @@ "rn": "الرندي", "ro": "الرومانية", "ro_MD": "المولدوفية", - "rof": "رومبو", + "rof": "الرومبو", "rom": "غجري", "root": "الجذر", "ru": "الروسية", "rup": "الأرومانيان", "rw": "الكينيارواندا", - "rwk": "روا", + "rwk": "الروا", "sa": "السنسكريتية", "sad": "السانداوي", "sah": "الساخية", - "sam": "الآرامية السومارية", + "sam": "الآرامية السامرية", "saq": "سامبورو", "sas": "الساساك", "sat": "السانتالي", @@ -387,11 +398,13 @@ "sco": "الأسكتلندية", "sd": "السندية", "se": "السامي الشمالي", + "see": "السنيكا", "seh": "سينا", "sel": "السيلكب", "ses": "كويرابورو سيني", "sg": "السانجو", "sga": "الأيرلندية القديمة", + "sh": "صربية-كرواتية", "shi": "تشلحيت", "shn": "الشانية", "shu": "العربية التشادية", @@ -413,6 +426,7 @@ "srn": "السرانان تونجو", "srr": "السرر", "ss": "السواتي", + "ssy": "لغة الساهو", "st": "السوتو الجنوبية", "su": "السوندانية", "suk": "السوكوما", @@ -421,7 +435,7 @@ "sv": "السويدية", "sw": "السواحلية", "swb": "القمرية", - "swc": "الكونغو السواحلية", + "swc": "لغة الكونغو السواحلية", "syc": "سريانية تقليدية", "syr": "السريانية", "ta": "التاميلية", @@ -432,8 +446,8 @@ "tet": "التيتم", "tg": "الطاجيكية", "th": "التايلاندية", - "ti": "التيجرينيا", - "tig": "التيجر", + "ti": "التغرينية", + "tig": "التغرية", "tiv": "التيف", "tk": "التركمانية", "tkl": "التوكيلاو", @@ -446,6 +460,7 @@ "tog": "تونجا - نياسا", "tpi": "التوك بيسين", "tr": "التركية", + "trv": "لغة التاروكو", "ts": "السونجا", "tsi": "التسيمشيان", "tt": "التتارية", @@ -454,7 +469,7 @@ "tw": "التوي", "twq": "تاساواق", "ty": "التاهيتية", - "tyv": "التُرك", + "tyv": "التوفية", "tzm": "الأمازيغية وسط الأطلس", "udm": "الأدمرت", "ug": "الأغورية", @@ -463,23 +478,26 @@ "umb": "الأمبندو", "und": "لغة غير معروفة", "ur": "الأردية", - "uz": "الأوزباكية", + "uz": "الأوزبكية", "vai": "الفاي", "ve": "الفيندا", "vi": "الفيتنامية", + "vo": "لغة الفولابوك", "vot": "الفوتيك", - "vun": "فونجو", + "vun": "الفونجو", "wa": "الولونية", - "wal": "الوالامو", + "wae": "الوالسر", + "wal": "الولاياتا", "war": "الواراي", "was": "الواشو", "wo": "الولوف", "xal": "الكالميك", "xh": "الخوسا", - "xog": "سوجا", + "xog": "السوغا", "yao": "الياو", "yap": "اليابيز", "yav": "يانجبن", + "ybb": "يمبا", "yi": "اليديشية", "yo": "اليوروبية", "yue": "الكَنْتُونية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_AE.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_AE.json deleted file mode 100644 index 2d33ff2401acc..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_AE.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "shi": "تكلحيت" - } -} 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 de05a5b030e49..2119327773f8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json @@ -1,104 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.12.17", "Names": { - "ady": "الأديغة", - "ae": "الأفستانية", - "agq": "الأغيمية", - "alt": "الألطية الجنوبية", - "an": "الأرغونية", - "arn": "المابوتشية", - "as": "الأساميزية", - "asa": "الآسو", - "av": "الآفارية", - "ban": "اللغة البالينية", - "bbj": "لغة الغومالا", - "be": "البيلاروسية", - "bfd": "لغة البافوت", - "bho": "البهوجبورية", - "bkm": "لغة الكوم", - "bss": "الأكوسية", - "bum": "لغة البولو", - "byv": "لغة الميدومبا", - "cad": "الكادوية", - "cay": "الكايوجية", - "cch": "الأتسامية", - "ceb": "السيبيونية", - "chr": "الشيروكية", - "ckb": "السورانية الكردية", - "crh": "التركية الكريمانية", - "cv": "التشوفاشي", - "cy": "الولشية", - "da": "الدنماركية", - "doi": "الدوجرية", - "es_419": "الإسبانية أمريكا اللاتينية", - "es_MX": "الإسبانية المكسيكية", - "gba": "الجبايا", - "gez": "الجعزية", - "ibb": "الإيبيبيوية", - "jmc": "الماتشامية", - "jpr": "الفارسية العبرية", - "jrb": "العربية العبرية", - "kcg": "التايابية", - "kde": "الماكوندية", - "kea": "الكابوفيرديانيوية", - "khq": "الكورية التشينية", - "kkj": "الكاكوية", - "kln": "الكالينجينية", - "kn": "الكانادية", - "krl": "الكاريلية", - "kru": "الكيورك", - "ksb": "الشمبالاية", - "ksf": "لغة البافيا", - "ksh": "لغة الكولونيان", - "kum": "الكوميك", - "ky": "الكيرغزستانية", - "lad": "اللادينو", - "lag": "اللانغية", - "lez": "الليزجية", - "lus": "الميزو", - "luy": "لغة اللويا", - "mag": "المغهية", - "mai": "المايثلية", - "mer": "الميرو", - "mgh": "لغة ماكوا ميتو", - "mni": "المانيبورية", - "mr": "الماراثية", - "mwr": "الماروارية", - "naq": "لغة الناما", - "new": "النوارية", - "nl_BE": "الفلمنكية", - "nmg": "لغة الكواسيو", - "nnh": "لغة النجيمبون", - "rof": "الرومبو", - "rom": "الغجرية", - "rwk": "الروا", - "sam": "الآرامية السامرية", - "saq": "السامبورو", - "sbp": "السانغو", - "see": "السينيكا", - "seh": "السينا", - "ses": "لغة الكوري ابروسيني", - "sh": "صربية-كرواتية", - "shi": "التاشلحيت", - "ssy": "لغة الساهو", - "swb": "لغة جزر القمر", - "swc": "لغة الكونغو السواحلية", - "teo": "التيزو", - "ti": "التيغرينية", - "tig": "التيغرية", - "trv": "لغة التاروكو", - "twq": "لغة التاساواك", - "tyv": "التوفية", - "tzm": "التمازيغية الأوسط أطلسية", - "udm": "الأدمرتية", - "ug": "الأويغورية", - "uz": "الأوزبكية", - "vo": "لغة الفولابوك", - "vun": "الفونجو", - "wae": "الوالسر", - "wal": "الولاياتا", - "xog": "السوغا", - "yav": "اليانغبين", - "ybb": "يمبا" + "da": "الدنماركية" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index 6d066f90b4ae2..f4725015c182f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afarca", "ab": "abxaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json index 80b30b42e53d0..ec2c129f47269 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.6.69", + "Version": "2.1.10.34", "Names": { "az": "Азәрбајҹан", "de": "алманҹа", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/be.json b/src/Symfony/Component/Intl/Resources/data/languages/be.json index aa19f88ff53e2..a212c01587304 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.7.39", + "Version": "2.1.10.93", "Names": { "ab": "абхазская", "ady": "адыгейская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index b465ebd2528e5..091ccd56adb59 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.8.9", + "Version": "2.1.12.94", "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 326941e85fe32..8dce220f37e92 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.6.69", + "Version": "2.1.10.42", "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 f7896e5930aca..d8cc5b8aba23a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn.json @@ -1,10 +1,10 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "aa": "আফার", - "ab": "আব্খাজিয়", - "ace": "আচিনিয়", - "ach": "আকোলী", + "ab": "আবখাজিয়ান", + "ace": "অ্যাচাইনিজ", + "ach": "আকোলি", "ada": "অদাগ্মে", "ady": "আদেগে", "ae": "আবেস্তীয়", @@ -19,7 +19,7 @@ "am": "আমহারিক", "an": "আর্গোনিজ", "ang": "প্রাচীন ইংরেজী", - "anp": "আঙ্গীকা", + "anp": "আঙ্গিকা", "ar": "আরবী", "ar_001": "আধুনিক আদর্শ আরবী", "arc": "আরামাইক", @@ -64,13 +64,13 @@ "ce": "চেচেন", "ceb": "চেবুয়ানো", "cgg": "চিগা", - "ch": "চামেরো", + "ch": "চামোরো", "chb": "চিবচা", "chg": "চাগাতাই", "chk": "চুকি", "chm": "মারি", - "chn": "চিনুক পরিভাষা", - "cho": "চক্টো", + "chn": "চিনুক জার্গন", + "cho": "চকটোও", "chp": "চিপেওয়ান", "chr": "চেরোকী", "chy": "শাইয়েন", @@ -81,7 +81,7 @@ "crh": "ক্রিমিয়ান তুর্কি", "cs": "চেক", "csb": "কাশুবিয়ান", - "cu": "চার্চ স্লাভিও", + "cu": "চার্চ স্লাভিক", "cv": "চুবাস", "cy": "ওয়েলশ", "da": "ডেনিশ", @@ -89,14 +89,14 @@ "dar": "দার্গওয়া", "dav": "তাইতা", "de": "জার্মান", - "de_AT": "অস্ট্রিয়ান জার্মানি", + "de_AT": "অস্ট্রিয়ান জারমান", "de_CH": "সুইস উচ্চ জার্মানি", "del": "ডেলাওয়ের", "den": "স্ল্যাভ", "dgr": "দোগ্রীব", "din": "ডিংকা", "dje": "জার্মা", - "doi": "দোগরি", + "doi": "ডোগরি", "dsb": "নিম্নতর সোর্বিয়ান", "dua": "দুয়ালা", "dum": "মধ্য ডাচ", @@ -135,7 +135,7 @@ "fo": "ফেরাউনি", "fon": "ফন", "fr": "ফরাসি", - "fr_CA": "কানাডীয় ফরাসি", + "fr_CA": "ক্যানাডিয়ান ফরাসী", "fr_CH": "সুইস ফরাসি", "frm": "মধ্য ফরাসি", "fro": "প্রাচীন ফরাসি", @@ -367,7 +367,7 @@ "rom": "রোমানি", "root": "মূল", "ru": "রুশ", - "rup": "আরোমানিয়", + "rup": "আরমেনিয়ান", "rw": "কিনয়ারোয়ান্ডা", "rwk": "রাওয়া", "sa": "সংষ্কৃত", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json deleted file mode 100644 index 2ea2f869b1a3e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ab": "আবখাজিয়ান", - "ace": "অ্যাচাইনিজ", - "ach": "আকোলি", - "anp": "আঙ্গিকা", - "ch": "চামোরো", - "chn": "চিনুক জার্গন", - "cho": "চকটোও", - "chp": "চিপেওয়াইয়ান", - "chy": "চেয়েনি", - "cu": "চার্চ স্লাভিক", - "de_AT": "অস্ট্রিয়ান জারমান", - "doi": "ডোগরি", - "fr_CA": "ক্যানাডিয়ান ফরাসী", - "or": "উড়িয়া", - "rup": "আরমেনিয়ান", - "zbl": "ব্লিসসিম্বলস" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/br.json b/src/Symfony/Component/Intl/Resources/data/languages/br.json index 3240c5a44ec2c..6e1ef26bb1737 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.7.39", + "Version": "2.1.10.93", "Names": { "aa": "afar", "ab": "abkhazeg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index 5ceee0a3dcc56..923a16e3b6da2 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.8.9", + "Version": "2.1.13.46", "Names": { "aa": "afarski", "ab": "abhazijski", 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 aa1ac56685594..383b72e8c0c18 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.8.9", + "Version": "2.1.12.94", "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 31d1e853cade4..4b7ca638dd8dd 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "àfar", "ab": "abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index 9081747feefff..73eee811f99a7 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afarština", "ab": "abcházština", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index 028c14502c004..671d45b62e068 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.7.80", + "Version": "2.1.10.93", "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 21c148d6cb057..87825572b535e 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.9.62", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index b545753271a6a..4aeed7af6fdad 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.8.9", + "Version": "2.1.13.4", "Names": { "aa": "Afar", "ab": "Abchasisch", 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 c0f5b6733073c..356407cecec69 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.8.21", + "Version": "2.1.11.70", "Names": { "be": "Weissrussisch", "prg": "Altpreussisch" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ee.json b/src/Symfony/Component/Intl/Resources/data/languages/ee.json index b0b122d3953da..47cf7076fc694 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.8.9", + "Version": "2.1.12.94", "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 64e0de0aa95ef..5da78ea8ca734 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Αφάρ", "ab": "Αμπχαζικά", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en.json b/src/Symfony/Component/Intl/Resources/data/languages/en.json index c32ad77a6d331..8bc3d06d794cc 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.8.87", + "Version": "2.1.13.48", "Names": { "aa": "Afar", "ab": "Abkhazian", @@ -100,7 +100,7 @@ "chp": "Chipewyan", "chr": "Cherokee", "chy": "Cheyenne", - "ckb": "Sorani Kurdish", + "ckb": "Central Kurdish", "co": "Corsican", "cop": "Coptic", "cps": "Capiznon", @@ -582,6 +582,7 @@ "wal": "Wolaytta", "war": "Waray", "was": "Washo", + "wbp": "Warlpiri", "wo": "Wolof", "wuu": "Wu Chinese", "xal": "Kalmyk", 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 dfcea3d09c24a..d78514cbe68ac 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.8.19", + "Version": "2.1.11.59", "Names": { "bax": "Bamum", "en_US": "United States English" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json b/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json deleted file mode 100644 index f7c9ee8b9b01a..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_GB.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "wal": "Walamo" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eo.json b/src/Symfony/Component/Intl/Resources/data/languages/eo.json index 2c41441ea9384..d985e4373e388 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.6.76", + "Version": "2.1.10.93", "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 767d1692beb62..e48dbc36c9f71 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.8.9", + "Version": "2.1.13.21", "Names": { "aa": "afar", "ab": "abjasio", @@ -23,7 +23,7 @@ "ar": "árabe", "ar_001": "árabe estándar moderno", "arc": "arameo", - "arn": "araucano", + "arn": "mapuche", "arp": "arapaho", "arw": "arahuaco", "as": "asamés", @@ -32,8 +32,8 @@ "av": "avar", "awa": "avadhi", "ay": "aimara", - "az": "azerí", - "ba": "bashkir", + "az": "azerbaiyano", + "ba": "baskir", "bal": "baluchi", "ban": "balinés", "bas": "basa", @@ -98,14 +98,14 @@ "dav": "taita", "de": "alemán", "de_AT": "alemán austríaco", - "de_CH": "alto alemán de Suiza", + "de_CH": "alto alemán suizo", "del": "delaware", "den": "slave", "dgr": "dogrib", "din": "dinka", "dje": "zarma", "doi": "dogri", - "dsb": "sorbio inferior", + "dsb": "bajo sorbio", "dua": "duala", "dum": "neerlandés medieval", "dv": "divehi", @@ -128,7 +128,7 @@ "enm": "inglés medieval", "eo": "esperanto", "es": "español", - "es_419": "español de América", + "es_419": "español latinoamericano", "es_ES": "español de España", "es_MX": "español de México", "et": "estonio", @@ -172,7 +172,7 @@ "gsw": "alemán suizo", "gu": "gujarati", "guz": "gusii", - "gv": "gaélico manés", + "gv": "manés", "gwi": "kutchin", "ha": "hausa", "hai": "haida", @@ -184,7 +184,7 @@ "hmn": "hmong", "ho": "hiri motu", "hr": "croata", - "hsb": "sorbio superior", + "hsb": "alto sorbio", "ht": "haitiano", "hu": "húngaro", "hup": "hupa", @@ -307,7 +307,7 @@ "mni": "manipuri", "moh": "mohawk", "mos": "mossi", - "mr": "marathi", + "mr": "maratí", "ms": "malayo", "mt": "maltés", "mua": "mundang", @@ -355,7 +355,7 @@ "os": "osético", "osa": "osage", "ota": "turco otomano", - "pa": "punjabí", + "pa": "panyabí", "pag": "pangasinán", "pal": "pahlavi", "pam": "pampanga", @@ -487,7 +487,7 @@ "vi": "vietnamita", "vo": "volapük", "vot": "vótico", - "vun": "kivunjo", + "vun": "vunjo", "wa": "valón", "wae": "walser", "wal": "walamo", @@ -508,7 +508,7 @@ "zap": "zapoteco", "zbl": "símbolos Bliss", "zen": "zenaga", - "zgh": "tamazight", + "zgh": "tamazight estándar marroquí", "zh": "chino", "zh_Hans": "chino simplificado", "zh_Hant": "chino tradicional", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json deleted file mode 100644 index dc8fc0fc032f3..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "arn": "mapuche", - "az": "azerbaiyano", - "ba": "baskir", - "eu": "vasco", - "gsw": "alemán (Suiza)", - "luo": "luo", - "mr": "maratí", - "vai": "vai" - } -} 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 e2ab451405fa3..52d0e323d247e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json @@ -1,29 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { - "arn": "araucano", - "ba": "bashkir", - "chr": "cheroki", - "ckb": "sorani", - "de_CH": "alto alemán suizo", - "dsb": "bajo sorbio", - "es_419": "español latinoamericano", - "gsw": "alemán suizo", - "gv": "manés", - "hsb": "alto sorbio", - "kab": "cabilio", - "kln": "halenjin", - "luo": "luo", - "nd": "sindebele", - "nqo": "N’Ko", - "pa": "panyabí", - "rm": "romanche", - "rn": "rundi", - "smj": "sami de Lule", - "smn": "sami de Inari", - "su": "sondanés", - "vai": "vai", - "vun": "vunjo", - "zgh": "tamazight estándar marroquí" + "ba": "bashkir" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/et.json b/src/Symfony/Component/Intl/Resources/data/languages/et.json index 1b1880d12a18c..e7c93d6d8be47 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.8.9", + "Version": "2.1.12.94", "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 db10573522ff9..78891029c066a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "ab": "abkhazera", "ach": "Acholiera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index 802e052c4baf2..4a41fb0aad250 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.8.9", + "Version": "2.1.12.94", "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 9bdd861bd0102..8b08725df7fc3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json @@ -1,8 +1,7 @@ { - "Version": "2.1.6.69", + "Version": "2.1.12.17", "Names": { "es": "هسپانوی", - "fa": "دری", "fi": "فنلندی", "ga": "آیرلندی", "hr": "کروشیایی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fi.json b/src/Symfony/Component/Intl/Resources/data/languages/fi.json index 559a94f6c9e56..00d810e3e1376 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.8.9", + "Version": "2.1.13.33", "Names": { "aa": "afar", "ab": "abhaasi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fo.json b/src/Symfony/Component/Intl/Resources/data/languages/fo.json index f955589acbcb2..bdb26fad40aaa 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.7.53", + "Version": "2.1.12.27", "Names": { "ab": "abkhaziskt", "af": "afríska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 476a6683c16db..3bed06a1acaa7 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.8.9", + "Version": "2.1.13.46", "Names": { "aa": "afar", "ab": "abkhaze", @@ -129,7 +129,7 @@ "eo": "espéranto", "es": "espagnol", "es_419": "espagnol latino-américain", - "es_ES": "espagnol d’Europe", + "es_ES": "espagnol européen", "es_MX": "espagnol mexicain", "et": "estonien", "eu": "basque", @@ -170,7 +170,7 @@ "got": "gotique", "grb": "grebo", "grc": "grec ancien", - "gsw": "alémanique", + "gsw": "suisse allemand", "gu": "gujarati", "guz": "gusii", "gv": "manx", @@ -371,7 +371,7 @@ "ps": "pachto", "pt": "portugais", "pt_BR": "portugais brésilien", - "pt_PT": "portugais d’Europe", + "pt_PT": "portugais européen", "qu": "quechua", "quc": "k’iche’", "raj": "rajasthani", 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 7f020744ecdb8..20b36d32a1dcd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json @@ -1,19 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { - "es_ES": "espagnol ibérique", - "fy": "frison", - "gag": "gag", - "gsw": "suisse allemand", - "gu": "goudjarâtî", - "ii": "yi de Sichuan", - "luo": "luo", - "pt_PT": "portugais ibérique", - "rw": "kinyarwanda", - "si": "cingalais", - "to": "tongan", - "ug": "ouïgour", - "und": "indéterminé", - "ybb": "yémba" + "luo": "luo" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fy.json b/src/Symfony/Component/Intl/Resources/data/languages/fy.json index 40bf6adf0a8f8..d87aba0f51129 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.7.53", + "Version": "2.1.10.93", "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 90068ad4b1dcd..d81cc7d880a71 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.8.9", + "Version": "2.1.12.94", "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 3d26eae638e06..38cd5fd00e58c 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.8.9", + "Version": "2.1.12.94", "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 58f3f641331b0..39ac01c50057a 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "abkhazo", "ach": "acoli", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index 115561262d14b..a47e77432d727 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "અફાર", "ab": "અબખાજિયન", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index fa4dc4f4ccb1c..2adf95fe2bc34 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 637b4a980a51d..e8a3bd30c0c6f 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", @@ -169,7 +169,7 @@ "hai": "हैडा", "haw": "हवाई", "he": "हिब्रू", - "hi": "हिंदी", + "hi": "हिन्दी", "hil": "हिलिगेनन", "hit": "हिताइत", "hmn": "ह्मॉंग", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index b31246de8e3be..dcb6cb27329af 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index 3eb99629518f6..f1708df7cae00 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abház", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index 0941b909ed08d..9d02271de3e42 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "աբխազերեն", "af": "աֆրիկաանս", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/id.json b/src/Symfony/Component/Intl/Resources/data/languages/id.json index 20d79ce21b88d..7186ca5f7a0e9 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/in.json b/src/Symfony/Component/Intl/Resources/data/languages/in.json index 20d79ce21b88d..7186ca5f7a0e9 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index 909f9a601e5bc..d56c5871e64d0 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "abkasíska", "ace": "akkíska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index 732b96a651a5f..518dc3808f203 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.8.32", + "Version": "2.1.13.6", "Names": { "aa": "afar", "ab": "abcaso", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index fa4dc4f4ccb1c..2adf95fe2bc34 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index b193b23cacb44..1e163bb61d7fa 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "アファル語", "ab": "アブハズ語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 00dd4f122710a..08ad71b145f28 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.8.95", + "Version": "2.1.13.22", "Names": { "aa": "აფარი", "ab": "აფხაზური", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kk.json b/src/Symfony/Component/Intl/Resources/data/languages/kk.json index cbb1570f69af5..b3f359c2a7ac5 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "абхаз тілі", "af": "африкаанс", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/km.json b/src/Symfony/Component/Intl/Resources/data/languages/km.json index fa176ff771221..a05d69a734f2c 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.8.9", + "Version": "2.1.13.51", "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 69ea03cbfb454..c9c8a0061f706 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.8.9", + "Version": "2.1.13.51", "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 3cd4b4182f352..51165cd870bd8 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.9.31", + "Version": "2.1.12.94", "Names": { "aa": "아파르어", "ab": "압카즈어", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ks.json b/src/Symfony/Component/Intl/Resources/data/languages/ks.json index cbf982127bcbb..844af746425ee 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.8.9", + "Version": "2.1.12.94", "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 81d7df665f7f2..97b28fc2af428 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.6.69", + "Version": "2.1.12.32", "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 22d4c385c34c9..bca07a7ff31b6 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "абхазча", "af": "африкаанча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index 481dc95a1d659..aaa81ac90220a 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Afar", "ab": "Abchasesch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lo.json b/src/Symfony/Component/Intl/Resources/data/languages/lo.json index 5547dedb6085d..505cf16f816bb 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.8.9", + "Version": "2.1.12.94", "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 e2c18b52dcc8e..5d64189877be3 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.8.9", + "Version": "2.1.13.46", "Names": { "aa": "afarų", "ab": "abchazų", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lv.json b/src/Symfony/Component/Intl/Resources/data/languages/lv.json index 1c2f6b36d1c3e..b2dde1a685931 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.8.9", + "Version": "2.1.12.94", "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 24f12309819c2..380d6203abfbc 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.7.12", + "Version": "2.1.12.90", "Languages": [ "aa", "ab", @@ -582,6 +582,7 @@ "wal", "war", "was", + "wbp", "wo", "wuu", "xal", @@ -610,308 +611,7 @@ "zxx", "zza" ], - "Aliases": { - "aa_SAAHO": "ssy", - "aar": "aa", - "abk": "ab", - "afr": "af", - "aju": "jrb", - "aka": "ak", - "alb": "sq", - "als": "sq", - "amh": "am", - "ara": "ar", - "arb": "ar", - "arg": "an", - "arm": "hy", - "art_lojban": "jbo", - "asm": "as", - "ava": "av", - "ave": "ae", - "aym": "ay", - "ayr": "ay", - "aze": "az", - "azj": "az", - "bak": "ba", - "bam": "bm", - "baq": "eu", - "bcc": "bal", - "bcl": "bik", - "bel": "be", - "ben": "bn", - "bih": "bh", - "bis": "bi", - "bod": "bo", - "bos": "bs", - "bre": "br", - "bul": "bg", - "bur": "my", - "bxk": "luy", - "bxr": "bua", - "cat": "ca", - "ces": "cs", - "cha": "ch", - "che": "ce", - "chi": "zh", - "chu": "cu", - "chv": "cv", - "cld": "syr", - "cmn": "zh", - "cor": "kw", - "cos": "co", - "cre": "cr", - "cwd": "cr", - "cym": "cy", - "cze": "cs", - "dan": "da", - "deu": "de", - "dgo": "doi", - "dhd": "mwr", - "dik": "din", - "diq": "zza", - "div": "dv", - "dut": "nl", - "dzo": "dz", - "ekk": "et", - "ell": "el", - "emk": "man", - "eng": "en", - "epo": "eo", - "esk": "ik", - "est": "et", - "eus": "eu", - "ewe": "ee", - "fao": "fo", - "fas": "fa", - "fat": "ak", - "fij": "fj", - "fin": "fi", - "fra": "fr", - "fre": "fr", - "fry": "fy", - "fuc": "ff", - "ful": "ff", - "gaz": "om", - "gbo": "grb", - "geo": "ka", - "ger": "de", - "gla": "gd", - "gle": "ga", - "glg": "gl", - "glv": "gv", - "gno": "gon", - "gre": "el", - "grn": "gn", - "gug": "gn", - "guj": "gu", - "gya": "gba", - "hat": "ht", - "hau": "ha", - "hbs": "sr_Latn", - "hdn": "hai", - "hea": "hmn", - "heb": "he", - "her": "hz", - "him": "srx", - "hin": "hi", - "hmo": "ho", - "hrv": "hr", - "hun": "hu", - "hye": "hy", - "i_ami": "ami", - "i_bnn": "bnn", - "i_hak": "hak", - "i_klingon": "tlh", - "i_lux": "lb", - "i_navajo": "nv", - "i_pwn": "pwn", - "i_tao": "tao", - "i_tay": "tay", - "i_tsu": "tsu", - "ibo": "ig", - "ice": "is", - "ido": "io", - "iii": "ii", - "ike": "iu", - "iku": "iu", - "ile": "ie", - "in": "id", - "ina": "ia", - "ind": "id", - "ipk": "ik", - "isl": "is", - "ita": "it", - "iw": "he", - "jav": "jv", - "ji": "yi", - "jpn": "ja", - "jw": "jv", - "kal": "kl", - "kan": "kn", - "kas": "ks", - "kat": "ka", - "kau": "kr", - "kaz": "kk", - "khk": "mn", - "khm": "km", - "kik": "ki", - "kin": "rw", - "kir": "ky", - "kmr": "ku", - "knc": "kr", - "kng": "kg", - "knn": "kok", - "kom": "kv", - "kon": "kg", - "kor": "ko", - "kpv": "kv", - "kua": "kj", - "kur": "ku", - "lao": "lo", - "lat": "la", - "lav": "lv", - "lbk": "bnc", - "lim": "li", - "lin": "ln", - "lit": "lt", - "ltz": "lb", - "lub": "lu", - "lug": "lg", - "lvs": "lv", - "mac": "mk", - "mah": "mh", - "mal": "ml", - "mao": "mi", - "mar": "mr", - "may": "ms", - "mhr": "chm", - "mkd": "mk", - "mlg": "mg", - "mlt": "mt", - "mnk": "man", - "mo": "ro_MD", - "mol": "ro_MD", - "mon": "mn", - "mri": "mi", - "msa": "ms", - "mup": "raj", - "mya": "my", - "nau": "na", - "nav": "nv", - "nbl": "nr", - "nde": "nd", - "ndo": "ng", - "nep": "ne", - "nld": "nl", - "nno": "nn", - "no": "nb", - "no_BOKMAL": "nb", - "no_NYNORSK": "nn", - "no_bok": "nb", - "no_nyn": "nn", - "nob": "nb", - "nor": "nb", - "npi": "ne", - "nya": "ny", - "oci": "oc", - "ojg": "oj", - "oji": "oj", - "ori": "or", - "orm": "om", - "ory": "or", - "oss": "os", - "pan": "pa", - "pbu": "ps", - "per": "fa", - "pes": "fa", - "pli": "pi", - "plt": "mg", - "pnb": "lah", - "pol": "pl", - "por": "pt", - "pus": "ps", - "que": "qu", - "quz": "qu", - "rmy": "rom", - "roh": "rm", - "ron": "ro", - "rum": "ro", - "run": "rn", - "rus": "ru", - "sag": "sg", - "san": "sa", - "sgn_BE_FR": "sfb", - "sgn_BE_NL": "vgt", - "sgn_CH_DE": "sgg", - "sh": "sr_Latn", - "sin": "si", - "slk": "sk", - "slo": "sk", - "slv": "sl", - "sme": "se", - "smo": "sm", - "sna": "sn", - "snd": "sd", - "som": "so", - "sot": "st", - "spa": "es", - "spy": "kln", - "sqi": "sq", - "src": "sc", - "srd": "sc", - "srp": "sr", - "ssw": "ss", - "sun": "su", - "swa": "sw", - "swe": "sv", - "swh": "sw", - "tah": "ty", - "tam": "ta", - "tat": "tt", - "tel": "te", - "tgk": "tg", - "tgl": "fil", - "tha": "th", - "tib": "bo", - "tir": "ti", - "tl": "fil", - "ton": "to", - "tsn": "tn", - "tso": "ts", - "ttq": "tmh", - "tuk": "tk", - "tur": "tr", - "tw": "ak", - "twi": "ak", - "uig": "ug", - "ukr": "uk", - "umu": "del", - "urd": "ur", - "uzb": "uz", - "uzn": "uz", - "ven": "ve", - "vie": "vi", - "vol": "vo", - "wel": "cy", - "wln": "wa", - "wol": "wo", - "xho": "xh", - "xpe": "kpe", - "xsl": "den", - "ydd": "yi", - "yid": "yi", - "yor": "yo", - "zai": "zap", - "zh_guoyu": "zh", - "zh_hakka": "hak", - "zh_min_nan": "nan", - "zh_xiang": "hsn", - "zha": "za", - "zho": "zh", - "zsm": "ms", - "zul": "zu", - "zyb": "za" - }, + "Aliases": null, "Alpha2ToAlpha3": { "aa": "aar", "ab": "abk", @@ -1052,6 +752,7 @@ "ru": "rus", "sg": "sag", "sa": "san", + "sr": "srp", "si": "sin", "sk": "slk", "sl": "slv", @@ -1063,7 +764,6 @@ "st": "sot", "es": "spa", "sc": "srd", - "sr": "srp", "ss": "ssw", "su": "sun", "sw": "swa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index 271b78dc20e47..d35a466c24518 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.8.9", + "Version": "2.1.12.94", "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 93fdf8e40d653..b284582fbd6d2 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.8.9", + "Version": "2.1.12.94", "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 467f8d3fd9091..b9c7197fbbcc4 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "абхаз", "af": "африк", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index 3bee497923438..7d021d90b75fc 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.8.9", + "Version": "2.1.12.94", "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 52a2db31e14c9..ac0266a736da8 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "Abkhazia", "ach": "Akoli", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mt.json b/src/Symfony/Component/Intl/Resources/data/languages/mt.json index ac8cebedd74e0..bad0709ac5c6a 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.8.22", + "Version": "2.1.10.93", "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 95fb2b7868b76..146244a38b705 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.8.9", + "Version": "2.1.13.21", "Names": { "ab": "အက်ခါဇူအနျ", "af": "အာဖရိကန်းစ်", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index e3d4d9e42ca94..c424fe7a7e141 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ne.json b/src/Symfony/Component/Intl/Resources/data/languages/ne.json index 3b89f498516c8..a08454e4e2d17 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.8.95", + "Version": "2.1.12.94", "Names": { "ab": "अब्खाजियाली", "af": "अफ्रिकान्स", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ne_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/ne_IN.json deleted file mode 100644 index 0d4f9e517fec6..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/ne_IN.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ar_001": "अधुनिक प्रमाणिक अरबी" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index fc3217e93b45c..8eadd07cf5d37 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Afar", "ab": "Abchazisch", @@ -479,7 +479,7 @@ "sg": "Sango", "sga": "Oudiers", "sgs": "Samogitisch", - "sh": "Servokroatisch", + "sh": "Servo-Kroatisch", "shi": "Tashelhiyt", "shn": "Shan", "shu": "Tsjadisch Arabisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl_BE.json b/src/Symfony/Component/Intl/Resources/data/languages/nl_BE.json deleted file mode 100644 index c2694a5029bde..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/nl_BE.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "oc": "Occitaans; Provençaals", - "sh": "Servo-Kroatisch" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nn.json b/src/Symfony/Component/Intl/Resources/data/languages/nn.json index 61c5b97859557..ea539c9da7467 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.7.72", + "Version": "2.1.10.42", "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 e3d4d9e42ca94..c424fe7a7e141 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index acbec89f9b4e0..9251b104dbf06 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.6.69", + "Version": "2.1.10.42", "Names": { "af": "Afrikoota", "am": "Afaan Sidaamaa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/os.json b/src/Symfony/Component/Intl/Resources/data/languages/os.json index 345e22df1aeaa..682dd995c53fa 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.7.53", + "Version": "2.1.10.93", "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 8fd1b919d8826..3fade7994db39 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "ਅਬਖਾਜ਼ੀਅਨ", "ace": "ਅਚੀਨੀ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pl.json b/src/Symfony/Component/Intl/Resources/data/languages/pl.json index a29ed699d0ed2..457451968f64a 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.8.95", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abchaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index 453bd47f5df2e..fb4d85560905a 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abcázio", @@ -60,7 +60,7 @@ "bs": "bósnio", "bss": "akoose", "bua": "buriat", - "bug": "buguinês", + "bug": "buginês", "bum": "bulu", "byn": "blin", "byv": "medumba", @@ -105,7 +105,7 @@ "din": "dinka", "dje": "zarma", "doi": "dogri", - "dsb": "sérvio baixo", + "dsb": "sorábio baixo", "dua": "duala", "dum": "holandês médio", "dv": "divehi", @@ -184,7 +184,7 @@ "hmn": "hmong", "ho": "hiri motu", "hr": "croata", - "hsb": "sorábio superior", + "hsb": "sorábio alto", "ht": "haitiano", "hu": "húngaro", "hup": "hupa", @@ -323,7 +323,7 @@ "naq": "nama", "nb": "bokmål norueguês", "nd": "ndebele do norte", - "nds": "baixo-alemão", + "nds": "baixo alemão", "ne": "nepali", "new": "newari", "ng": "dongo", @@ -384,7 +384,7 @@ "rom": "romani", "ru": "russo", "rup": "aromeno", - "rw": "ruanda", + "rw": "kinyarwanda", "rwk": "rwa", "sa": "sânscrito", "sad": "sandawe", @@ -471,8 +471,8 @@ "tw": "twi", "twq": "tasawaq", "ty": "taitiano", - "tyv": "tuvinian", - "tzm": "tamazight", + "tyv": "tuviniano", + "tzm": "tamazight do Atlas Central", "udm": "udmurt", "ug": "uigur", "uga": "ugarítico", 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 66361219c3525..13d05f3654be5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json @@ -1,23 +1,18 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "af": "africânder", - "ar_001": "árabe moderno padrão", "arn": "mapuche", "bax": "bamun", "bbj": "ghomala", - "bug": "buginese", - "ce": "chechene", "chn": "jargão chinook", "ckb": "sorani curdo", "cs": "checo", "dsb": "baixo sórabio", - "dyu": "diula", "ee": "ewe", "egy": "egípcio clássico", "en_CA": "inglês canadiano", "enm": "inglês medieval", - "es_MX": "espanhol do México", "et": "estónio", "fr_CA": "francês canadiano", "frm": "francês medieval", @@ -30,39 +25,26 @@ "hsb": "alto sórabio", "hy": "arménio", "ig": "igbo", - "ik": "inupiaq", "kea": "cabo-verdiano", "kg": "conguês", - "km": "cmer", "kn": "canarim", "lez": "lezghiano", "lg": "ganda", "luo": "luo", "mga": "irlandês, medieval", "mk": "macedónio", - "moh": "mohawk", "nb": "norueguês bokmål", - "nds": "baixo alemão", "nn": "norueguês nynorsk", - "non": "norse, old", "oc": "provençal", "os": "ossético", "pl": "polaco", - "pro": "provençal, arcaico", "ps": "pastó", "rom": "romanês", - "root": "root", - "rw": "kinyarwanda", "sah": "sakha", "shu": "árabe do Chade", - "swb": "língua comoriana", "tk": "turcomano", "to": "tonga", - "tog": "toganês", - "tyv": "tuviniano", - "tzm": "tamazight do Atlas Central", "vai": "vai", - "xog": "soga", - "zgh": "tamazight padrão de Marrocos" + "xog": "soga" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rm.json b/src/Symfony/Component/Intl/Resources/data/languages/rm.json index e31a09224abd6..c08800809f673 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abchasian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro.json b/src/Symfony/Component/Intl/Resources/data/languages/ro.json index 59009f5b6a22a..2469ef473d564 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abhază", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ru.json b/src/Symfony/Component/Intl/Resources/data/languages/ru.json index 570108695b3ad..650ae0698e75b 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.8.9", + "Version": "2.1.13.53", "Names": { "aa": "афар", "ab": "абхазский", @@ -100,7 +100,7 @@ "de_AT": "австрийский немецкий", "de_CH": "швейцарский верхненемецкий", "del": "делаварский", - "den": "славянский", + "den": "слейви", "dgr": "догриб", "din": "динка", "dje": "зарма", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ru_UA.json b/src/Symfony/Component/Intl/Resources/data/languages/ru_UA.json deleted file mode 100644 index 9a727270931e6..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/ru_UA.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "den": "слэйви", - "mh": "маршальский", - "tlh": "клингон" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh.json b/src/Symfony/Component/Intl/Resources/data/languages/sh.json index 69cecd0da0f99..3ef4edde90ad1 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.8.20", + "Version": "2.1.13.24", "Names": { "aa": "Afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index 1b1390bd57547..ad3767da6fe82 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "ඇබ්කාසියානු", "aeb": "ටියුනිසියනු අරාබි", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index 1035ff23c073a..662d789ae414a 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afarčina", "ab": "abcházčina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index 24980f72b5f9b..0878628cb3a6e 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afarščina", "ab": "abhaščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/so.json b/src/Symfony/Component/Intl/Resources/data/languages/so.json index 066feef4c0c76..54fb4a6fb71fc 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.7.39", + "Version": "2.1.10.93", "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 8b4dba27d4c15..4f54495d12823 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "abkazisht", "af": "afrikanisht", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr.json b/src/Symfony/Component/Intl/Resources/data/languages/sr.json index 76fc77a7080ed..820bcd53e3408 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Афарски", "ab": "абхаски", 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 69cecd0da0f99..3ef4edde90ad1 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.8.20", + "Version": "2.1.13.24", "Names": { "aa": "Afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv.json b/src/Symfony/Component/Intl/Resources/data/languages/sv.json index 452013db3b2fc..ed2aef6adf103 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "afar", "ab": "abchaziska", @@ -179,7 +179,7 @@ "gay": "gayo", "gba": "gbaya", "gbz": "zoroastrisk dari", - "gd": "höglandsskotska", + "gd": "skotsk gäliska", "gez": "etiopiska", "gil": "gilbertiska", "gl": "galiciska", 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 ad5aab3c907e4..6bdbc6278d975 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json @@ -1,18 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.11.81", "Names": { - "chm": "mari", - "fj": "fiji", - "km": "khmer", - "ks": "kashmiri", - "ky": "kirgiziska", - "lo": "lao", - "nb": "bokmål", - "pa": "panjabi", - "ps": "pashto", - "te": "telugu", - "th": "thai", - "ti": "tigrinska", - "und": "okänt språk" + "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 0b2215017959c..6aae271431c8c 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "Kiabkhazi", "ach": "Kiakoli", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json new file mode 100644 index 0000000000000..e480f80c6020b --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json @@ -0,0 +1,10 @@ +{ + "Version": "2.1.11.52", + "Names": { + "ak": "Kiakan", + "bn": "Kibangla", + "cs": "Kichecki", + "en": "Kingereza", + "swc": "Kiswahili ya Kongo" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index 5075d2838ae19..5716cd7a6c7dd 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.8.9", + "Version": "2.1.12.94", "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 d16e26646d70f..a1d37accf5a4a 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 347deaa36e04f..a2d0dcd31cd47 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "อะฟาร์", "ab": "อับคาซ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index ddb5ba10c40a2..7566ad36d9670 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "Abkhazian", "ach": "Acoli", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/to.json b/src/Symfony/Component/Intl/Resources/data/languages/to.json index 5d5479dc44c82..afb3adda876ec 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.8.9", + "Version": "2.1.12.94", "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 7c65a63e974e1..a7e2010cc903f 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Afar", "ab": "Abhazca", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uk.json b/src/Symfony/Component/Intl/Resources/data/languages/uk.json index 15c2bd0f71fb5..4c91b36c32bc4 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "афарська", "ab": "абхазька", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index 2bba4bad13c4e..3b7b44b8d662c 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "ابقازیان", "ach": "اکولی", @@ -25,7 +25,7 @@ "br": "بریٹن", "brx": "بوڈو", "bs": "بوسنی", - "ca": "کاٹالانین", + "ca": "کیٹالان", "cgg": "چیگا", "chr": "چیروکی", "ckb": "سورانی کردش", @@ -93,9 +93,9 @@ "ii": "سچوان ای", "is": "آئس لینڈک", "it": "اطالوی", - "iu": "انیوکتیتت", + "iu": "اینُکٹیٹٹ", "ja": "جاپانی", - "jgo": "گومبا", + "jgo": "نگومبا", "jmc": "ماشیم", "jv": "جاوی", "ka": "جارجی", @@ -105,7 +105,7 @@ "kea": "كابويرديانو", "kg": "کانگو", "khq": "كويرا شيني", - "ki": "کیکو", + "ki": "کیکویو", "kk": "قزاخ", "kl": "كالاليست", "kln": "كالينجين", @@ -122,7 +122,7 @@ "ky": "کرغیزی", "la": "لاطینی", "lag": "لانگی", - "lb": "لگژمبرگ کا باشندہ", + "lb": "لگژمبرگش", "lg": "گینڈا", "lkt": "لاکوٹا", "ln": "لِنگَلا", @@ -144,7 +144,7 @@ "mk": "مقدونیائی", "ml": "مالایالم", "mn": "منگؤلی", - "moh": "موہاوک", + "moh": "موہاک", "mr": "مراٹهی", "ms": "مالائی", "mt": "مالٹی", @@ -178,11 +178,11 @@ "quc": "كيشی", "rm": "رومانش", "rn": "رونڈی", - "ro": "رومنی", + "ro": "رومینین", "rof": "رومبو", "ru": "روسی", "rw": "کینیاروانڈا", - "rwk": "rwk", + "rwk": "روا", "sa": "سَنسکرِت", "saq": "سامبورو", "sbp": "سانگو", @@ -190,7 +190,7 @@ "se": "شمالی سامی", "seh": "سینا", "ses": "كويرابورو سينی", - "sg": "سانغو", + "sg": "سانجو", "sh": "سربو-کروئیشین", "shi": "تشلحيت", "si": "سنہالا", @@ -200,7 +200,7 @@ "sma": "جنوبی سامی", "smj": "لول سامی", "smn": "اناری سامی", - "sms": "اسکولٹ سامی", + "sms": "سکولٹ سامی", "sn": "شونا", "so": "صومالی", "sq": "البانی", @@ -238,13 +238,13 @@ "vai": "وائی", "ve": "وینڈا", "vi": "ویتنامی", - "vun": "اونجو", + "vun": "ونجو", "wo": "وولوف", "xh": "ژوسا", "xog": "سوگا", "yi": "یدش", "yo": "یوروبا", - "zgh": "اسٹینڈرڈ مغربی امازیقی", + "zgh": "اسٹینڈرڈ مراقشی تمازیقی", "zh": "چینی", "zh_Hans": "چینی (آسان کردہ)", "zh_Hant": "روایتی چینی", 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 c5741cd0589e1..04e5917791acc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json @@ -1,45 +1,14 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "af": "افریقی", "ar_001": "جدید معیاری عربی", - "arn": "مابوتشی", - "bm": "بامبرا", - "ca": "کتالان", - "cgg": "شیغا", "co": "کارسیکائی", - "dav": "تیتا", "dje": "زرمہ", - "dsb": "لوئر صوربی", - "dua": "ديولا", - "et": "اسٹونی", - "fo": "فارويز", - "fy": "مغربی فریسیائی", - "gv": "مانوی", - "hsb": "بالائی صوربی", - "ii": "سشوان ی", - "iu": "اينكتيتت", - "jgo": "نگومبا", - "ki": "کیکویو", "kn": "کنڑ", - "koi": "کومی-پرمیاک", "ku": "کرد", - "kw": "کورنوالی", - "lb": "لکسمبرگی", "lv": "لٹويای", - "moh": "موہوک", - "mua": "مڈدانگ", - "nl_BE": "فیلنڈری", - "nqo": "نکو", - "ro": "رومانوی", - "rwk": "روا", - "sg": "سانجو", - "sms": "سکولٹ سامی", - "su": "سوڈانی", - "tzm": "وسطی اٹلس تمازغت", - "ug": "آئغور", - "vun": "ونجو", - "zgh": "اسٹینڈرڈ مراقشی تمازیقی", + "zgh": "معیاری مراقشی تمازیقی", "zh_Hans": "آسان چینی" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index e6f3ab039c100..5587539a47800 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.8.9", + "Version": "2.1.12.94", "Names": { "ab": "abxazcha", "af": "afrikancha", 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 1cffacdc77482..d093af8f25e24 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.7.39", + "Version": "2.1.10.42", "Names": { "ab": "Абхазча", "af": "Африканча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/vi.json b/src/Symfony/Component/Intl/Resources/data/languages/vi.json index e92ec2559afc3..bb58dd12b831d 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", 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 7f352b8773a9c..367562c27c28a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,13 +1,103 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.24", "Names": { + "af": "Èdè Afrikani", + "ak": "Èdè Akani", + "am": "Èdè Amariki", + "ar": "Èdè Arabiki", + "as": "Ti Assam", + "az": "Èdè Azerbaijani", + "be": "Èdè Belarusi", + "bg": "Èdè Bugaria", + "bn": "Èdè Bengali", + "br": "Èdè Bretoni", + "bs": "Èdè Bosnia", + "ca": "Èdè Catala", + "cs": "Èdè seeki", + "cy": "Èdè Welshi", "da": "Èdè Ilɛ̀ Denmark", "de": "Èdè Ilɛ̀ Gemani", + "el": "Èdè Giriki", "en": "Èdè Gɛ̀ɛ́sì", + "eo": "Èdè Esperanto", + "es": "Èdè Sipanisi", + "et": "Èdè Estonia", + "eu": "Èdè Baski", + "fa": "Èdè Pasia", + "fi": "Èdè Finisi", + "fil": "Èdè Tagalogi", + "fo": "Èdè Faroesi", + "fr": "Èdè Faransé", + "fy": "Èdè Frisia", + "ga": "Èdè Ireland", + "gd": "Èdè Gaelik ti Ilu Scotland", + "gl": "Èdè Galicia", + "gn": "Èdè Guarani", + "gu": "Èdè Gujarati", + "ha": "Èdè Hausa", + "he": "Èdè Heberu", + "hi": "Èdè Hindi", + "hr": "Èdè Kroatia", + "hu": "Èdè Hungaria", + "hy": "Èdè Ile Armenia", + "ia": "Èdè pipo", + "id": "Èdè Indonasia", + "ie": "Iru Èdè", + "ig": "Èdè Ibo", + "is": "Èdè Icelandic", + "it": "Èdè Italiani", + "ja": "Èdè Japanisi", + "jv": "Èdè Javanasi", + "ka": "Èdè Georgia", + "km": "Èdè kameri", + "kn": "Èdè Kannada", + "ko": "Èdè Koria", + "la": "Èdè Latini", + "lt": "Èdè Lithuania", + "lv": "Èdè Latvianu", + "mk": "Èdè Macedonia", + "mr": "Èdè marathi", + "ms": "Èdè Malaya", + "mt": "Èdè Malta", + "my": "Èdè Bumiisi", + "ne": "Èdè Nepali", + "nl": "Èdè Duki", + "no": "Èdè Norway", + "oc": "Èdè Occitani", + "pa": "Èdè Punjabi", "pl": "Èdè Ilɛ̀ Polandi", "pt": "Èdè Pɔtugi", + "ro": "Èdè Romania", "ru": "Èdè ̣Rɔɔsia", + "rw": "Èdè Ruwanda", + "sa": "Èdè awon ara Indo", + "sd": "Èdè Sindhi", + "sh": "Èdè Serbo-Croatiani", + "si": "Èdè Sinhalese", + "sk": "Èdè Slovaki", + "sl": "Èdè Slovenia", + "so": "Èdè ara Somalia", + "sq": "Èdè Albania", + "sr": "Èdè Serbia", + "st": "Èdè Sesoto", + "su": "Èdè Sudani", + "sv": "Èdè Suwidiisi", + "sw": "Èdè Swahili", + "ta": "Èdè Tamili", + "te": "Èdè Telugu", + "th": "Èdè Tai", + "ti": "Èdè Tigrinya", + "tk": "Èdè Turkmen", + "tlh": "Èdè Klingoni", "tr": "Èdè Tɔɔkisi", + "uk": "Èdè Ukania", + "ur": "Èdè Udu", + "uz": "Èdè Uzbek", + "vi": "Èdè Jetinamu", + "xh": "Èdè Xhosa", + "yi": "Èdè Yiddishi", + "yo": "Èdè Yorùbá", + "zh": "Èdè Mandari", "zu": "Èdè Shulu" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index 51bc1945b45ff..d50de203a826f 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.8.9", + "Version": "2.1.12.94", "Names": { "aa": "阿法文", "ab": "阿布哈西亚文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json index 49ce42ff3f908..2457731c0d684 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json @@ -1,14 +1,8 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { - "br": "布里多尼文", "de_CH": "瑞士德語", - "eo": "世界語", - "gl": "加里西亞文", "it": "意大利文", - "lol": "蒙古語", - "pt_BR": "巴西葡萄牙語", - "sd": "信德語", - "zgh": "摩洛哥標準塔馬齊格特文" + "pt_BR": "巴西葡萄牙語" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_HK.json deleted file mode 100644 index 197f67085c214..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_HK.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ast": "阿斯图里亚思文", - "es_ES": "伊比利亚西班牙文", - "om": "奥罗莫文", - "pt_PT": "伊比利亚葡萄牙文" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_MO.json deleted file mode 100644 index ef6f21c2ce8d4..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_MO.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ast": "阿斯图里亚思文", - "es_ES": "伊比利亚西班牙文", - "mdr": "曼达尔", - "om": "奥罗莫文", - "pt_PT": "伊比利亚葡萄牙文" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_SG.json deleted file mode 100644 index 90d4fe73e7ade..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hans_SG.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "en_GB": "英国英文", - "en_US": "美国英文", - "es_ES": "伊比利亚西班牙文", - "om": "奥罗莫文", - "pt_PT": "伊比利亚葡萄牙文" - } -} 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 52494349d0283..de777c2fba245 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.8.95", + "Version": "2.1.12.94", "Names": { "aa": "阿法文", "ab": "阿布哈茲文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json index 49ce42ff3f908..2457731c0d684 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,14 +1,8 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { - "br": "布里多尼文", "de_CH": "瑞士德語", - "eo": "世界語", - "gl": "加里西亞文", "it": "意大利文", - "lol": "蒙古語", - "pt_BR": "巴西葡萄牙語", - "sd": "信德語", - "zgh": "摩洛哥標準塔馬齊格特文" + "pt_BR": "巴西葡萄牙語" } } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_SG.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_SG.json deleted file mode 100644 index 90d4fe73e7ade..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_SG.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "en_GB": "英国英文", - "en_US": "美国英文", - "es_ES": "伊比利亚西班牙文", - "om": "奥罗莫文", - "pt_PT": "伊比利亚葡萄牙文" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 80a57233e0ed9..36ad11698bea1 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.8.18", + "Version": "2.1.10.93", "Names": { "ab": "isi-Abkhazian", "ach": "Isi-Acoli", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/af.json b/src/Symfony/Component/Intl/Resources/data/locales/af.json index c581650b4b85d..8577f99a63b09 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -103,7 +103,7 @@ "en_BW": "Engels (Botswana)", "en_BZ": "Engels (Belize)", "en_CA": "Engels (Kanada)", - "en_CC": "Engels (Cocos- (Keeling) eilande)", + "en_CC": "Engels (Kokos-eilande)", "en_CK": "Engels (Cookeilande)", "en_CM": "Engels (Kameroen)", "en_CX": "Engels (Kerseiland)", @@ -125,20 +125,20 @@ "en_IE": "Engels (Ierland)", "en_IM": "Engels (Eiland Man)", "en_IN": "Engels (Indië)", - "en_IO": "Engels (Britse Indiese Oseaangebied)", + "en_IO": "Engels (Brits-Indiese Oseaangebied)", "en_JE": "Engels (Jersey)", "en_JM": "Engels (Jamaika)", "en_KE": "Engels (Kenia)", "en_KI": "Engels (Kiribati)", - "en_KN": "Engels (Sint Kitts en Nevis)", + "en_KN": "Engels (St. Kitts en Nevis)", "en_KY": "Engels (Kaaimanseilande)", - "en_LC": "Engels (Sint Lucia)", + "en_LC": "Engels (St. Lucia)", "en_LR": "Engels (Liberië)", "en_LS": "Engels (Lesotho)", "en_MG": "Engels (Madagaskar)", "en_MH": "Engels (Marshalleilande)", "en_MO": "Engels (Macau SAS Sjina)", - "en_MP": "Engels (Noordelike Mariana-eilande)", + "en_MP": "Engels (Noord-Mariane-eilande)", "en_MS": "Engels (Montserrat)", "en_MT": "Engels (Malta)", "en_MU": "Engels (Mauritius)", @@ -157,7 +157,7 @@ "en_PR": "Engels (Puerto Rico)", "en_PW": "Engels (Palau)", "en_RW": "Engels (Rwanda)", - "en_SB": "Engels (Solomoneilande)", + "en_SB": "Engels (Salomonseilande)", "en_SC": "Engels (Seychelle)", "en_SD": "Engels (Soedan)", "en_SG": "Engels (Singapoer)", @@ -175,7 +175,7 @@ "en_UG": "Engels (Uganda)", "en_UM": "Engels (VS klein omliggende eilande)", "en_US": "Engels (Verenigde State van Amerika)", - "en_VC": "Engels (Sint Vincent en die Grenadine)", + "en_VC": "Engels (St. Vincent en die Grenadine)", "en_VG": "Engels (Britse Maagde-eilande)", "en_VI": "Engels (Amerikaanse Maagde-eilande)", "en_VU": "Engels (Vanuatu)", @@ -256,7 +256,7 @@ "fr_NC": "Frans (Nieu-Kaledonië)", "fr_NE": "Frans (Niger)", "fr_PF": "Frans (Frans-Polinesië)", - "fr_PM": "Frans (Sint Pierre en Miquelon)", + "fr_PM": "Frans (St. Pierre en Miquelon)", "fr_RE": "Frans (Réunion)", "fr_RW": "Frans (Rwanda)", "fr_SC": "Frans (Seychelle)", @@ -426,7 +426,7 @@ "pt_MO": "Portugees (Macau SAS Sjina)", "pt_MZ": "Portugees (Mosambiek)", "pt_PT": "Portugees (Portugal)", - "pt_ST": "Portugees (Sao Tome en Principe)", + "pt_ST": "Portugees (São Tomé en Príncipe)", "pt_TL": "Portugees (Oos-Timor)", "qu": "Quechua", "qu_BO": "Quechua (Bolivië)", @@ -491,6 +491,7 @@ "sv_FI": "Sweeds (Finland)", "sv_SE": "Sweeds (Swede)", "sw": "Swahili", + "sw_CD": "Swahili (Demokratiese Republiek van die Kongo)", "sw_KE": "Swahili (Kenia)", "sw_TZ": "Swahili (Tanzanië)", "sw_UG": "Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index fc4120e997227..4f4d79f61da4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -493,6 +493,7 @@ "sv_FI": "ስዊድንኛ (ፊንላንድ)", "sv_SE": "ስዊድንኛ (ስዊድን)", "sw": "ስዋሂሊኛ", + "sw_CD": "ስዋሂሊኛ (ኮንጎ-ኪንሻሳ)", "sw_KE": "ስዋሂሊኛ (ኬንያ)", "sw_TZ": "ስዋሂሊኛ (ታንዛኒያ)", "sw_UG": "ስዋሂሊኛ (ዩጋንዳ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index 874cbdc3868c9..d36c5a6ea6e29 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -43,8 +43,8 @@ "az_Cyrl_AZ": "الأذربيجانية (السيريلية, أذربيجان)", "az_Latn": "الأذربيجانية (اللاتينية)", "az_Latn_AZ": "الأذربيجانية (اللاتينية, أذربيجان)", - "be": "البيلوروسية", - "be_BY": "البيلوروسية (روسيا البيضاء)", + "be": "البيلاروسية", + "be_BY": "البيلاروسية (روسيا البيضاء)", "bg": "البلغارية", "bg_BG": "البلغارية (بلغاريا)", "bm": "البامبارا", @@ -461,6 +461,8 @@ "se_SE": "السامي الشمالي (السويد)", "sg": "السانجو", "sg_CF": "السانجو (جمهورية أفريقيا الوسطى)", + "sh": "صربية-كرواتية", + "sh_BA": "صربية-كرواتية (البوسنة والهرسك)", "si": "السنهالية", "si_LK": "السنهالية (سريلانكا)", "sk": "السلوفاكية", @@ -498,6 +500,7 @@ "sv_FI": "السويدية (فنلندا)", "sv_SE": "السويدية (السويد)", "sw": "السواحلية", + "sw_CD": "السواحلية (الكونغو - كينشاسا)", "sw_KE": "السواحلية (كينيا)", "sw_TZ": "السواحلية (تانزانيا)", "sw_UG": "السواحلية (أوغندا)", @@ -510,9 +513,9 @@ "te_IN": "التيلجو (الهند)", "th": "التايلاندية", "th_TH": "التايلاندية (تايلاند)", - "ti": "التيجرينيا", - "ti_ER": "التيجرينيا (أريتريا)", - "ti_ET": "التيجرينيا (إثيوبيا)", + "ti": "التغرينية", + "ti_ER": "التغرينية (أريتريا)", + "ti_ET": "التغرينية (إثيوبيا)", "tl": "التاغالوغية", "tl_PH": "التاغالوغية (الفلبين)", "to": "التونغية", @@ -529,15 +532,15 @@ "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": "الأوزباكية (أوزبكستان)", + "uz": "الأوزبكية", + "uz_AF": "الأوزبكية (أفغانستان)", + "uz_Arab": "الأوزبكية (العربية)", + "uz_Arab_AF": "الأوزبكية (العربية, أفغانستان)", + "uz_Cyrl": "الأوزبكية (السيريلية)", + "uz_Cyrl_UZ": "الأوزبكية (السيريلية, أوزبكستان)", + "uz_Latn": "الأوزبكية (اللاتينية)", + "uz_Latn_UZ": "الأوزبكية (اللاتينية, أوزبكستان)", + "uz_UZ": "الأوزبكية (أوزبكستان)", "vi": "الفيتنامية", "vi_VN": "الفيتنامية (فيتنام)", "yi": "اليديشية", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar_EG.json b/src/Symfony/Component/Intl/Resources/data/locales/ar_EG.json index 2e839a82cdd35..e6220782c0900 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar_EG.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar_EG.json @@ -1,39 +1,7 @@ { "Names": { - "as": "الأساميزية", - "as_IN": "الأساميزية (الهند)", - "be": "البيلاروسية", - "be_BY": "البيلاروسية (روسيا البيضاء)", - "cy": "الولشية", - "cy_GB": "الولشية (المملكة المتحدة)", "da": "الدنماركية", "da_DK": "الدنماركية (الدانمرك)", - "da_GL": "الدنماركية (غرينلاند)", - "kn": "الكانادية", - "kn_IN": "الكانادية (الهند)", - "ky": "الكيرغزستانية", - "ky_Cyrl": "الكيرغزستانية (السيريلية)", - "ky_Cyrl_KG": "الكيرغزستانية (السيريلية, قرغيزستان)", - "ky_KG": "الكيرغزستانية (قرغيزستان)", - "mr": "الماراثية", - "mr_IN": "الماراثية (الهند)", - "sh": "صربية-كرواتية", - "sh_BA": "صربية-كرواتية (البوسنة والهرسك)", - "ti": "التيغرينية", - "ti_ER": "التيغرينية (أريتريا)", - "ti_ET": "التيغرينية (إثيوبيا)", - "ug": "الأويغورية", - "ug_Arab": "الأويغورية (العربية)", - "ug_Arab_CN": "الأويغورية (العربية, الصين)", - "ug_CN": "الأويغورية (الصين)", - "uz": "الأوزبكية", - "uz_AF": "الأوزبكية (أفغانستان)", - "uz_Arab": "الأوزبكية (العربية)", - "uz_Arab_AF": "الأوزبكية (العربية, أفغانستان)", - "uz_Cyrl": "الأوزبكية (السيريلية)", - "uz_Cyrl_UZ": "الأوزبكية (السيريلية, أوزبكستان)", - "uz_Latn": "الأوزبكية (اللاتينية)", - "uz_Latn_UZ": "الأوزبكية (اللاتينية, أوزبكستان)", - "uz_UZ": "الأوزبكية (أوزبكستان)" + "da_GL": "الدنماركية (غرينلاند)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 3a4841be74388..b65dce7e68764 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -500,6 +500,7 @@ "sv_FI": "isveç (Finlandiya)", "sv_SE": "isveç (İsveç)", "sw": "suahili", + "sw_CD": "suahili (Konqo - Kinşasa)", "sw_KE": "suahili (Keniya)", "sw_TZ": "suahili (Tanzaniya)", "sw_UG": "suahili (Uqanda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json index 80e82aea5795f..9160ca553fbcc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -3,14 +3,16 @@ "as_IN": "assam (Һиндистан)", "az": "Азәрбајҹан", "az_AZ": "Азәрбајҹан (Азәрбајҹан)", - "az_Cyrl": "Азәрбајҹан (kiril)", - "az_Cyrl_AZ": "Азәрбајҹан (kiril, Азәрбајҹан)", + "az_Cyrl": "Азәрбајҹан (Кирил)", + "az_Cyrl_AZ": "Азәрбајҹан (Кирил, Азәрбајҹан)", "az_Latn": "Азәрбајҹан (latın)", "az_Latn_AZ": "Азәрбајҹан (latın, Азәрбајҹан)", "bn_IN": "benqal (Һиндистан)", "bo_CN": "tibet (Чин)", "bo_IN": "tibet (Һиндистан)", "br_FR": "Bretonca (Франса)", + "bs_Cyrl": "bosniak (Кирил)", + "bs_Cyrl_BA": "bosniak (Кирил, Bosniya və Hersoqovina)", "ca_FR": "katalan (Франса)", "ca_IT": "katalan (Италија)", "de": "алманҹа", @@ -194,10 +196,16 @@ "it_SM": "италјанҹа (San Marino)", "ja": "јапонҹа", "ja_JP": "јапонҹа (Јапонија)", + "kk_Cyrl": "qazax (Кирил)", + "kk_Cyrl_KZ": "qazax (Кирил, Qazaxıstan)", "kn_IN": "kannada (Һиндистан)", "ks_Arab_IN": "kaşmir (ərəb, Һиндистан)", "ks_IN": "kaşmir (Һиндистан)", + "ky_Cyrl": "qırğız (Кирил)", + "ky_Cyrl_KG": "qırğız (Кирил, Qırğızıstan)", "ml_IN": "malayalam (Һиндистан)", + "mn_Cyrl": "monqol (Кирил)", + "mn_Cyrl_MN": "monqol (Кирил, Monqoliya)", "mr_IN": "marati (Һиндистан)", "ne_IN": "nepal (Һиндистан)", "or_IN": "oriya (Һиндистан)", @@ -221,11 +229,18 @@ "ru_MD": "русҹа (Moldova)", "ru_RU": "русҹа (Русија)", "ru_UA": "русҹа (Ukrayna)", + "sr_Cyrl": "serb (Кирил)", + "sr_Cyrl_BA": "serb (Кирил, Bosniya və Hersoqovina)", + "sr_Cyrl_ME": "serb (Кирил, Monteneqro)", + "sr_Cyrl_RS": "serb (Кирил, Serbiya)", + "sr_Cyrl_XK": "serb (Кирил, Kosovo)", "ta_IN": "tamil (Һиндистан)", "te_IN": "teluqu (Һиндистан)", "ug_Arab_CN": "uyğur (ərəb, Чин)", "ug_CN": "uyğur (Чин)", "ur_IN": "urdu (Һиндистан)", + "uz_Cyrl": "özbək (Кирил)", + "uz_Cyrl_UZ": "özbək (Кирил, Özbəkistan)", "zh": "чинҹә", "zh_CN": "чинҹә (Чин)", "zh_HK": "чинҹә (Honq Konq Xüsusi İnzibati Ərazi Çin)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/be.json b/src/Symfony/Component/Intl/Resources/data/locales/be.json index 7a892544afe97..38b378400cda8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -398,6 +398,7 @@ "sv_FI": "шведская (Фінляндыя)", "sv_SE": "шведская (Швецыя)", "sw": "суахілі", + "sw_CD": "суахілі (Конга, Дэмакратычная Рэспубліка)", "sw_KE": "суахілі (Кенія)", "sw_TZ": "суахілі (Танзанія)", "sw_UG": "суахілі (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index d647f85095089..c98bb1c2833c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -500,6 +500,7 @@ "sv_FI": "шведски (Финландия)", "sv_SE": "шведски (Швеция)", "sw": "суахили", + "sw_CD": "суахили (Демократична република Конго)", "sw_KE": "суахили (Кения)", "sw_TZ": "суахили (Танзания)", "sw_UG": "суахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index abefc9c01dcd0..38140f42f8ac9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -114,7 +114,7 @@ "en_FK": "ইংরেজি (ফকল্যান্ড দ্বীপপুঞ্জ)", "en_FM": "ইংরেজি (মাইক্রোনেশিয়া)", "en_GB": "ইংরেজি (যুক্তরাজ্য)", - "en_GD": "ইংরেজি (গ্রেনাডা)", + "en_GD": "ইংরেজি (গ্রেনেডা)", "en_GG": "ইংরেজি (গ্রাঞ্জি)", "en_GH": "ইংরেজি (ঘানা)", "en_GI": "ইংরেজি (জিব্রাল্টার)", @@ -127,7 +127,7 @@ "en_IN": "ইংরেজি (ভারত)", "en_IO": "ইংরেজি (ব্রিটিশ ভারত মহাসাগরীয় অঞ্চল)", "en_JE": "ইংরেজি (জার্সি)", - "en_JM": "ইংরেজি (জ্যামাইকা)", + "en_JM": "ইংরেজি (জামাইকা)", "en_KE": "ইংরেজি (কেনিয়া)", "en_KI": "ইংরেজি (কিরিবাতি)", "en_KN": "ইংরেজি (সেন্ট কিটস ও নেভিস)", @@ -196,7 +196,7 @@ "es_EC": "স্প্যানিশ (ইকুয়েডর)", "es_ES": "স্প্যানিশ (স্পেন)", "es_GQ": "স্প্যানিশ (নিরক্ষীয় গিনি)", - "es_GT": "স্প্যানিশ (গোয়াটিমালা)", + "es_GT": "স্প্যানিশ (গোয়াতেমালা)", "es_HN": "স্প্যানিশ (হণ্ডুরাস)", "es_IC": "স্প্যানিশ (ক্যানারি দ্বীপপুঞ্জ)", "es_MX": "স্প্যানিশ (মেক্সিকো)", @@ -500,6 +500,7 @@ "sv_FI": "সুইডিশ (ফিনল্যান্ড)", "sv_SE": "সুইডিশ (সুইডেন)", "sw": "সোয়াহিলি", + "sw_CD": "সোয়াহিলি (কঙ্গো-কিনশাসা)", "sw_KE": "সোয়াহিলি (কেনিয়া)", "sw_TZ": "সোয়াহিলি (তাঞ্জানিয়া)", "sw_UG": "সোয়াহিলি (উগান্ডা)", @@ -554,10 +555,10 @@ "zh_Hans_HK": "চীনা (সরলীকৃত, হংকং এসএআর চীনা)", "zh_Hans_MO": "চীনা (সরলীকৃত, ম্যাকাও এস এ আর চায়না)", "zh_Hans_SG": "চীনা (সরলীকৃত, সিঙ্গাপুর)", - "zh_Hant": "চীনা (প্রথাগত)", - "zh_Hant_HK": "চীনা (প্রথাগত, হংকং এসএআর চীনা)", - "zh_Hant_MO": "চীনা (প্রথাগত, ম্যাকাও এস এ আর চায়না)", - "zh_Hant_TW": "চীনা (প্রথাগত, তাইওয়ান)", + "zh_Hant": "চীনা (ঐতিহ্যবাহী)", + "zh_Hant_HK": "চীনা (ঐতিহ্যবাহী, হংকং এসএআর চীনা)", + "zh_Hant_MO": "চীনা (ঐতিহ্যবাহী, ম্যাকাও এস এ আর চায়না)", + "zh_Hant_TW": "চীনা (ঐতিহ্যবাহী, তাইওয়ান)", "zh_MO": "চীনা (ম্যাকাও এস এ আর চায়না)", "zh_SG": "চীনা (সিঙ্গাপুর)", "zh_TW": "চীনা (তাইওয়ান)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/locales/bn_IN.json deleted file mode 100644 index 2c7f77139e5c8..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn_IN.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "Names": { - "en_GD": "ইংরেজি (গ্রেনেডা)", - "en_JM": "ইংরেজি (জামাইকা)", - "es_GT": "স্প্যানিশ (গোয়াতেমালা)", - "or": "উড়িয়া", - "or_IN": "উড়িয়া (ভারত)", - "zh_Hant": "চীনা (ঐতিহ্যবাহী)", - "zh_Hant_HK": "চীনা (ঐতিহ্যবাহী, হংকং এসএআর চীনা)", - "zh_Hant_MO": "চীনা (ঐতিহ্যবাহী, ম্যাকাও এস এ আর চায়না)", - "zh_Hant_TW": "চীনা (ঐতিহ্যবাহী, তাইওয়ান)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index f32026cbdfb40..c54e9e77161a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -490,6 +490,7 @@ "sv_FI": "svedeg (Finland)", "sv_SE": "svedeg (Sveden)", "sw": "swahili", + "sw_CD": "swahili (Kongo - Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Ouganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs.json b/src/Symfony/Component/Intl/Resources/data/locales/bs.json index e7b44c006e28a..f9c58fb03676e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -500,6 +500,7 @@ "sv_FI": "švedski (Finska)", "sv_SE": "švedski (Švedska)", "sw": "svahili", + "sw_CD": "svahili (Demokratska Republika Kongo)", "sw_KE": "svahili (Kenija)", "sw_TZ": "svahili (Tanzanija)", "sw_UG": "svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json index 8cad3fbe6ce0a..a2fc3d1fe4cf0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -500,6 +500,7 @@ "sv_FI": "шведски (Финска)", "sv_SE": "шведски (Шведска)", "sw": "свахили", + "sw_CD": "свахили (Конго - Киншаса)", "sw_KE": "свахили (Кенија)", "sw_TZ": "свахили (Танзанија)", "sw_UG": "свахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index 67e74a587ad8a..0bd881efd3fa2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -500,6 +500,7 @@ "sv_FI": "suec (Finlàndia)", "sv_SE": "suec (Suècia)", "sw": "suahili", + "sw_CD": "suahili (Congo - Kinshasa)", "sw_KE": "suahili (Kenya)", "sw_TZ": "suahili (Tanzània)", "sw_UG": "suahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index f936f7fbfd3d1..ae4a120ee454a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -500,6 +500,7 @@ "sv_FI": "švédština (Finsko)", "sv_SE": "švédština (Švédsko)", "sw": "svahilština", + "sw_CD": "svahilština (Kongo – Kinshasa)", "sw_KE": "svahilština (Keňa)", "sw_TZ": "svahilština (Tanzanie)", "sw_UG": "svahilština (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index d0973cf1f44fb..b6f165b8d280d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -492,6 +492,7 @@ "sv_FI": "Swedeg (Y Ffindir)", "sv_SE": "Swedeg (Sweden)", "sw": "Swahili", + "sw_CD": "Swahili (Y Congo - Kinshasa)", "sw_KE": "Swahili (Kenya)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/da.json b/src/Symfony/Component/Intl/Resources/data/locales/da.json index 43c3ddad8a45a..f74aa104fbaf4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -145,7 +145,7 @@ "en_MW": "engelsk (Malawi)", "en_MY": "engelsk (Malaysia)", "en_NA": "engelsk (Namibia)", - "en_NF": "engelsk (Norfolkøen)", + "en_NF": "engelsk (Norfolk Island)", "en_NG": "engelsk (Nigeria)", "en_NR": "engelsk (Nauru)", "en_NU": "engelsk (Niue)", @@ -258,7 +258,7 @@ "fr_MQ": "fransk (Martinique)", "fr_MR": "fransk (Mauretanien)", "fr_MU": "fransk (Mauritius)", - "fr_NC": "fransk (Ny Caledonien)", + "fr_NC": "fransk (Ny Kaledonien)", "fr_NE": "fransk (Niger)", "fr_PF": "fransk (Fransk Polynesien)", "fr_PM": "fransk (Saint Pierre og Miquelon)", @@ -496,10 +496,11 @@ "sr_RS": "serbisk (Serbien)", "sr_XK": "serbisk (Kosovo)", "sv": "svensk", - "sv_AX": "svensk (Ålandsøerne)", + "sv_AX": "svensk (Åland)", "sv_FI": "svensk (Finland)", "sv_SE": "svensk (Sverige)", "sw": "swahili", + "sw_CD": "swahili (Congo-Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de.json b/src/Symfony/Component/Intl/Resources/data/locales/de.json index e5325a4c02946..60ab16e4a623a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -333,8 +333,8 @@ "kn": "Kannada", "kn_IN": "Kannada (Indien)", "ko": "Koreanisch", - "ko_KP": "Koreanisch (Demokratische Volksrepublik Korea)", - "ko_KR": "Koreanisch (Republik Korea)", + "ko_KP": "Koreanisch (Nordkorea)", + "ko_KR": "Koreanisch (Südkorea)", "ks": "Kaschmirisch", "ks_Arab": "Kaschmirisch (Arabisch)", "ks_Arab_IN": "Kaschmirisch (Arabisch, Indien)", @@ -397,7 +397,7 @@ "nl": "Niederländisch", "nl_AW": "Niederländisch (Aruba)", "nl_BE": "Niederländisch (Belgien)", - "nl_BQ": "Niederländisch (Karibische Niederlande)", + "nl_BQ": "Niederländisch (Bonaire, Sint Eustatius und Saba)", "nl_CW": "Niederländisch (Curaçao)", "nl_NL": "Niederländisch (Niederlande)", "nl_SR": "Niederländisch (Suriname)", @@ -413,7 +413,7 @@ "or_IN": "Oriya (Indien)", "os": "Ossetisch", "os_GE": "Ossetisch (Georgien)", - "os_RU": "Ossetisch (Russische Föderation)", + "os_RU": "Ossetisch (Russland)", "pa": "Panjabi", "pa_Arab": "Panjabi (Arabisch)", "pa_Arab_PK": "Panjabi (Arabisch, Pakistan)", @@ -451,7 +451,7 @@ "ru_KG": "Russisch (Kirgisistan)", "ru_KZ": "Russisch (Kasachstan)", "ru_MD": "Russisch (Republik Moldau)", - "ru_RU": "Russisch (Russische Föderation)", + "ru_RU": "Russisch (Russland)", "ru_UA": "Russisch (Ukraine)", "rw": "Ruandisch", "rw_RW": "Ruandisch (Ruanda)", @@ -496,10 +496,11 @@ "sr_RS": "Serbisch (Serbien)", "sr_XK": "Serbisch (Kosovo)", "sv": "Schwedisch", - "sv_AX": "Schwedisch (Åland-Inseln)", + "sv_AX": "Schwedisch (Ålandinseln)", "sv_FI": "Schwedisch (Finnland)", "sv_SE": "Schwedisch (Schweden)", "sw": "Suaheli", + "sw_CD": "Suaheli (Kongo-Kinshasa)", "sw_KE": "Suaheli (Kenia)", "sw_TZ": "Suaheli (Tansania)", "sw_UG": "Suaheli (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json b/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json index 3b7cae8719ac7..e3861fa7204ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de_CH.json @@ -1,6 +1,5 @@ { "Names": { - "ar_DJ": "Arabisch (Djibouti)", "be": "Weissrussisch", "be_BY": "Weissrussisch (Weissrussland)", "bn_BD": "Bengalisch (Bangladesh)", @@ -8,21 +7,14 @@ "en_BW": "Englisch (Botswana)", "en_GB": "Englisch (Grossbritannien)", "en_MH": "Englisch (Marshall-Inseln)", - "en_RW": "Englisch (Rwanda)", "en_SB": "Englisch (Salomon-Inseln)", "en_ZW": "Englisch (Zimbabwe)", - "fr_DJ": "Französisch (Djibouti)", - "fr_RW": "Französisch (Rwanda)", "gd_GB": "Schottisches Gälisch (Grossbritannien)", "kw_GB": "Kornisch (Grossbritannien)", "ms_BN": "Malaiisch (Brunei)", "ms_Latn_BN": "Malaiisch (Lateinisch, Brunei)", "nd_ZW": "Nord-Ndebele-Sprache (Zimbabwe)", - "pt_CV": "Portugiesisch (Kapverden)", - "pt_ST": "Portugiesisch (Sao Tomé und Principe)", "ru_BY": "Russisch (Weissrussland)", - "rw_RW": "Ruandisch (Rwanda)", - "sn_ZW": "Shona (Zimbabwe)", - "so_DJ": "Somali (Djibouti)" + "sn_ZW": "Shona (Zimbabwe)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index 94ffe19bd6c79..a01a9fe726698 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -434,6 +434,7 @@ "sv_FI": "སུའི་ཌིཤ་ཁ (ཕིན་ལེནཌ)", "sv_SE": "སུའི་ཌིཤ་ཁ (སུའི་ཌེན)", "sw": "སྭཱ་ཧི་ལི་ཁ", + "sw_CD": "སྭཱ་ཧི་ལི་ཁ (ཀོང་གྷོ ཀིན་ཤ་ས)", "sw_KE": "སྭཱ་ཧི་ལི་ཁ (ཀེན་ཡ)", "sw_TZ": "སྭཱ་ཧི་ལི་ཁ (ཊཱན་ཛཱ་ནི་ཡ)", "sw_UG": "སྭཱ་ཧི་ལི་ཁ (ཡུ་གྷན་ཌ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ee.json b/src/Symfony/Component/Intl/Resources/data/locales/ee.json index a9cc92796e279..1c9f46b65f3af 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -459,6 +459,7 @@ "sv_FI": "swedengbe (Finland nutome)", "sv_SE": "swedengbe (Sweden nutome)", "sw": "swahili", + "sw_CD": "swahili (Kongo Kinshasa nutome)", "sw_KE": "swahili (Kenya nutome)", "sw_TZ": "swahili (Tanzania nutome)", "sw_UG": "swahili (Uganda nutome)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index cd9355dcea71f..41d8b019b55ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -365,7 +365,7 @@ "mg": "Μαλαγάσι", "mg_MG": "Μαλαγάσι (Μαδαγασκάρη)", "mk": "Σλαβομακεδονικά", - "mk_MK": "Σλαβομακεδονικά (Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας)", + "mk_MK": "Σλαβομακεδονικά (ΠΓΔΜ)", "ml": "Μαλαγιαλάμ", "ml_IN": "Μαλαγιαλάμ (Ινδία)", "mn": "Μογγολικά", @@ -478,7 +478,7 @@ "so_SO": "Σομάλι (Σομαλία)", "sq": "Αλβανικά", "sq_AL": "Αλβανικά (Αλβανία)", - "sq_MK": "Αλβανικά (Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας)", + "sq_MK": "Αλβανικά (ΠΓΔΜ)", "sq_XK": "Αλβανικά (Κόσοβο)", "sr": "Σερβικά", "sr_BA": "Σερβικά (Βοσνία - Ερζεγοβίνη)", @@ -500,6 +500,7 @@ "sv_FI": "Σουηδικά (Φινλανδία)", "sv_SE": "Σουηδικά (Σουηδία)", "sw": "Σουαχίλι", + "sw_CD": "Σουαχίλι (Κονγκό - Κινσάσα)", "sw_KE": "Σουαχίλι (Κένυα)", "sw_TZ": "Σουαχίλι (Τανζανία)", "sw_UG": "Σουαχίλι (Ουγκάντα)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index c29339b10b503..59ecc772fad71 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -500,6 +500,7 @@ "sv_FI": "Swedish (Finland)", "sv_SE": "Swedish (Sweden)", "sw": "Swahili", + "sw_CD": "Swahili (Congo - Kinshasa)", "sw_KE": "Swahili (Kenya)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en_AU.json b/src/Symfony/Component/Intl/Resources/data/locales/en_AU.json deleted file mode 100644 index 9d66ca7d2e90e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/en_AU.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Names": { - "en_UM": "English (U.S. Minor Outlying Islands)", - "en_VC": "English (Saint Vincent and the Grenadines)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en_GB.json b/src/Symfony/Component/Intl/Resources/data/locales/en_GB.json deleted file mode 100644 index 7911338bffe7e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/en_GB.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "Names": { - "bs_BA": "Bosnian (Bosnia and Herzegovina)", - "bs_Cyrl_BA": "Bosnian (Cyrillic, Bosnia and Herzegovina)", - "bs_Latn_BA": "Bosnian (Latin, Bosnia and Herzegovina)", - "en_AG": "English (Antigua and Barbuda)", - "en_KN": "English (Saint Kitts and Nevis)", - "en_LC": "English (Saint Lucia)", - "en_SH": "English (Saint Helena)", - "en_TC": "English (Turks and Caicos Islands)", - "en_TT": "English (Trinidad and Tobago)", - "es_EA": "Spanish (Ceuta and Melilla)", - "fr_BL": "French (Saint Barthélemy)", - "fr_MF": "French (Saint Martin)", - "fr_PM": "French (Saint Pierre and Miquelon)", - "fr_WF": "French (Wallis and Futuna)", - "hr_BA": "Croatian (Bosnia and Herzegovina)", - "nb_SJ": "Norwegian Bokmål (Svalbard and Jan Mayen)", - "pt_ST": "Portuguese (São Tomé and Príncipe)", - "sh_BA": "Serbo-Croatian (Bosnia and Herzegovina)", - "sr_BA": "Serbian (Bosnia and Herzegovina)", - "sr_Cyrl_BA": "Serbian (Cyrillic, Bosnia and Herzegovina)", - "sr_Latn_BA": "Serbian (Latin, Bosnia and Herzegovina)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index 05d1acd0bab9c..8d6299ddd96d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -16,7 +16,7 @@ "ar_EH": "árabe (Sáhara Occidental)", "ar_ER": "árabe (Eritrea)", "ar_IL": "árabe (Israel)", - "ar_IQ": "árabe (Iraq)", + "ar_IQ": "árabe (Irak)", "ar_JO": "árabe (Jordania)", "ar_KM": "árabe (Comoras)", "ar_KW": "árabe (Kuwait)", @@ -37,12 +37,12 @@ "ar_YE": "árabe (Yemen)", "as": "asamés", "as_IN": "asamés (India)", - "az": "azerí", - "az_AZ": "azerí (Azerbaiyán)", - "az_Cyrl": "azerí (cirílico)", - "az_Cyrl_AZ": "azerí (cirílico, Azerbaiyán)", - "az_Latn": "azerí (latín)", - "az_Latn_AZ": "azerí (latín, Azerbaiyán)", + "az": "azerbaiyano", + "az_AZ": "azerbaiyano (Azerbaiyán)", + "az_Cyrl": "azerbaiyano (cirílico)", + "az_Cyrl_AZ": "azerbaiyano (cirílico, Azerbaiyán)", + "az_Latn": "azerbaiyano (latín)", + "az_Latn_AZ": "azerbaiyano (latín, Azerbaiyán)", "be": "bielorruso", "be_BY": "bielorruso (Bielorrusia)", "bg": "búlgaro", @@ -106,7 +106,7 @@ "en_CC": "inglés (Islas Cocos)", "en_CK": "inglés (Islas Cook)", "en_CM": "inglés (Camerún)", - "en_CX": "inglés (Isla Christmas)", + "en_CX": "inglés (Isla de Navidad (Christmas))", "en_DG": "inglés (Diego García)", "en_DM": "inglés (Dominica)", "en_ER": "inglés (Eritrea)", @@ -148,7 +148,7 @@ "en_NF": "inglés (Isla Norfolk)", "en_NG": "inglés (Nigeria)", "en_NR": "inglés (Nauru)", - "en_NU": "inglés (Isla Niue)", + "en_NU": "inglés (Niue)", "en_NZ": "inglés (Nueva Zelanda)", "en_PG": "inglés (Papúa Nueva Guinea)", "en_PH": "inglés (Filipinas)", @@ -283,8 +283,8 @@ "gl_ES": "gallego (España)", "gu": "gujarati", "gu_IN": "gujarati (India)", - "gv": "gaélico manés", - "gv_IM": "gaélico manés (Isla de Man)", + "gv": "manés", + "gv_IM": "manés (Isla de Man)", "ha": "hausa", "ha_GH": "hausa (Ghana)", "ha_Latn": "hausa (latín)", @@ -372,8 +372,8 @@ "mn_Cyrl": "mongol (cirílico)", "mn_Cyrl_MN": "mongol (cirílico, Mongolia)", "mn_MN": "mongol (Mongolia)", - "mr": "marathi", - "mr_IN": "marathi (India)", + "mr": "maratí", + "mr_IN": "maratí (India)", "ms": "malayo", "ms_BN": "malayo (Brunéi)", "ms_Latn": "malayo (latín)", @@ -414,13 +414,13 @@ "os": "osético", "os_GE": "osético (Georgia)", "os_RU": "osético (Rusia)", - "pa": "punjabí", - "pa_Arab": "punjabí (árabe)", - "pa_Arab_PK": "punjabí (árabe, Pakistán)", - "pa_Guru": "punjabí (gurmuji)", - "pa_Guru_IN": "punjabí (gurmuji, India)", - "pa_IN": "punjabí (India)", - "pa_PK": "punjabí (Pakistán)", + "pa": "panyabí", + "pa_Arab": "panyabí (árabe)", + "pa_Arab_PK": "panyabí (árabe, Pakistán)", + "pa_Guru": "panyabí (gurmuji)", + "pa_Guru_IN": "panyabí (gurmuji, India)", + "pa_IN": "panyabí (India)", + "pa_PK": "panyabí (Pakistán)", "pl": "polaco", "pl_PL": "polaco (Polonia)", "ps": "pastún", @@ -500,6 +500,7 @@ "sv_FI": "sueco (Finlandia)", "sv_SE": "sueco (Suecia)", "sw": "swahili", + "sw_CD": "swahili (República Democrática del Congo)", "sw_KE": "swahili (Kenia)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json b/src/Symfony/Component/Intl/Resources/data/locales/es_419.json deleted file mode 100644 index dffe1ba566cf0..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_419.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "Names": { - "ar_IQ": "árabe (Irak)", - "az": "azerbaiyano", - "az_AZ": "azerbaiyano (Azerbaiyán)", - "az_Cyrl": "azerbaiyano (cirílico)", - "az_Cyrl_AZ": "azerbaiyano (cirílico, Azerbaiyán)", - "az_Latn": "azerbaiyano (latín)", - "az_Latn_AZ": "azerbaiyano (latín, Azerbaiyán)", - "bs_BA": "bosnio (Bosnia y Herzegovina)", - "bs_Cyrl_BA": "bosnio (cirílico, Bosnia y Herzegovina)", - "bs_Latn_BA": "bosnio (latín, Bosnia y Herzegovina)", - "en_NU": "inglés (Niue)", - "eu": "vasco", - "eu_ES": "vasco (España)", - "hr_BA": "croata (Bosnia y Herzegovina)", - "mr": "maratí", - "mr_IN": "maratí (India)", - "sh_BA": "serbocroata (Bosnia y Herzegovina)", - "sr_BA": "serbio (Bosnia y Herzegovina)", - "sr_Cyrl_BA": "serbio (cirílico, Bosnia y Herzegovina)", - "sr_Latn_BA": "serbio (latín, Bosnia y Herzegovina)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json b/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json index 124ab2542862f..e8d96137dca96 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es_MX.json @@ -1,6 +1,5 @@ { "Names": { - "ar_QA": "árabe (Qatar)", "bn_BD": "bengalí (Bangladesh)", "en_CC": "inglés (Islas Cocos (Keeling))", "en_CX": "inglés (Isla de Navidad)", @@ -8,38 +7,15 @@ "en_HK": "inglés (Región Administrativa Especial de Hong Kong de la República Popular China)", "en_MO": "inglés (Región Administrativa Especial de Macao de la República Popular China)", "en_PW": "inglés (Palaos)", - "en_UM": "inglés (Islas UltramarinasMenores de Estados Unidos)", + "en_UM": "inglés (Islas Ultramarinas Menores de Estados Unidos)", "en_VI": "inglés (Islas Vírgenes de los Estados Unidos)", "es_IC": "español (Islas Canarias)", - "fr_CG": "francés (Congo Brazzaville)", - "gv": "manés", - "gv_IM": "manés (Isla de Man)", - "ln_CG": "lingala (Congo Brazzaville)", - "nd": "sindebele", - "nd_ZW": "sindebele (Zimbabue)", - "pa": "panyabí", - "pa_Arab": "panyabí (árabe)", - "pa_Arab_PK": "panyabí (árabe, Pakistán)", - "pa_Guru": "panyabí (gurmuji)", - "pa_Guru_IN": "panyabí (gurmuji, India)", - "pa_IN": "panyabí (India)", - "pa_PK": "panyabí (Pakistán)", - "pt_GW": "portugués (Guinea-Bissau)", "pt_MO": "portugués (Región Administrativa Especial de Macao de la República Popular China)", - "rm": "romanche", - "rm_CH": "romanche (Suiza)", - "rn": "rundi", - "rn_BI": "rundi (Burundi)", "zh_HK": "chino (Región Administrativa Especial de Hong Kong de la República Popular China)", - "zh_Hans": "chino (han simplificado)", - "zh_Hans_CN": "chino (han simplificado, China)", - "zh_Hans_HK": "chino (han simplificado, Región Administrativa Especial de Hong Kong de la República Popular China)", - "zh_Hans_MO": "chino (han simplificado, Región Administrativa Especial de Macao de la República Popular China)", - "zh_Hans_SG": "chino (han simplificado, Singapur)", - "zh_Hant": "chino (han tradicional)", - "zh_Hant_HK": "chino (han tradicional, Región Administrativa Especial de Hong Kong de la República Popular China)", - "zh_Hant_MO": "chino (han tradicional, Región Administrativa Especial de Macao de la República Popular China)", - "zh_Hant_TW": "chino (han tradicional, Taiwán)", + "zh_Hans_HK": "chino (simplificado, Región Administrativa Especial de Hong Kong de la República Popular China)", + "zh_Hans_MO": "chino (simplificado, Región Administrativa Especial de Macao de la República Popular China)", + "zh_Hant_HK": "chino (tradicional, Región Administrativa Especial de Hong Kong de la República Popular China)", + "zh_Hant_MO": "chino (tradicional, Región Administrativa Especial de Macao de la República Popular China)", "zh_MO": "chino (Región Administrativa Especial de Macao de la República Popular China)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/et.json b/src/Symfony/Component/Intl/Resources/data/locales/et.json index a172dcbaa5b2e..399f540dc9510 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -500,6 +500,7 @@ "sv_FI": "rootsi (Soome)", "sv_SE": "rootsi (Rootsi)", "sw": "suahiili", + "sw_CD": "suahiili (Kongo DV)", "sw_KE": "suahiili (Kenya)", "sw_TZ": "suahiili (Tansaania)", "sw_UG": "suahiili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eu.json b/src/Symfony/Component/Intl/Resources/data/locales/eu.json index 609e79a585182..c5a6c60c82894 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -8,7 +8,7 @@ "am": "amharera", "am_ET": "amharera (Etiopia)", "ar": "arabiera", - "ar_AE": "arabiera (Arabiar Emirrerri Batuak)", + "ar_AE": "arabiera (Arabiar Emirerri Batuak)", "ar_BH": "arabiera (Bahrain)", "ar_DJ": "arabiera (Djibuti)", "ar_DZ": "arabiera (Aljeria)", @@ -103,7 +103,7 @@ "en_BW": "ingelesa (Botswana)", "en_BZ": "ingelesa (Belize)", "en_CA": "ingelesa (Kanada)", - "en_CC": "ingelesa (Cocos (Keeling) uharteak)", + "en_CC": "ingelesa (Cocos uharteak)", "en_CK": "ingelesa (Cook uharteak)", "en_CM": "ingelesa (Kamerun)", "en_CX": "ingelesa (Christmas uhartea)", @@ -115,7 +115,7 @@ "en_FM": "ingelesa (Mikronesia)", "en_GB": "ingelesa (Erresuma Batua)", "en_GD": "ingelesa (Grenada)", - "en_GG": "ingelesa (Guernsey)", + "en_GG": "ingelesa (Guernesey)", "en_GH": "ingelesa (Ghana)", "en_GI": "ingelesa (Gibraltar)", "en_GM": "ingelesa (Gambia)", @@ -226,7 +226,7 @@ "fr_BF": "frantsesa (Burkina Faso)", "fr_BI": "frantsesa (Burundi)", "fr_BJ": "frantsesa (Benin)", - "fr_BL": "frantsesa (San Bartolome)", + "fr_BL": "frantsesa (Saint Barthélemy)", "fr_CA": "frantsesa (Kanada)", "fr_CD": "frantsesa (Kongoko Errepublika Demokratikoa)", "fr_CF": "frantsesa (Afrika Erdiko Errepublika)", @@ -495,6 +495,7 @@ "sv_FI": "suediera (Finlandia)", "sv_SE": "suediera (Suedia)", "sw": "swahili", + "sw_CD": "swahili (Kongoko Errepublika Demokratikoa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa.json b/src/Symfony/Component/Intl/Resources/data/locales/fa.json index 43c71a6bfadfc..3e6c5be27f1e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -18,7 +18,7 @@ "ar_IL": "عربی (اسرائیل)", "ar_IQ": "عربی (عراق)", "ar_JO": "عربی (اردن)", - "ar_KM": "عربی (کومور)", + "ar_KM": "عربی (کومورو)", "ar_KW": "عربی (کویت)", "ar_LB": "عربی (لبنان)", "ar_LY": "عربی (لیبی)", @@ -94,7 +94,7 @@ "en": "انگلیسی", "en_AG": "انگلیسی (آنتیگوا و باربودا)", "en_AI": "انگلیسی (آنگویلا)", - "en_AS": "انگلیسی (ساموآی آمریکا)", + "en_AS": "انگلیسی (ساموآی امریکا)", "en_AU": "انگلیسی (استرالیا)", "en_BB": "انگلیسی (باربادوس)", "en_BE": "انگلیسی (بلژیک)", @@ -103,7 +103,7 @@ "en_BW": "انگلیسی (بوتسوانا)", "en_BZ": "انگلیسی (بلیز)", "en_CA": "انگلیسی (کانادا)", - "en_CC": "انگلیسی (جزایر کوکوس (کیلینگ))", + "en_CC": "انگلیسی (جزایر کوکوس)", "en_CK": "انگلیسی (جزایر کوک)", "en_CM": "انگلیسی (کامرون)", "en_CX": "انگلیسی (جزیرهٔ کریسمس)", @@ -145,11 +145,11 @@ "en_MW": "انگلیسی (مالاوی)", "en_MY": "انگلیسی (مالزی)", "en_NA": "انگلیسی (نامیبیا)", - "en_NF": "انگلیسی (جزیره نورفک)", + "en_NF": "انگلیسی (جزیرهٔ نورفولک)", "en_NG": "انگلیسی (نیجریه)", "en_NR": "انگلیسی (نائورو)", "en_NU": "انگلیسی (نیوئه)", - "en_NZ": "انگلیسی (زلاند نو)", + "en_NZ": "انگلیسی (نیوزیلند)", "en_PG": "انگلیسی (پاپوا گینهٔ نو)", "en_PH": "انگلیسی (فیلیپین)", "en_PK": "انگلیسی (پاکستان)", @@ -248,7 +248,7 @@ "fr_GP": "فرانسوی (گوادلوپ)", "fr_GQ": "فرانسوی (گینهٔ استوایی)", "fr_HT": "فرانسوی (هائیتی)", - "fr_KM": "فرانسوی (کومور)", + "fr_KM": "فرانسوی (کومورو)", "fr_LU": "فرانسوی (لوکزامبورگ)", "fr_MA": "فرانسوی (مراکش)", "fr_MC": "فرانسوی (موناکو)", @@ -315,7 +315,7 @@ "it": "ایتالیایی", "it_CH": "ایتالیایی (سوئیس)", "it_IT": "ایتالیایی (ایتالیا)", - "it_SM": "ایتالیایی (سن مارینو)", + "it_SM": "ایتالیایی (سان‌مارینو)", "ja": "ژاپنی", "ja_JP": "ژاپنی (ژاپن)", "ka": "گرجی", @@ -397,7 +397,7 @@ "nl": "هلندی", "nl_AW": "هلندی (آروبا)", "nl_BE": "هلندی (بلژیک)", - "nl_BQ": "هلندی (جزایر کارائیب هلند)", + "nl_BQ": "هلندی (بونیر)", "nl_CW": "هلندی (کوراسائو)", "nl_NL": "هلندی (هلند)", "nl_SR": "هلندی (سورینام)", @@ -433,7 +433,7 @@ "pt_MO": "پرتغالی (ماکائو، ناحیهٔ ویژهٔ حکومتی چین)", "pt_MZ": "پرتغالی (موزامبیک)", "pt_PT": "پرتغالی (پرتغال)", - "pt_ST": "پرتغالی (سائوتومه و پرینسیپ)", + "pt_ST": "پرتغالی (پرینسیپ و سائوتومه)", "pt_TL": "پرتغالی (تیمور شرقی)", "qu": "کچوایی", "qu_BO": "کچوایی (بولیوی)", @@ -496,10 +496,11 @@ "sr_RS": "صربی (صربستان)", "sr_XK": "صربی (کوزوو)", "sv": "سوئدی", - "sv_AX": "سوئدی (جزایر اُلند)", + "sv_AX": "سوئدی (جزایر آلاند)", "sv_FI": "سوئدی (فنلاند)", "sv_SE": "سوئدی (سوئد)", "sw": "سواحلی", + "sw_CD": "سواحلی (کنگو - کینشاسا)", "sw_KE": "سواحلی (کنیا)", "sw_TZ": "سواحلی (تانزانیا)", "sw_UG": "سواحلی (اوگاندا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json index e65bb36791396..1104eb9f5d2e0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -26,7 +26,6 @@ "en_GY": "انگلیسی (گیانا)", "en_IE": "انگلیسی (آیرلند)", "en_KE": "انگلیسی (کینیا)", - "en_KN": "انگلیسی (سنت کیتس و نیویس)", "en_LS": "انگلیسی (لیسوتو)", "en_MG": "انگلیسی (مادغاسکر)", "en_MT": "انگلیسی (مالتا)", @@ -35,10 +34,8 @@ "en_NZ": "انگلیسی (زیلاند جدید)", "en_PG": "انگلیسی (پاپوا نیو گینیا)", "en_RW": "انگلیسی (روآندا)", - "en_SB": "انگلیسی (جزایر سلومون)", "en_SG": "انگلیسی (سینگاپور)", "en_SL": "انگلیسی (سیرالیون)", - "en_VC": "انگلیسی (سنت وینسنت و گرینادین)", "en_ZW": "انگلیسی (زیمبابوی)", "es": "هسپانوی", "es_AR": "هسپانوی (ارجنتاین)", @@ -68,18 +65,14 @@ "es_VE": "هسپانوی (ونزویلا)", "et_EE": "استونیایی (استونیا)", "eu_ES": "باسکی (هسپانیه)", - "fa": "دری", - "fa_AF": "دری (افغانستان)", - "fa_IR": "دری (ایران)", "ff_GN": "فولایی (گینیا)", "ff_MR": "فولایی (موریتانیا)", "ff_SN": "فولایی (سینیگال)", "fi": "فنلندی", "fi_FI": "فنلندی (فنلند)", "fr_BE": "فرانسوی (بلجیم)", - "fr_CD": "فرانسوی (جمهوری دموکراتیک کانگو)", - "fr_CF": "فرانسوی (افریقای مرکزی)", - "fr_CG": "فرانسوی (کانگو)", + "fr_CD": "فرانسوی (کانگو - کینشاسا)", + "fr_CG": "فرانسوی (کانگو - برازویل)", "fr_CH": "فرانسوی (سویس)", "fr_GN": "فرانسوی (گینیا)", "fr_GQ": "فرانسوی (گینیا استوایی)", @@ -105,7 +98,7 @@ "it": "ایتالوی", "it_CH": "ایتالوی (سویس)", "it_IT": "ایتالوی (ایتالیا)", - "it_SM": "ایتالوی (سن مارینو)", + "it_SM": "ایتالوی (سان‌مارینو)", "ja": "جاپانی", "ja_JP": "جاپانی (جاپان)", "ki_KE": "کیکویویی (کینیا)", @@ -118,11 +111,10 @@ "ky_Cyrl_KG": "قرغزی (سیریلی, قرغزستان)", "ky_KG": "قرغزی (قرغزستان)", "ln_AO": "لینگالا (انگولا)", - "ln_CD": "لینگالا (جمهوری دموکراتیک کانگو)", - "ln_CF": "لینگالا (افریقای مرکزی)", - "ln_CG": "لینگالا (کانگو)", + "ln_CD": "لینگالا (کانگو - کینشاسا)", + "ln_CG": "لینگالا (کانگو - برازویل)", "lt_LT": "لیتوانیایی (لتوانیا)", - "lu_CD": "لوبایی‐کاتانگا (جمهوری دموکراتیک کانگو)", + "lu_CD": "لوبایی‐کاتانگا (کانگو - کینشاسا)", "lv_LV": "لتونیایی (لاتویا)", "mg_MG": "مالاگاسیایی (مادغاسکر)", "mn": "مغلی", @@ -144,7 +136,7 @@ "nl": "هالندی", "nl_AW": "هالندی (آروبا)", "nl_BE": "هالندی (بلجیم)", - "nl_BQ": "هالندی (جزایر کارائیب هلند)", + "nl_BQ": "هالندی (بونیر)", "nl_CW": "هالندی (کوراسائو)", "nl_NL": "هالندی (هالند)", "nl_SR": "هالندی (سورینام)", @@ -164,7 +156,7 @@ "pt_MO": "پرتگالی (ماکائو، ناحیهٔ ویژهٔ حکومتی چین)", "pt_MZ": "پرتگالی (موزمبیق)", "pt_PT": "پرتگالی (پرتگال)", - "pt_ST": "پرتگالی (سائو تومه و پرینسیپ)", + "pt_ST": "پرتگالی (پرینسیپ و سائوتومه)", "pt_TL": "پرتگالی (تیمور شرقی)", "qu_BO": "کچوایی (بولیویا)", "qu_PE": "کچوایی (پیرو)", @@ -177,7 +169,6 @@ "se_FI": "سامی شمالی (فنلند)", "se_NO": "سامی شمالی (ناروی)", "se_SE": "سامی شمالی (سویدن)", - "sg_CF": "سانگویی (افریقای مرکزی)", "sh_BA": "صرب و کرواتی (بوسنیا و هرزه‌گوینا)", "si_LK": "سینهالی (سریلانکا)", "sk_SK": "اسلواکی (سلواکیا)", @@ -191,9 +182,10 @@ "sr_Cyrl_BA": "صربی (سیریلی, بوسنیا و هرزه‌گوینا)", "sr_Latn_BA": "صربی (لاتینی, بوسنیا و هرزه‌گوینا)", "sv": "سویدنی", - "sv_AX": "سویدنی (جزایر اُلند)", + "sv_AX": "سویدنی (جزایر آلاند)", "sv_FI": "سویدنی (فنلند)", "sv_SE": "سویدنی (سویدن)", + "sw_CD": "سواحلی (کانگو - کینشاسا)", "sw_KE": "سواحلی (کینیا)", "ta_LK": "تامیلی (سریلانکا)", "ta_MY": "تامیلی (مالیزیا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index e9fafdfe1e959..f8c2cb8ddb69a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -72,7 +72,7 @@ "cs": "tšekki", "cs_CZ": "tšekki (Tšekki)", "cy": "kymri", - "cy_GB": "kymri (Yhdistynyt kuningaskunta)", + "cy_GB": "kymri (Iso-Britannia)", "da": "tanska", "da_DK": "tanska (Tanska)", "da_GL": "tanska (Grönlanti)", @@ -113,7 +113,7 @@ "en_FJ": "englanti (Fidži)", "en_FK": "englanti (Falklandinsaaret)", "en_FM": "englanti (Mikronesian liittovaltio)", - "en_GB": "englanti (Yhdistynyt kuningaskunta)", + "en_GB": "englanti (Iso-Britannia)", "en_GD": "englanti (Grenada)", "en_GG": "englanti (Guernsey)", "en_GH": "englanti (Ghana)", @@ -278,7 +278,7 @@ "ga": "iiri", "ga_IE": "iiri (Irlanti)", "gd": "gaeli", - "gd_GB": "gaeli (Yhdistynyt kuningaskunta)", + "gd_GB": "gaeli (Iso-Britannia)", "gl": "galicia", "gl_ES": "galicia (Espanja)", "gu": "gudžarati", @@ -340,7 +340,7 @@ "ks_Arab_IN": "kašmiri (arabialainen, Intia)", "ks_IN": "kašmiri (Intia)", "kw": "korni", - "kw_GB": "korni (Yhdistynyt kuningaskunta)", + "kw_GB": "korni (Iso-Britannia)", "ky": "kirgiisi", "ky_Cyrl": "kirgiisi (kyrillinen)", "ky_Cyrl_KG": "kirgiisi (kyrillinen, Kirgisia)", @@ -500,6 +500,7 @@ "sv_FI": "ruotsi (Suomi)", "sv_SE": "ruotsi (Ruotsi)", "sw": "swahili", + "sw_CD": "swahili (Kongon demokraattinen tasavalta)", "sw_KE": "swahili (Kenia)", "sw_TZ": "swahili (Tansania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index 0a19dee7d9999..0e13e59a2d2e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -445,6 +445,7 @@ "sv_FI": "svenskt (Finnland)", "sv_SE": "svenskt (Svøríki)", "sw": "swahili", + "sw_CD": "swahili (Kongo-Kinshasa)", "sw_KE": "swahili (Kenja)", "sw_TZ": "swahili (Tansania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr.json b/src/Symfony/Component/Intl/Resources/data/locales/fr.json index 8416517bebba9..1cbfddafdafdd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -153,7 +153,7 @@ "en_PG": "anglais (Papouasie-Nouvelle-Guinée)", "en_PH": "anglais (Philippines)", "en_PK": "anglais (Pakistan)", - "en_PN": "anglais (Pitcairn)", + "en_PN": "anglais (Îles Pitcairn)", "en_PR": "anglais (Porto Rico)", "en_PW": "anglais (Palaos)", "en_RW": "anglais (Rwanda)", @@ -252,7 +252,7 @@ "fr_LU": "français (Luxembourg)", "fr_MA": "français (Maroc)", "fr_MC": "français (Monaco)", - "fr_MF": "français (Saint-Martin (partie française))", + "fr_MF": "français (Saint-Martin)", "fr_MG": "français (Madagascar)", "fr_ML": "français (Mali)", "fr_MQ": "français (Martinique)", @@ -500,6 +500,7 @@ "sv_FI": "suédois (Finlande)", "sv_SE": "suédois (Suède)", "sw": "swahili", + "sw_CD": "swahili (Congo-Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzanie)", "sw_UG": "swahili (Ouganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json index b1e5c5ffb30ad..90ceba9483ba2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json @@ -3,36 +3,7 @@ "be_BY": "biélorusse (Bélarus)", "en_CC": "anglais (Îles Cocos (Keeling))", "en_FM": "anglais (Micronésie)", - "en_SX": "anglais (Saint-Martin (Pays-Bas))", "en_VC": "anglais (Saint-Vincent-et-les Grenadines)", - "es_SV": "espagnol (Salvador)", - "fr_MF": "français (Saint-Martin (France))", - "fy": "frison", - "fy_NL": "frison (Pays-Bas)", - "gu": "goudjarâtî", - "gu_IN": "goudjarâtî (Inde)", - "ii": "yi de Sichuan", - "ii_CN": "yi de Sichuan (Chine)", - "nl_SX": "néerlandais (Saint-Martin (Pays-Bas))", - "ru_BY": "russe (Bélarus)", - "rw": "kinyarwanda", - "rw_RW": "kinyarwanda (Rwanda)", - "si": "cingalais", - "si_LK": "cingalais (Sri Lanka)", - "to": "tongan", - "to_TO": "tongan (Tonga)", - "ug": "ouïgour", - "ug_Arab": "ouïgour (arabe)", - "ug_Arab_CN": "ouïgour (arabe, Chine)", - "ug_CN": "ouïgour (Chine)", - "zh_Hans": "chinois (idéogrammes han simplifiés)", - "zh_Hans_CN": "chinois (idéogrammes han simplifiés, Chine)", - "zh_Hans_HK": "chinois (idéogrammes han simplifiés, R.A.S. chinoise de Hong Kong)", - "zh_Hans_MO": "chinois (idéogrammes han simplifiés, R.A.S. chinoise de Macao)", - "zh_Hans_SG": "chinois (idéogrammes han simplifiés, Singapour)", - "zh_Hant": "chinois (idéogrammes han traditionnels)", - "zh_Hant_HK": "chinois (idéogrammes han traditionnels, R.A.S. chinoise de Hong Kong)", - "zh_Hant_MO": "chinois (idéogrammes han traditionnels, R.A.S. chinoise de Macao)", - "zh_Hant_TW": "chinois (idéogrammes han traditionnels, Taïwan)" + "ru_BY": "russe (Bélarus)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index fdd6d2809590d..736b49f2e06a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -500,6 +500,7 @@ "sv_FI": "Zweeds (Finlân)", "sv_SE": "Zweeds (Zweden)", "sw": "Swahili", + "sw_CD": "Swahili (Congo-Kinshasa)", "sw_KE": "Swahili (Kenia)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Oeganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ga.json b/src/Symfony/Component/Intl/Resources/data/locales/ga.json index 4a4a5eb019c2b..2b07d793ba244 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -492,6 +492,7 @@ "sv_FI": "Sualainnis (An Fhionlainn)", "sv_SE": "Sualainnis (An tSualainn)", "sw": "Svahaílis", + "sw_CD": "Svahaílis (Poblacht Dhaonlathach an Chongó)", "sw_KE": "Svahaílis (An Chéinia)", "sw_TZ": "Svahaílis (An Tansáin)", "sw_UG": "Svahaílis (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gd.json b/src/Symfony/Component/Intl/Resources/data/locales/gd.json index 86970aa1bc81c..c8d528950e313 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -493,6 +493,7 @@ "sv_FI": "Suainis (An Fhionnlann)", "sv_SE": "Suainis (An t-Suain)", "sw": "Kiswahili", + "sw_CD": "Kiswahili (Congo - Kinshasa)", "sw_KE": "Kiswahili (Ceinia)", "sw_TZ": "Kiswahili (An Tansan)", "sw_UG": "Kiswahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gl.json b/src/Symfony/Component/Intl/Resources/data/locales/gl.json index ac9b0c1cbcf35..80bb1c97a12c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -10,10 +10,10 @@ "ar": "árabe", "ar_AE": "árabe (Emiratos Árabes Unidos)", "ar_BH": "árabe (Bahrein)", - "ar_DJ": "árabe (Xibuti)", + "ar_DJ": "árabe (Djibuti)", "ar_DZ": "árabe (Arxelia)", "ar_EG": "árabe (Exipto)", - "ar_EH": "árabe (Sahara Occidental)", + "ar_EH": "árabe (Sáhara Occidental)", "ar_ER": "árabe (Eritrea)", "ar_IL": "árabe (Israel)", "ar_IQ": "árabe (Iraq)", @@ -49,7 +49,7 @@ "bg_BG": "búlgaro (Bulgaria)", "bm": "bambara", "bm_Latn": "bambara (Latino)", - "bm_Latn_ML": "bambara (Latino, Mali)", + "bm_Latn_ML": "bambara (Latino, Malí)", "bn": "bengalí", "bn_BD": "bengalí (Bangladesh)", "bn_IN": "bengalí (India)", @@ -103,14 +103,14 @@ "en_BW": "inglés (Botsuana)", "en_BZ": "inglés (Belice)", "en_CA": "inglés (Canadá)", - "en_CC": "inglés (Illas Cocos (Keeling))", + "en_CC": "inglés (Illas Cocos)", "en_CK": "inglés (Illas Cook)", "en_CM": "inglés (Camerún)", "en_CX": "inglés (Illa Christmas)", "en_DG": "inglés (Diego García)", "en_DM": "inglés (Dominica)", "en_ER": "inglés (Eritrea)", - "en_FJ": "inglés (Fixi)", + "en_FJ": "inglés (Fidxi)", "en_FK": "inglés (Illas Malvinas)", "en_FM": "inglés (Micronesia)", "en_GB": "inglés (Reino Unido)", @@ -126,20 +126,20 @@ "en_IM": "inglés (Illa de Man)", "en_IN": "inglés (India)", "en_IO": "inglés (Territorio Británico do Océano Índico)", - "en_JE": "inglés (Jersey)", + "en_JE": "inglés (Illa de Jersey)", "en_JM": "inglés (Xamaica)", - "en_KE": "inglés (Quenia)", + "en_KE": "inglés (Kenya)", "en_KI": "inglés (Kiribati)", - "en_KN": "inglés (San Cristovo e Nevis)", + "en_KN": "inglés (Saint Kitts e Nevis)", "en_KY": "inglés (Illas Caimán)", "en_LC": "inglés (Santa Lucía)", "en_LR": "inglés (Liberia)", - "en_LS": "inglés (Lesotho)", + "en_LS": "inglés (Lesoto)", "en_MG": "inglés (Madagascar)", "en_MH": "inglés (Illas Marshall)", "en_MO": "inglés (Macau RAE de China)", "en_MP": "inglés (Illas Marianas do norte)", - "en_MS": "inglés (Montserrat)", + "en_MS": "inglés (Illa Montserrat)", "en_MT": "inglés (Malta)", "en_MU": "inglés (Mauricio)", "en_MW": "inglés (Malaui)", @@ -149,13 +149,13 @@ "en_NG": "inglés (Nixeria)", "en_NR": "inglés (Nauru)", "en_NU": "inglés (Niue)", - "en_NZ": "inglés (Nova Celandia)", + "en_NZ": "inglés (Nova Zelandia)", "en_PG": "inglés (Papúa Nova Guinea)", "en_PH": "inglés (Filipinas)", "en_PK": "inglés (Paquistán)", "en_PN": "inglés (Illas Pitcairn)", "en_PR": "inglés (Porto Rico)", - "en_PW": "inglés (Palau)", + "en_PW": "inglés (Rep. das Palaus)", "en_RW": "inglés (Ruanda)", "en_SB": "inglés (Illas Salomón)", "en_SC": "inglés (Seixeles)", @@ -167,7 +167,7 @@ "en_SX": "inglés (Sint Maarten)", "en_SZ": "inglés (Suacilandia)", "en_TC": "inglés (Illas Turks e Caicos)", - "en_TK": "inglés (Tokelau)", + "en_TK": "inglés (Toquelau)", "en_TO": "inglés (Tonga)", "en_TT": "inglés (Trindade e Tobago)", "en_TV": "inglés (Tuvalu)", @@ -206,7 +206,7 @@ "es_PH": "español (Filipinas)", "es_PR": "español (Porto Rico)", "es_PY": "español (Paraguai)", - "es_SV": "español (El Salvador)", + "es_SV": "español (O Salvador)", "es_US": "español (Estados Unidos de América)", "es_UY": "español (Uruguai)", "es_VE": "español (Venezuela)", @@ -229,12 +229,12 @@ "fr_BL": "francés (San Bartolomé)", "fr_CA": "francés (Canadá)", "fr_CD": "francés (República Democrática do Congo)", - "fr_CF": "francés (República Africana Central)", + "fr_CF": "francés (República Centroafricana)", "fr_CG": "francés (Congo)", "fr_CH": "francés (Suíza)", "fr_CI": "francés (Costa de Marfil)", "fr_CM": "francés (Camerún)", - "fr_DJ": "francés (Xibuti)", + "fr_DJ": "francés (Djibuti)", "fr_DZ": "francés (Arxelia)", "fr_FR": "francés (Francia)", "fr_GA": "francés (Gabón)", @@ -249,7 +249,7 @@ "fr_MC": "francés (Mónaco)", "fr_MF": "francés (San Martiño)", "fr_MG": "francés (Madagascar)", - "fr_ML": "francés (Mali)", + "fr_ML": "francés (Malí)", "fr_MQ": "francés (Martinica)", "fr_MR": "francés (Mauritania)", "fr_MU": "francés (Mauricio)", @@ -316,11 +316,11 @@ "ka": "xeorxiano", "ka_GE": "xeorxiano (Xeorxia)", "ki": "kikuyu", - "ki_KE": "kikuyu (Quenia)", + "ki_KE": "kikuyu (Kenya)", "kk": "casaco", "kk_Cyrl": "casaco (Cirílico)", - "kk_Cyrl_KZ": "casaco (Cirílico, Kazakhstan)", - "kk_KZ": "casaco (Kazakhstan)", + "kk_Cyrl_KZ": "casaco (Cirílico, Casaquistán)", + "kk_KZ": "casaco (Casaquistán)", "kl": "groenlandés", "kl_GL": "groenlandés (Grenlandia)", "km": "cambodiano", @@ -347,7 +347,7 @@ "ln": "lingala", "ln_AO": "lingala (Angola)", "ln_CD": "lingala (República Democrática do Congo)", - "ln_CF": "lingala (República Africana Central)", + "ln_CF": "lingala (República Centroafricana)", "ln_CG": "lingala (Congo)", "lo": "laotiano", "lo_LA": "laotiano (Laos)", @@ -360,7 +360,7 @@ "mg": "malgaxe", "mg_MG": "malgaxe (Madagascar)", "mk": "macedonio", - "mk_MK": "macedonio (Macedonia)", + "mk_MK": "macedonio (República de Macedonia)", "ml": "malabar", "ml_IN": "malabar (India)", "mn": "mongol", @@ -403,7 +403,7 @@ "no_NO": "noruegués (Noruega)", "om": "oromo", "om_ET": "oromo (Etiopía)", - "om_KE": "oromo (Quenia)", + "om_KE": "oromo (Kenya)", "or": "oriya", "or_IN": "oriya (India)", "os": "osetio", @@ -424,7 +424,7 @@ "pt_AO": "portugués (Angola)", "pt_BR": "portugués (Brasil)", "pt_CV": "portugués (Cabo Verde)", - "pt_GW": "portugués (Guinea-Bissau)", + "pt_GW": "portugués (Guinea-Bisau)", "pt_MO": "portugués (Macau RAE de China)", "pt_MZ": "portugués (Mozambique)", "pt_PT": "portugués (Portugal)", @@ -439,13 +439,13 @@ "rn": "rundi", "rn_BI": "rundi (Burundi)", "ro": "romanés", - "ro_MD": "romanés (Moldova)", + "ro_MD": "romanés (Moldavia)", "ro_RO": "romanés (Romanía)", "ru": "ruso", "ru_BY": "ruso (Bielorrusia)", "ru_KG": "ruso (Quirguicistán)", - "ru_KZ": "ruso (Kazakhstan)", - "ru_MD": "ruso (Moldova)", + "ru_KZ": "ruso (Casaquistán)", + "ru_MD": "ruso (Moldavia)", "ru_RU": "ruso (Rusia)", "ru_UA": "ruso (Ucraína)", "rw": "ruandés", @@ -455,7 +455,7 @@ "se_NO": "sami do norte (Noruega)", "se_SE": "sami do norte (Suecia)", "sg": "sango", - "sg_CF": "sango (República Africana Central)", + "sg_CF": "sango (República Centroafricana)", "sh": "serbocroata", "sh_BA": "serbocroata (Bosnia e Hercegovina)", "si": "cingalés", @@ -467,13 +467,13 @@ "sn": "shona", "sn_ZW": "shona (Cimbabue)", "so": "somalí", - "so_DJ": "somalí (Xibuti)", + "so_DJ": "somalí (Djibuti)", "so_ET": "somalí (Etiopía)", - "so_KE": "somalí (Quenia)", + "so_KE": "somalí (Kenya)", "so_SO": "somalí (Somalia)", "sq": "albanés", "sq_AL": "albanés (Albania)", - "sq_MK": "albanés (Macedonia)", + "sq_MK": "albanés (República de Macedonia)", "sq_XK": "albanés (Kosovo)", "sr": "serbio", "sr_BA": "serbio (Bosnia e Hercegovina)", @@ -491,11 +491,12 @@ "sr_RS": "serbio (Serbia)", "sr_XK": "serbio (Kosovo)", "sv": "sueco", - "sv_AX": "sueco (Illas Aland)", + "sv_AX": "sueco (Åland)", "sv_FI": "sueco (Finlandia)", "sv_SE": "sueco (Suecia)", "sw": "swahili", - "sw_KE": "swahili (Quenia)", + "sw_CD": "swahili (República Democrática do Congo)", + "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", "ta": "tamil", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gu.json b/src/Symfony/Component/Intl/Resources/data/locales/gu.json index fc05cb56204e8..613cbf911350d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -500,6 +500,7 @@ "sv_FI": "સ્વીડિશ (ફિનલેન્ડ)", "sv_SE": "સ્વીડિશ (સ્વીડન)", "sw": "સ્વાહિલી", + "sw_CD": "સ્વાહિલી (કોંગો - કિંશાસા)", "sw_KE": "સ્વાહિલી (કેન્યા)", "sw_TZ": "સ્વાહિલી (તાંઝાનિયા)", "sw_UG": "સ્વાહિલી (યુગાંડા)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index 1eac32991e874..5357266e9d05f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -18,7 +18,7 @@ "ar_IL": "ערבית (ישראל)", "ar_IQ": "ערבית (עיראק)", "ar_JO": "ערבית (ירדן)", - "ar_KM": "ערבית (קומורוס)", + "ar_KM": "ערבית (קומורו)", "ar_KW": "ערבית (כווית)", "ar_LB": "ערבית (לבנון)", "ar_LY": "ערבית (לוב)", @@ -125,7 +125,7 @@ "en_IE": "אנגלית (אירלנד)", "en_IM": "אנגלית (האי מאן)", "en_IN": "אנגלית (הודו)", - "en_IO": "אנגלית (טריטוריה בריטית באוקיאנוס ההודי)", + "en_IO": "אנגלית (הטריטוריה הבריטית באוקיינוס ההודי)", "en_JE": "אנגלית (ג׳רסי)", "en_JM": "אנגלית (ג׳מייקה)", "en_KE": "אנגלית (קניה)", @@ -154,7 +154,7 @@ "en_PH": "אנגלית (פיליפינים)", "en_PK": "אנגלית (פקיסטן)", "en_PN": "אנגלית (איי פיטקרן)", - "en_PR": "אנגלית (פורטו ריקו)", + "en_PR": "אנגלית (פוארטו ריקו)", "en_PW": "אנגלית (פאלאו)", "en_RW": "אנגלית (רואנדה)", "en_SB": "אנגלית (איי שלמה)", @@ -177,7 +177,7 @@ "en_US": "אנגלית (ארצות הברית)", "en_VC": "אנגלית (סנט וינסנט והגרנדינים)", "en_VG": "אנגלית (איי הבתולה הבריטיים)", - "en_VI": "אנגלית (איי הבתולה האמריקניים)", + "en_VI": "אנגלית (איי הבתולה של ארצות הברית)", "en_VU": "אנגלית (ונואטו)", "en_WS": "אנגלית (סמואה)", "en_ZA": "אנגלית (דרום אפריקה)", @@ -204,7 +204,7 @@ "es_PA": "ספרדית (פנמה)", "es_PE": "ספרדית (פרו)", "es_PH": "ספרדית (פיליפינים)", - "es_PR": "ספרדית (פורטו ריקו)", + "es_PR": "ספרדית (פוארטו ריקו)", "es_PY": "ספרדית (פרגוואי)", "es_SV": "ספרדית (אל סלבדור)", "es_US": "ספרדית (ארצות הברית)", @@ -248,11 +248,11 @@ "fr_GP": "צרפתית (גוואדלופ)", "fr_GQ": "צרפתית (גיניאה המשוונית)", "fr_HT": "צרפתית (האיטי)", - "fr_KM": "צרפתית (קומורוס)", + "fr_KM": "צרפתית (קומורו)", "fr_LU": "צרפתית (לוקסמבורג)", "fr_MA": "צרפתית (מרוקו)", "fr_MC": "צרפתית (מונקו)", - "fr_MF": "צרפתית (סנט מרטין)", + "fr_MF": "צרפתית (סן מרטן)", "fr_MG": "צרפתית (מדגסקר)", "fr_ML": "צרפתית (מאלי)", "fr_MQ": "צרפתית (מרטיניק)", @@ -500,6 +500,7 @@ "sv_FI": "שוודית (פינלנד)", "sv_SE": "שוודית (שוודיה)", "sw": "סווהילית", + "sw_CD": "סווהילית (קונגו - קינשאסה)", "sw_KE": "סווהילית (קניה)", "sw_TZ": "סווהילית (טנזניה)", "sw_UG": "סווהילית (אוגנדה)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index 4a6b7232e01c9..6d0675d9eb1c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -295,8 +295,8 @@ "ha_NG": "हौसा (नाइजीरिया)", "he": "हिब्रू", "he_IL": "हिब्रू (इसराइल)", - "hi": "हिंदी", - "hi_IN": "हिंदी (भारत)", + "hi": "हिन्दी", + "hi_IN": "हिन्दी (भारत)", "hr": "क्रोएशियाई", "hr_BA": "क्रोएशियाई (बोस्निया और हर्ज़ेगोविना)", "hr_HR": "क्रोएशियाई (क्रोएशिया)", @@ -500,6 +500,7 @@ "sv_FI": "स्वीडिश (फ़िनलैंड)", "sv_SE": "स्वीडिश (स्वीडन)", "sw": "स्वाहिली", + "sw_CD": "स्वाहिली (कांगो - किंशासा)", "sw_KE": "स्वाहिली (केन्या)", "sw_TZ": "स्वाहिली (तंज़ानिया)", "sw_UG": "स्वाहिली (युगांडा)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index 0a819087df6db..3df1caf0cf879 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -500,6 +500,7 @@ "sv_FI": "švedski (Finska)", "sv_SE": "švedski (Švedska)", "sw": "svahili", + "sw_CD": "svahili (Kongo - Kinshasa)", "sw_KE": "svahili (Kenija)", "sw_TZ": "svahili (Tanzanija)", "sw_UG": "svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hu.json b/src/Symfony/Component/Intl/Resources/data/locales/hu.json index 6d2551e850919..3d7a012e3d25a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -500,6 +500,7 @@ "sv_FI": "svéd (Finnország)", "sv_SE": "svéd (Svédország)", "sw": "szuahéli", + "sw_CD": "szuahéli (Kongó - Kinshasa)", "sw_KE": "szuahéli (Kenya)", "sw_TZ": "szuahéli (Tanzánia)", "sw_UG": "szuahéli (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hy.json b/src/Symfony/Component/Intl/Resources/data/locales/hy.json index 7ac67ea2d3dcc..532d8427937e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -486,6 +486,7 @@ "sv_FI": "շվեդերեն (Ֆինլանդիա)", "sv_SE": "շվեդերեն (Շվեդիա)", "sw": "սուահիլի", + "sw_CD": "սուահիլի (Կոնգո - Կինշասա)", "sw_KE": "սուահիլի (Քենիա)", "sw_TZ": "սուահիլի (Տանզանիա)", "sw_UG": "սուահիլի (Ուգանդա)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/id.json b/src/Symfony/Component/Intl/Resources/data/locales/id.json index f57caf7bcce73..243a3da382636 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -500,6 +500,7 @@ "sv_FI": "Swedia (Finlandia)", "sv_SE": "Swedia (Swedia)", "sw": "Swahili", + "sw_CD": "Swahili (Kongo - Kinshasa)", "sw_KE": "Swahili (Kenya)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/is.json b/src/Symfony/Component/Intl/Resources/data/locales/is.json index 3ab37efc5c5a0..fdf080fdf6e85 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -500,6 +500,7 @@ "sv_FI": "sænska (Finnland)", "sv_SE": "sænska (Svíþjóð)", "sw": "svahílí", + "sw_CD": "svahílí (Kongó-Kinshasa)", "sw_KE": "svahílí (Kenía)", "sw_TZ": "svahílí (Tansanía)", "sw_UG": "svahílí (Úganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/it.json b/src/Symfony/Component/Intl/Resources/data/locales/it.json index b5ab275ba8819..bad20b5b95b76 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -500,6 +500,7 @@ "sv_FI": "svedese (Finlandia)", "sv_SE": "svedese (Svezia)", "sw": "swahili", + "sw_CD": "swahili (Congo - Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ja.json b/src/Symfony/Component/Intl/Resources/data/locales/ja.json index d2d808ed9900e..a23ec1c4ccb0e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -500,6 +500,7 @@ "sv_FI": "スウェーデン語 (フィンランド)", "sv_SE": "スウェーデン語 (スウェーデン)", "sw": "スワヒリ語", + "sw_CD": "スワヒリ語 (コンゴ民主共和国(キンシャサ))", "sw_KE": "スワヒリ語 (ケニア)", "sw_TZ": "スワヒリ語 (タンザニア)", "sw_UG": "スワヒリ語 (ウガンダ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ka.json b/src/Symfony/Component/Intl/Resources/data/locales/ka.json index c35593f18eb46..a27808763614a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -2,7 +2,7 @@ "Names": { "af": "აფრიკაანსი", "af_NA": "აფრიკაანსი (ნამიბია)", - "af_ZA": "აფრიკაანსი (სამხრეთ აფრიკა)", + "af_ZA": "აფრიკაანსი (სამხრეთ აფრიკის რესპუბლიკა)", "ak": "აკანი", "ak_GH": "აკანი (განა)", "am": "ამჰარული", @@ -44,7 +44,7 @@ "az_Latn": "აზერბაიჯანული (ლათინური)", "az_Latn_AZ": "აზერბაიჯანული (ლათინური, აზერბაიჯანი)", "be": "ბელორუსული", - "be_BY": "ბელორუსული (ბელორუსია)", + "be_BY": "ბელორუსული (ბელარუსი)", "bg": "ბულგარული", "bg_BG": "ბულგარული (ბულგარეთი)", "bm": "ბამბარა", @@ -81,10 +81,10 @@ "de_BE": "გერმანული (ბელგია)", "de_CH": "გერმანული (შვეიცარია)", "de_DE": "გერმანული (გერმანია)", - "de_LI": "გერმანული (ლიხტენშტეინი)", + "de_LI": "გერმანული (ლიხტენშტაინი)", "de_LU": "გერმანული (ლუქსემბურგი)", "dz": "ძონგკხა", - "dz_BT": "ძონგკხა (ბუტანი)", + "dz_BT": "ძონგკხა (ბჰუტანი)", "ee": "ევე", "ee_GH": "ევე (განა)", "ee_TG": "ევე (ტოგო)", @@ -93,8 +93,8 @@ "el_GR": "ბერძნული (საბერძნეთი)", "en": "ინგლისური", "en_AG": "ინგლისური (ანტიგუა და ბარბუდა)", - "en_AI": "ინგლისური (ანგვილა)", - "en_AS": "ინგლისური (ამერიკული სამოა)", + "en_AI": "ინგლისური (ანგილია)", + "en_AS": "ინგლისური (ამერიკის სამოა)", "en_AU": "ინგლისური (ავსტრალია)", "en_BB": "ინგლისური (ბარბადოსი)", "en_BE": "ინგლისური (ბელგია)", @@ -103,7 +103,7 @@ "en_BW": "ინგლისური (ბოტსვანა)", "en_BZ": "ინგლისური (ბელიზი)", "en_CA": "ინგლისური (კანადა)", - "en_CC": "ინგლისური (ქოქოსის (კილინგის) კუნძულები)", + "en_CC": "ინგლისური (ქოქოსის კუნძულები)", "en_CK": "ინგლისური (კუკის კუნძულები)", "en_CM": "ინგლისური (კამერუნი)", "en_CX": "ინგლისური (შობის კუნძული)", @@ -125,7 +125,7 @@ "en_IE": "ინგლისური (ირლანდია)", "en_IM": "ინგლისური (მენის კუნძული)", "en_IN": "ინგლისური (ინდოეთი)", - "en_IO": "ინგლისური (ბრიტანული ტერიტორია ინდოეთის ოკეანეში)", + "en_IO": "ინგლისური (ბრიტ. ტერიტ. ინდ. ოკეანეში)", "en_JE": "ინგლისური (ჯერსი)", "en_JM": "ინგლისური (იამაიკა)", "en_KE": "ინგლისური (კენია)", @@ -166,7 +166,7 @@ "en_SS": "ინგლისური (სამხრეთი სუდანი)", "en_SX": "ინგლისური (სინტ-მარტენი)", "en_SZ": "ინგლისური (სვაზილენდი)", - "en_TC": "ინგლისური (ტერკსის და კაიკოსის კუნძულები)", + "en_TC": "ინგლისური (ტერქსისა და კაიკოსის კუნძულები)", "en_TK": "ინგლისური (ტოკელაუ)", "en_TO": "ინგლისური (ტონგა)", "en_TT": "ინგლისური (ტრინიდადი და ტობაგო)", @@ -176,11 +176,11 @@ "en_UM": "ინგლისური (აშშ-ის შორეული კუნძულები)", "en_US": "ინგლისური (ამერიკის შეერთებული შტატები)", "en_VC": "ინგლისური (სენტ-ვინსენტი და გრენადინები)", - "en_VG": "ინგლისური (ბრიტანეთის ვირჯინიის კუნძულები)", - "en_VI": "ინგლისური (აშშ-ის ვირჯინიის კუნძულები)", + "en_VG": "ინგლისური (ბრიტანეთის ვირჯინის კუნძულები)", + "en_VI": "ინგლისური (აშშ-ის ვირჯინის კუნძულები)", "en_VU": "ინგლისური (ვანუატუ)", "en_WS": "ინგლისური (სამოა)", - "en_ZA": "ინგლისური (სამხრეთ აფრიკა)", + "en_ZA": "ინგლისური (სამხრეთ აფრიკის რესპუბლიკა)", "en_ZM": "ინგლისური (ზამბია)", "en_ZW": "ინგლისური (ზიმბაბვე)", "eo": "ესპერანტო", @@ -191,7 +191,7 @@ "es_CO": "ესპანური (კოლუმბია)", "es_CR": "ესპანური (კოსტა-რიკა)", "es_CU": "ესპანური (კუბა)", - "es_DO": "ესპანური (დომინიკანის რესპუბლიკა)", + "es_DO": "ესპანური (დომინიკელთა რესპუბლიკა)", "es_EA": "ესპანური (სეუტა და მელილა)", "es_EC": "ესპანური (ეკვადორი)", "es_ES": "ესპანური (ესპანეთი)", @@ -226,7 +226,7 @@ "fr_BF": "ფრანგული (ბურკინა-ფასო)", "fr_BI": "ფრანგული (ბურუნდი)", "fr_BJ": "ფრანგული (ბენინი)", - "fr_BL": "ფრანგული (სენ-ბართლემი)", + "fr_BL": "ფრანგული (სენ-ბართელმი)", "fr_CA": "ფრანგული (კანადა)", "fr_CD": "ფრანგული (კონგო - კინშასა)", "fr_CF": "ფრანგული (ცენტრალური აფრიკის რესპუბლიკა)", @@ -238,9 +238,9 @@ "fr_DZ": "ფრანგული (ალჟირი)", "fr_FR": "ფრანგული (საფრანგეთი)", "fr_GA": "ფრანგული (გაბონი)", - "fr_GF": "ფრანგული (ფრანგული გვიანა)", + "fr_GF": "ფრანგული (საფრანგეთის გვიანა)", "fr_GN": "ფრანგული (გვინეა)", - "fr_GP": "ფრანგული (გვადელუპე)", + "fr_GP": "ფრანგული (გვადელუპა)", "fr_GQ": "ფრანგული (ეკვატორული გვინეა)", "fr_HT": "ფრანგული (ჰაიტი)", "fr_KM": "ფრანგული (კომორის კუნძულები)", @@ -255,7 +255,7 @@ "fr_MU": "ფრანგული (მავრიკი)", "fr_NC": "ფრანგული (ახალი კალედონია)", "fr_NE": "ფრანგული (ნიგერი)", - "fr_PF": "ფრანგული (ფრანგული პოლინეზია)", + "fr_PF": "ფრანგული (საფრანგეთის პოლინეზია)", "fr_PM": "ფრანგული (სენ-პიერი და მიკელონი)", "fr_RE": "ფრანგული (რეუნიონი)", "fr_RW": "ფრანგული (რუანდა)", @@ -429,7 +429,7 @@ "pt_MZ": "პორტუგალიური (მოზამბიკი)", "pt_PT": "პორტუგალიური (პორტუგალია)", "pt_ST": "პორტუგალიური (სან-ტომე და პრინსიპი)", - "pt_TL": "პორტუგალიური (ტიმორ-ლეშტი)", + "pt_TL": "პორტუგალიური (აღმოსავლეთი ტიმორი)", "qu": "კეჩუა", "qu_BO": "კეჩუა (ბოლივია)", "qu_EC": "კეჩუა (ეკვადორი)", @@ -442,7 +442,7 @@ "ro_MD": "რუმინული (მოლდოვა)", "ro_RO": "რუმინული (რუმინეთი)", "ru": "რუსული", - "ru_BY": "რუსული (ბელორუსია)", + "ru_BY": "რუსული (ბელარუსი)", "ru_KG": "რუსული (ყირგიზეთი)", "ru_KZ": "რუსული (ყაზახეთი)", "ru_MD": "რუსული (მოლდოვა)", @@ -495,6 +495,7 @@ "sv_FI": "შვედური (ფინეთი)", "sv_SE": "შვედური (შვედეთი)", "sw": "სუაჰილი", + "sw_CD": "სუაჰილი (კონგო - კინშასა)", "sw_KE": "სუაჰილი (კენია)", "sw_TZ": "სუაჰილი (ტანზანია)", "sw_UG": "სუაჰილი (უგანდა)", @@ -555,6 +556,6 @@ "zh_SG": "ჩინური (სინგაპური)", "zh_TW": "ჩინური (ტაივანი)", "zu": "ზულუ", - "zu_ZA": "ზულუ (სამხრეთ აფრიკა)" + "zu_ZA": "ზულუ (სამხრეთ აფრიკის რესპუბლიკა)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 7e28e0c1f4647..6bc74efc69b39 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -486,6 +486,7 @@ "sv_FI": "швед (Финляндия)", "sv_SE": "швед (Швеция)", "sw": "суахили", + "sw_CD": "суахили (Конго)", "sw_KE": "суахили (Кения)", "sw_TZ": "суахили (Танзания)", "sw_UG": "суахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index 1f38093c6a1ae..be75300c91970 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -490,6 +490,7 @@ "sv_FI": "ស៊ុយអែដ (ហ្វាំងឡង់)", "sv_SE": "ស៊ុយអែដ (ស៊ុយអែដ)", "sw": "ស្វាហ៊ីលី", + "sw_CD": "ស្វាហ៊ីលី (កុងហ្គោ- គីនស្ហាសា)", "sw_KE": "ស្វាហ៊ីលី (កេនយ៉ា)", "sw_TZ": "ស្វាហ៊ីលី (តង់ហ្សានី)", "sw_UG": "ស្វាហ៊ីលី (អ៊ូហ្កង់ដា)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index a654b3ded0dd8..ff34d532eea03 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -500,6 +500,7 @@ "sv_FI": "ಸ್ವೀಡಿಷ್ (ಫಿನ್‌ಲ್ಯಾಂಡ್)", "sv_SE": "ಸ್ವೀಡಿಷ್ (ಸ್ವೀಡನ್)", "sw": "ಸ್ವಹಿಲಿ", + "sw_CD": "ಸ್ವಹಿಲಿ (ಕಾಂಗೋ - ಕಿನ್ಶಾಸಾ)", "sw_KE": "ಸ್ವಹಿಲಿ (ಕೀನ್ಯಾ)", "sw_TZ": "ಸ್ವಹಿಲಿ (ತಾಂಜೇನಿಯಾ)", "sw_UG": "ಸ್ವಹಿಲಿ (ಉಗಾಂಡಾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index 4484c7acf9abb..6bfcf01b8758c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -18,7 +18,7 @@ "ar_IL": "아랍어 (이스라엘)", "ar_IQ": "아랍어 (이라크)", "ar_JO": "아랍어 (요르단)", - "ar_KM": "아랍어 (코모로스)", + "ar_KM": "아랍어 (코모로)", "ar_KW": "아랍어 (쿠웨이트)", "ar_LB": "아랍어 (레바논)", "ar_LY": "아랍어 (리비아)", @@ -89,11 +89,11 @@ "ee_GH": "에웨어 (가나)", "ee_TG": "에웨어 (토고)", "el": "그리스어", - "el_CY": "그리스어 (사이프러스)", + "el_CY": "그리스어 (키프로스)", "el_GR": "그리스어 (그리스)", "en": "영어", "en_AG": "영어 (앤티가 바부다)", - "en_AI": "영어 (안길라)", + "en_AI": "영어 (앵귈라)", "en_AS": "영어 (아메리칸 사모아)", "en_AU": "영어 (오스트레일리아)", "en_BB": "영어 (바베이도스)", @@ -125,12 +125,12 @@ "en_IE": "영어 (아일랜드)", "en_IM": "영어 (맨 섬)", "en_IN": "영어 (인도)", - "en_IO": "영어 (영국령인도양식민지)", + "en_IO": "영어 (영국령 인도양 식민지)", "en_JE": "영어 (저지)", "en_JM": "영어 (자메이카)", "en_KE": "영어 (케냐)", "en_KI": "영어 (키리바시)", - "en_KN": "영어 (세인트 키츠 네비스)", + "en_KN": "영어 (세인트키츠 네비스)", "en_KY": "영어 (케이맨제도)", "en_LC": "영어 (세인트루시아)", "en_LR": "영어 (라이베리아)", @@ -158,15 +158,15 @@ "en_PW": "영어 (팔라우)", "en_RW": "영어 (르완다)", "en_SB": "영어 (솔로몬 제도)", - "en_SC": "영어 (쉐이쉘)", + "en_SC": "영어 (세이셸)", "en_SD": "영어 (수단)", "en_SG": "영어 (싱가포르)", "en_SH": "영어 (세인트헬레나)", "en_SL": "영어 (시에라리온)", "en_SS": "영어 (남수단)", "en_SX": "영어 (신트마르턴)", - "en_SZ": "영어 (스와질랜드)", - "en_TC": "영어 (터크스케이커스제도)", + "en_SZ": "영어 (스와질란드)", + "en_TC": "영어 (터크스 케이커스 제도)", "en_TK": "영어 (토켈라우)", "en_TO": "영어 (통가)", "en_TT": "영어 (트리니다드 토바고)", @@ -176,8 +176,8 @@ "en_UM": "영어 (미국령 해외 제도)", "en_US": "영어 (미국)", "en_VC": "영어 (세인트빈센트그레나딘)", - "en_VG": "영어 (영국령 버진 아일랜드)", - "en_VI": "영어 (미국령 버진 아일랜드)", + "en_VG": "영어 (영국령 버진아일랜드)", + "en_VI": "영어 (미국령 버진아일랜드)", "en_VU": "영어 (바누아투)", "en_WS": "영어 (사모아)", "en_ZA": "영어 (남아프리카)", @@ -225,13 +225,13 @@ "fi": "핀란드어", "fi_FI": "핀란드어 (핀란드)", "fo": "페로어", - "fo_FO": "페로어 (페로제도)", + "fo_FO": "페로어 (페로 제도)", "fr": "프랑스어", "fr_BE": "프랑스어 (벨기에)", "fr_BF": "프랑스어 (부르키나파소)", "fr_BI": "프랑스어 (부룬디)", "fr_BJ": "프랑스어 (베냉)", - "fr_BL": "프랑스어 (생 바르텔르미)", + "fr_BL": "프랑스어 (생바르텔레미)", "fr_CA": "프랑스어 (캐나다)", "fr_CD": "프랑스어 (콩고-킨샤사)", "fr_CF": "프랑스어 (중앙 아프리카 공화국)", @@ -248,23 +248,23 @@ "fr_GP": "프랑스어 (과들루프)", "fr_GQ": "프랑스어 (적도 기니)", "fr_HT": "프랑스어 (아이티)", - "fr_KM": "프랑스어 (코모로스)", + "fr_KM": "프랑스어 (코모로)", "fr_LU": "프랑스어 (룩셈부르크)", "fr_MA": "프랑스어 (모로코)", "fr_MC": "프랑스어 (모나코)", "fr_MF": "프랑스어 (생 마르탱)", "fr_MG": "프랑스어 (마다가스카르)", "fr_ML": "프랑스어 (말리)", - "fr_MQ": "프랑스어 (말티니크)", + "fr_MQ": "프랑스어 (마르티니크)", "fr_MR": "프랑스어 (모리타니)", "fr_MU": "프랑스어 (모리셔스)", - "fr_NC": "프랑스어 (뉴 칼레도니아)", + "fr_NC": "프랑스어 (뉴칼레도니아)", "fr_NE": "프랑스어 (니제르)", "fr_PF": "프랑스어 (프랑스령 폴리네시아)", "fr_PM": "프랑스어 (생피에르 미클롱)", "fr_RE": "프랑스어 (리유니온)", "fr_RW": "프랑스어 (르완다)", - "fr_SC": "프랑스어 (쉐이쉘)", + "fr_SC": "프랑스어 (세이셸)", "fr_SN": "프랑스어 (세네갈)", "fr_SY": "프랑스어 (시리아)", "fr_TD": "프랑스어 (차드)", @@ -272,7 +272,7 @@ "fr_TN": "프랑스어 (튀니지)", "fr_VU": "프랑스어 (바누아투)", "fr_WF": "프랑스어 (왈리스-푸투나 제도)", - "fr_YT": "프랑스어 (마요티)", + "fr_YT": "프랑스어 (마요트)", "fy": "프리지아어", "fy_NL": "프리지아어 (네덜란드)", "ga": "아일랜드어", @@ -333,7 +333,7 @@ "kn": "칸나다어", "kn_IN": "칸나다어 (인도)", "ko": "한국어", - "ko_KP": "한국어 (조선 민주주의 인민 공화국)", + "ko_KP": "한국어 (조선민주주의인민공화국)", "ko_KR": "한국어 (대한민국)", "ks": "카슈미르어", "ks_Arab": "카슈미르어 (아랍 문자)", @@ -428,8 +428,8 @@ "pt": "포르투갈어", "pt_AO": "포르투갈어 (앙골라)", "pt_BR": "포르투갈어 (브라질)", - "pt_CV": "포르투갈어 (까뽀베르데)", - "pt_GW": "포르투갈어 (기네비쏘)", + "pt_CV": "포르투갈어 (카보베르데)", + "pt_GW": "포르투갈어 (기니비사우)", "pt_MO": "포르투갈어 (마카오, 중국 특별행정구)", "pt_MZ": "포르투갈어 (모잠비크)", "pt_PT": "포르투갈어 (포르투갈)", @@ -500,6 +500,7 @@ "sv_FI": "스웨덴어 (핀란드)", "sv_SE": "스웨덴어 (스웨덴)", "sw": "스와힐리어", + "sw_CD": "스와힐리어 (콩고-킨샤사)", "sw_KE": "스와힐리어 (케냐)", "sw_TZ": "스와힐리어 (탄자니아)", "sw_UG": "스와힐리어 (우간다)", @@ -520,7 +521,7 @@ "to": "통가어", "to_TO": "통가어 (통가)", "tr": "터키어", - "tr_CY": "터키어 (사이프러스)", + "tr_CY": "터키어 (키프로스)", "tr_TR": "터키어 (터키)", "ug": "위구르어", "ug_Arab": "위구르어 (아랍 문자)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index a6b8f24e31135..9d193dec86aea 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -485,6 +485,7 @@ "sv_FI": "سویٖڈِش (فِنلینٛڑ)", "sv_SE": "سویٖڈِش (سُوِڈَن)", "sw": "سواہِلی", + "sw_CD": "سواہِلی (کونٛگو کِنشاسا)", "sw_KE": "سواہِلی (کِنٛیا)", "sw_TZ": "سواہِلی (تَنجانِیا)", "sw_UG": "سواہِلی (یوٗگانٛڑا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ky.json b/src/Symfony/Component/Intl/Resources/data/locales/ky.json index ead058fec2674..43b76fdcb5118 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -490,6 +490,7 @@ "sv_FI": "шведче (Финляндия)", "sv_SE": "шведче (Швеция)", "sw": "суахиличе", + "sw_CD": "суахиличе (Конго-Киншаса)", "sw_KE": "суахиличе (Кения)", "sw_TZ": "суахиличе (Танзания)", "sw_UG": "суахиличе (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index ea509c6cc03ff..ed68238368e3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -500,6 +500,7 @@ "sv_FI": "Schwedesch (Finnland)", "sv_SE": "Schwedesch (Schweden)", "sw": "Suaheli", + "sw_CD": "Suaheli (Kongo-Kinshasa)", "sw_KE": "Suaheli (Kenia)", "sw_TZ": "Suaheli (Tansania)", "sw_UG": "Suaheli (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index 3f79a612d4fe9..11bfafa9a0caa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -500,6 +500,7 @@ "sv_FI": "ສະວີດິຊ (ຟິນແລນ)", "sv_SE": "ສະວີດິຊ (ສະວີເດັນ)", "sw": "ຊວາຮີລິ", + "sw_CD": "ຊວາຮີລິ (ຄອງໂກ - ຄິນຊາຊາ)", "sw_KE": "ຊວາຮີລິ (ເຄນຢາ)", "sw_TZ": "ຊວາຮີລິ (ທານຊາເນຍ)", "sw_UG": "ຊວາຮີລິ (ອູການດາ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index 09de64ef101b7..c675d1120eb93 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -500,6 +500,7 @@ "sv_FI": "švedų (Suomija)", "sv_SE": "švedų (Švedija)", "sw": "suahilių", + "sw_CD": "suahilių (Kongas-Kinšasa)", "sw_KE": "suahilių (Kenija)", "sw_TZ": "suahilių (Tanzanija)", "sw_UG": "suahilių (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index b3fa419cfe5e0..5e66dd62b6b50 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -500,6 +500,7 @@ "sv_FI": "zviedru (Somija)", "sv_SE": "zviedru (Zviedrija)", "sw": "svahili", + "sw_CD": "svahili (Kongo-Kinšasa)", "sw_KE": "svahili (Kenija)", "sw_TZ": "svahili (Tanzānija)", "sw_UG": "svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index 12569db7e7dc2..a821253669d45 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/meta.json @@ -522,6 +522,7 @@ "sv_FI", "sv_SE", "sw", + "sw_CD", "sw_KE", "sw_TZ", "sw_UG", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 5ad99ccb09457..72c81e108caf6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -500,6 +500,7 @@ "sv_FI": "шведски (Финска)", "sv_SE": "шведски (Шведска)", "sw": "свахили", + "sw_CD": "свахили (Конго - Киншаса)", "sw_KE": "свахили (Кенија)", "sw_TZ": "свахили (Танзанија)", "sw_UG": "свахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index f3b81cdb65208..955e9dfb9365d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -500,6 +500,7 @@ "sv_FI": "സ്വീഡിഷ് (ഫിൻലാൻഡ്)", "sv_SE": "സ്വീഡിഷ് (സ്വീഡൻ)", "sw": "സ്വാഹിലി", + "sw_CD": "സ്വാഹിലി (കോംഗോ - കിൻഷാസ)", "sw_KE": "സ്വാഹിലി (കെനിയ)", "sw_TZ": "സ്വാഹിലി (ടാൻസാനിയ)", "sw_UG": "സ്വാഹിലി (ഉഗാണ്ട)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index d67cffe2fb850..3357fb0fcc9b3 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -490,6 +490,7 @@ "sv_FI": "швед (Финланд)", "sv_SE": "швед (Швед)", "sw": "свахили", + "sw_CD": "свахили (Конго-Киншаса)", "sw_KE": "свахили (Кени)", "sw_TZ": "свахили (Танзани)", "sw_UG": "свахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index e5e893e95cec1..fbb4483289a50 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -500,6 +500,7 @@ "sv_FI": "स्वीडिश (फिनलंड)", "sv_SE": "स्वीडिश (स्वीडन)", "sw": "स्वाहिली", + "sw_CD": "स्वाहिली (काँगो - किंशासा)", "sw_KE": "स्वाहिली (केनिया)", "sw_TZ": "स्वाहिली (टांझानिया)", "sw_UG": "स्वाहिली (युगांडा)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 363423bbbde06..3ea5bad1028a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -495,6 +495,7 @@ "sv_FI": "Sweden (Finland)", "sv_SE": "Sweden (Sweden)", "sw": "Swahili", + "sw_CD": "Swahili (Congo - Kinshasa)", "sw_KE": "Swahili (Kenya)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mt.json b/src/Symfony/Component/Intl/Resources/data/locales/mt.json index d4ad42845c2f7..cf5e2cc2ee591 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -475,6 +475,7 @@ "sv_FI": "Svediż (Finlandja)", "sv_SE": "Svediż (Żvezja)", "sw": "Swaħili", + "sw_CD": "Swaħili (Democratic Republic of the Congo)", "sw_KE": "Swaħili (Kenja)", "sw_TZ": "Swaħili (Tanżanija)", "sw_UG": "Swaħili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/my.json b/src/Symfony/Component/Intl/Resources/data/locales/my.json index e42900b5d30da..5f3197e582481 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -488,6 +488,7 @@ "sv_FI": "ဆွီဒင် (ဖင်လန်)", "sv_SE": "ဆွီဒင် (ဆွီဒင်)", "sw": "ဆြာဟီလီ", + "sw_CD": "ဆြာဟီလီ (ကွန်ဂို-ကင်ရှာစ)", "sw_KE": "ဆြာဟီလီ (ကင်ညာ)", "sw_TZ": "ဆြာဟီလီ (တန်ဇန်းနီးယား)", "sw_UG": "ဆြာဟီလီ (ယူဂန္ဓာ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index a11ca73562899..430fdf6172735 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -125,12 +125,12 @@ "en_IE": "engelsk (Irland)", "en_IM": "engelsk (Man)", "en_IN": "engelsk (India)", - "en_IO": "engelsk (Britiske territorier i Indiahavet)", + "en_IO": "engelsk (Det britiske territoriet i Indiahavet)", "en_JE": "engelsk (Jersey)", "en_JM": "engelsk (Jamaica)", "en_KE": "engelsk (Kenya)", "en_KI": "engelsk (Kiribati)", - "en_KN": "engelsk (St. Kitts og Nevis)", + "en_KN": "engelsk (Saint Kitts og Nevis)", "en_KY": "engelsk (Caymanøyene)", "en_LC": "engelsk (St. Lucia)", "en_LR": "engelsk (Liberia)", @@ -500,6 +500,7 @@ "sv_FI": "svensk (Finland)", "sv_SE": "svensk (Sverige)", "sw": "swahili", + "sw_CD": "swahili (Kongo-Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index 170cb5f047271..18ebc213f0b30 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -486,6 +486,7 @@ "sv_FI": "स्विडिश (फिन्ल्याण्ड)", "sv_SE": "स्विडिश (स्विडेन)", "sw": "स्वाहिली", + "sw_CD": "स्वाहिली (कोङ्गो-किन्शासा)", "sw_KE": "स्वाहिली (केन्या)", "sw_TZ": "स्वाहिली (तान्जानिया)", "sw_UG": "स्वाहिली (युगाण्डा)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index dacddf42d604e..56438e8403b52 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -41,15 +41,15 @@ "az_AZ": "Azerbeidzjaans (Azerbeidzjan)", "az_Cyrl": "Azerbeidzjaans (Cyrillisch)", "az_Cyrl_AZ": "Azerbeidzjaans (Cyrillisch, Azerbeidzjan)", - "az_Latn": "Azerbeidzjaans (Latijn)", - "az_Latn_AZ": "Azerbeidzjaans (Latijn, Azerbeidzjan)", + "az_Latn": "Azerbeidzjaans (Latijns)", + "az_Latn_AZ": "Azerbeidzjaans (Latijns, Azerbeidzjan)", "be": "Wit-Russisch", "be_BY": "Wit-Russisch (Wit-Rusland)", "bg": "Bulgaars", "bg_BG": "Bulgaars (Bulgarije)", "bm": "Bambara", - "bm_Latn": "Bambara (Latijn)", - "bm_Latn_ML": "Bambara (Latijn, Mali)", + "bm_Latn": "Bambara (Latijns)", + "bm_Latn_ML": "Bambara (Latijns, Mali)", "bn": "Bengaals", "bn_BD": "Bengaals (Bangladesh)", "bn_IN": "Bengaals (India)", @@ -62,8 +62,8 @@ "bs_BA": "Bosnisch (Bosnië en Herzegovina)", "bs_Cyrl": "Bosnisch (Cyrillisch)", "bs_Cyrl_BA": "Bosnisch (Cyrillisch, Bosnië en Herzegovina)", - "bs_Latn": "Bosnisch (Latijn)", - "bs_Latn_BA": "Bosnisch (Latijn, Bosnië en Herzegovina)", + "bs_Latn": "Bosnisch (Latijns)", + "bs_Latn_BA": "Bosnisch (Latijns, Bosnië en Herzegovina)", "ca": "Catalaans", "ca_AD": "Catalaans (Andorra)", "ca_ES": "Catalaans (Spanje)", @@ -287,10 +287,10 @@ "gv_IM": "Manx (Isle of Man)", "ha": "Hausa", "ha_GH": "Hausa (Ghana)", - "ha_Latn": "Hausa (Latijn)", - "ha_Latn_GH": "Hausa (Latijn, Ghana)", - "ha_Latn_NE": "Hausa (Latijn, Niger)", - "ha_Latn_NG": "Hausa (Latijn, Nigeria)", + "ha_Latn": "Hausa (Latijns)", + "ha_Latn_GH": "Hausa (Latijns, Ghana)", + "ha_Latn_NE": "Hausa (Latijns, Niger)", + "ha_Latn_NG": "Hausa (Latijns, Nigeria)", "ha_NE": "Hausa (Niger)", "ha_NG": "Hausa (Nigeria)", "he": "Hebreeuws", @@ -376,10 +376,10 @@ "mr_IN": "Marathi (India)", "ms": "Maleis", "ms_BN": "Maleis (Brunei)", - "ms_Latn": "Maleis (Latijn)", - "ms_Latn_BN": "Maleis (Latijn, Brunei)", - "ms_Latn_MY": "Maleis (Latijn, Maleisië)", - "ms_Latn_SG": "Maleis (Latijn, Singapore)", + "ms_Latn": "Maleis (Latijns)", + "ms_Latn_BN": "Maleis (Latijns, Brunei)", + "ms_Latn_MY": "Maleis (Latijns, Maleisië)", + "ms_Latn_SG": "Maleis (Latijns, Singapore)", "ms_MY": "Maleis (Maleisië)", "ms_SG": "Maleis (Singapore)", "mt": "Maltees", @@ -461,8 +461,8 @@ "se_SE": "Noord-Samisch (Zweden)", "sg": "Sango", "sg_CF": "Sango (Centraal-Afrikaanse Republiek)", - "sh": "Servokroatisch", - "sh_BA": "Servokroatisch (Bosnië en Herzegovina)", + "sh": "Servo-Kroatisch", + "sh_BA": "Servo-Kroatisch (Bosnië en Herzegovina)", "si": "Singalees", "si_LK": "Singalees (Sri Lanka)", "sk": "Slowaaks", @@ -487,11 +487,11 @@ "sr_Cyrl_ME": "Servisch (Cyrillisch, Montenegro)", "sr_Cyrl_RS": "Servisch (Cyrillisch, Servië)", "sr_Cyrl_XK": "Servisch (Cyrillisch, Kosovo)", - "sr_Latn": "Servisch (Latijn)", - "sr_Latn_BA": "Servisch (Latijn, Bosnië en Herzegovina)", - "sr_Latn_ME": "Servisch (Latijn, Montenegro)", - "sr_Latn_RS": "Servisch (Latijn, Servië)", - "sr_Latn_XK": "Servisch (Latijn, Kosovo)", + "sr_Latn": "Servisch (Latijns)", + "sr_Latn_BA": "Servisch (Latijns, Bosnië en Herzegovina)", + "sr_Latn_ME": "Servisch (Latijns, Montenegro)", + "sr_Latn_RS": "Servisch (Latijns, Servië)", + "sr_Latn_XK": "Servisch (Latijns, Kosovo)", "sr_ME": "Servisch (Montenegro)", "sr_RS": "Servisch (Servië)", "sr_XK": "Servisch (Kosovo)", @@ -500,6 +500,7 @@ "sv_FI": "Zweeds (Finland)", "sv_SE": "Zweeds (Zweden)", "sw": "Swahili", + "sw_CD": "Swahili (Congo-Kinshasa)", "sw_KE": "Swahili (Kenia)", "sw_TZ": "Swahili (Tanzania)", "sw_UG": "Swahili (Oeganda)", @@ -537,8 +538,8 @@ "uz_Arab_AF": "Oezbeeks (Arabisch, Afghanistan)", "uz_Cyrl": "Oezbeeks (Cyrillisch)", "uz_Cyrl_UZ": "Oezbeeks (Cyrillisch, Oezbekistan)", - "uz_Latn": "Oezbeeks (Latijn)", - "uz_Latn_UZ": "Oezbeeks (Latijn, Oezbekistan)", + "uz_Latn": "Oezbeeks (Latijns)", + "uz_Latn_UZ": "Oezbeeks (Latijns, Oezbekistan)", "uz_UZ": "Oezbeeks (Oezbekistan)", "vi": "Vietnamees", "vi_VN": "Vietnamees (Vietnam)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl_BE.json b/src/Symfony/Component/Intl/Resources/data/locales/nl_BE.json deleted file mode 100644 index 4a5f2cab906e9..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl_BE.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Names": { - "en_IM": "Engels (Het Eiland Man)", - "gv_IM": "Manx (Het Eiland Man)", - "sh": "Servo-Kroatisch", - "sh_BA": "Servo-Kroatisch (Bosnië en Herzegovina)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nn.json b/src/Symfony/Component/Intl/Resources/data/locales/nn.json index f4f04cb890ac7..d69c85178be55 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -490,6 +490,7 @@ "sv_FI": "svensk (Finland)", "sv_SE": "svensk (Sverige)", "sw": "swahili", + "sw_CD": "swahili (Kongo-Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index 42caa8ff9a33c..c736d3007e521 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -487,6 +487,7 @@ "sv_FI": "ସ୍ୱେଡିସ୍ (ଫିନଲ୍ୟାଣ୍ଡ)", "sv_SE": "ସ୍ୱେଡିସ୍ (ସ୍ୱେଡେନ୍)", "sw": "ସ୍ୱାହିଲ୍", + "sw_CD": "ସ୍ୱାହିଲ୍ (କଙ୍ଗୋ-କିନସାସା)", "sw_KE": "ସ୍ୱାହିଲ୍ (କେନିୟା)", "sw_TZ": "ସ୍ୱାହିଲ୍ (ତାଞ୍ଜାନିଆ)", "sw_UG": "ସ୍ୱାହିଲ୍ (ଉଗାଣ୍ଡା)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 97385199ab564..a252062af59ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -488,6 +488,7 @@ "sv_FI": "ਸਵੀਡਿਸ਼ (ਫਿਨਲੈਂਡ)", "sv_SE": "ਸਵੀਡਿਸ਼ (ਸਵੀਡਨ)", "sw": "ਸਵਾਹਿਲੀ", + "sw_CD": "ਸਵਾਹਿਲੀ (ਕਾਂਗੋ - ਕਿੰਸ਼ਾਸਾ)", "sw_KE": "ਸਵਾਹਿਲੀ (ਕੀਨੀਆ)", "sw_TZ": "ਸਵਾਹਿਲੀ (ਤਨਜ਼ਾਨੀਆ)", "sw_UG": "ਸਵਾਹਿਲੀ (ਯੂਗਾਂਡਾ)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index 882ad05fb10c4..47773e7b1f054 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -115,7 +115,7 @@ "en_FM": "angielski (Mikronezja)", "en_GB": "angielski (Wielka Brytania)", "en_GD": "angielski (Grenada)", - "en_GG": "angielski (Wyspa Guernsey)", + "en_GG": "angielski (Guernsey)", "en_GH": "angielski (Ghana)", "en_GI": "angielski (Gibraltar)", "en_GM": "angielski (Gambia)", @@ -126,7 +126,7 @@ "en_IM": "angielski (Wyspa Man)", "en_IN": "angielski (Indie)", "en_IO": "angielski (Brytyjskie Terytorium Oceanu Indyjskiego)", - "en_JE": "angielski (Wyspa Jersey)", + "en_JE": "angielski (Jersey)", "en_JM": "angielski (Jamajka)", "en_KE": "angielski (Kenia)", "en_KI": "angielski (Kiribati)", @@ -500,6 +500,7 @@ "sv_FI": "szwedzki (Finlandia)", "sv_SE": "szwedzki (Szwecja)", "sw": "suahili", + "sw_CD": "suahili (Demokratyczna Republika Konga)", "sw_KE": "suahili (Kenia)", "sw_TZ": "suahili (Tanzania)", "sw_UG": "suahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 0d2686f5ed3e1..7f32a12fc1a97 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -131,7 +131,7 @@ "en_KE": "inglês (Quênia)", "en_KI": "inglês (Quiribati)", "en_KN": "inglês (São Cristóvão e Nevis)", - "en_KY": "inglês (Ilhas Caiman)", + "en_KY": "inglês (Ilhas Cayman)", "en_LC": "inglês (Santa Lúcia)", "en_LR": "inglês (Libéria)", "en_LS": "inglês (Lesoto)", @@ -173,7 +173,7 @@ "en_TV": "inglês (Tuvalu)", "en_TZ": "inglês (Tanzânia)", "en_UG": "inglês (Uganda)", - "en_UM": "inglês (Ilhas Distantes dos EUA)", + "en_UM": "inglês (Ilhas Menores Distantes dos EUA)", "en_US": "inglês (Estados Unidos)", "en_VC": "inglês (São Vicente e Granadinas)", "en_VG": "inglês (Ilhas Virgens Britânicas)", @@ -429,7 +429,7 @@ "pt_AO": "português (Angola)", "pt_BR": "português (Brasil)", "pt_CV": "português (Cabo Verde)", - "pt_GW": "português (Guiné Bissau)", + "pt_GW": "português (Guiné-Bissau)", "pt_MO": "português (Macau, RAE da China)", "pt_MZ": "português (Moçambique)", "pt_PT": "português (Portugal)", @@ -453,8 +453,8 @@ "ru_MD": "russo (Moldávia)", "ru_RU": "russo (Rússia)", "ru_UA": "russo (Ucrânia)", - "rw": "ruanda", - "rw_RW": "ruanda (Ruanda)", + "rw": "kinyarwanda", + "rw_RW": "kinyarwanda (Ruanda)", "se": "sami do norte", "se_FI": "sami do norte (Finlândia)", "se_NO": "sami do norte (Noruega)", @@ -500,6 +500,7 @@ "sv_FI": "sueco (Finlândia)", "sv_SE": "sueco (Suécia)", "sw": "suaíli", + "sw_CD": "suaíli (Congo - Kinshasa)", "sw_KE": "suaíli (Quênia)", "sw_TZ": "suaíli (Tanzânia)", "sw_UG": "suaíli (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json index 81cfa52144c10..3256a8583e3a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt_PT.json @@ -4,9 +4,7 @@ "af_NA": "africânder (Namíbia)", "af_ZA": "africânder (África do Sul)", "ar_BH": "árabe (Barém)", - "ar_DJ": "árabe (Jibuti)", - "ar_EG": "árabe (Egipto)", - "ar_PS": "árabe (Território Palestiniano)", + "ar_PS": "árabe (Territórios palestinianos)", "ar_YE": "árabe (Iémen)", "cs": "checo", "cs_CZ": "checo (República Checa)", @@ -15,10 +13,7 @@ "ee_GH": "ewe (Gana)", "ee_TG": "ewe (Togo)", "en_AI": "inglês (Anguila)", - "en_BW": "inglês (Botswana)", - "en_CC": "inglês (Ilhas Cocos)", "en_CM": "inglês (Camarões)", - "en_CX": "inglês (Ilha do Natal)", "en_DM": "inglês (Domínica)", "en_FK": "inglês (Ilhas Falkland)", "en_GU": "inglês (Guame)", @@ -30,7 +25,6 @@ "en_PN": "inglês (Pitcairn)", "en_SC": "inglês (Seicheles)", "en_SG": "inglês (Singapura)", - "en_TC": "inglês (Ilhas Turcas e Caicos)", "en_TK": "inglês (Toquelau)", "en_TT": "inglês (Trindade e Tobago)", "en_ZW": "inglês (Zimbabué)", @@ -43,7 +37,6 @@ "fr_CD": "francês (Congo-Kinshasa)", "fr_CG": "francês (Congo-Brazzaville)", "fr_CM": "francês (Camarões)", - "fr_DJ": "francês (Jibuti)", "fr_MC": "francês (Mónaco)", "fr_MG": "francês (Madagáscar)", "fr_MU": "francês (Maurícia)", @@ -51,7 +44,7 @@ "fr_SC": "francês (Seicheles)", "fr_YT": "francês (Maiote)", "fy": "frísico ocidental", - "fy_NL": "frísico ocidental (Países Baixos)", + "fy_NL": "frísico ocidental (Holanda)", "ha": "haúça", "ha_GH": "haúça (Gana)", "ha_Latn": "haúça (latim)", @@ -69,8 +62,6 @@ "it_SM": "italiano (São Marino)", "ki_KE": "quicuio (Quénia)", "kl_GL": "groenlandês (Gronelândia)", - "km": "cmer", - "km_KH": "cmer (Camboja)", "kn": "canarim", "kn_IN": "canarim (Índia)", "lg": "ganda", @@ -89,7 +80,6 @@ "nb_SJ": "norueguês bokmål (Svalbard e Jan Mayen)", "nd_ZW": "ndebele do norte (Zimbabué)", "nl_CW": "holandês (Curaçau)", - "nl_NL": "holandês (Países Baixos)", "nn": "norueguês nynorsk", "nn_NO": "norueguês nynorsk (Noruega)", "om_KE": "oromo (Quénia)", @@ -100,30 +90,19 @@ "pl_PL": "polaco (Polónia)", "ps": "pastó", "ps_AF": "pastó (Afeganistão)", - "pt_GW": "português (Guiné-Bissau)", "ro_RO": "romeno (Roménia)", - "rw": "kinyarwanda", - "rw_RW": "kinyarwanda (Ruanda)", "sl_SI": "esloveno (Eslovénia)", "sn_ZW": "shona (Zimbabué)", - "so_DJ": "somali (Jibuti)", "so_KE": "somali (Quénia)", "sq_MK": "albanês (Macedónia)", + "sw_CD": "suaíli (Congo-Kinshasa)", "sw_KE": "suaíli (Quénia)", "ta_SG": "tâmil (Singapura)", "to": "tonga", "to_TO": "tonga (Tonga)", "vi_VN": "vietnamita (Vietname)", "yo_BJ": "ioruba (Benim)", - "zh_Hans": "chinês (han simplificado)", - "zh_Hans_CN": "chinês (han simplificado, China)", - "zh_Hans_HK": "chinês (han simplificado, Hong Kong, RAE da China)", - "zh_Hans_MO": "chinês (han simplificado, Macau, RAE da China)", - "zh_Hans_SG": "chinês (han simplificado, Singapura)", - "zh_Hant": "chinês (han tradicional)", - "zh_Hant_HK": "chinês (han tradicional, Hong Kong, RAE da China)", - "zh_Hant_MO": "chinês (han tradicional, Macau, RAE da China)", - "zh_Hant_TW": "chinês (han tradicional, Taiwan)", + "zh_Hans_SG": "chinês (simplificado, Singapura)", "zh_SG": "chinês (Singapura)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/qu.json b/src/Symfony/Component/Intl/Resources/data/locales/qu.json index fd0a6a1e80dd0..70e2e510e9c9d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -340,6 +340,7 @@ "sv_FI": "Sueco Simi (Finlandia)", "sv_SE": "Sueco Simi (Suecia)", "sw": "Suajili Simi", + "sw_CD": "Suajili Simi (Congo (RDC))", "sw_KE": "Suajili Simi (Kenia)", "sw_TZ": "Suajili Simi (Tanzania)", "sw_UG": "Suajili Simi (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index af9ca9e2debf3..88341366e64c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -487,6 +487,7 @@ "sv_FI": "svedais (Finlanda)", "sv_SE": "svedais (Svezia)", "sw": "suahili", + "sw_CD": "suahili (Republica Democratica dal Congo)", "sw_KE": "suahili (Kenia)", "sw_TZ": "suahili (Tansania)", "sw_UG": "suahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index a679b33be9bc0..165047048c434 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -500,6 +500,7 @@ "sv_FI": "suedeză (Finlanda)", "sv_SE": "suedeză (Suedia)", "sw": "swahili", + "sw_CD": "swahili (Congo - Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 3058c36aac4ba..baaf39ae58511 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -153,7 +153,7 @@ "en_PG": "английский (Папуа – Новая Гвинея)", "en_PH": "английский (Филиппины)", "en_PK": "английский (Пакистан)", - "en_PN": "английский (Питкэрн)", + "en_PN": "английский (Питкерн)", "en_PR": "английский (Пуэрто-Рико)", "en_PW": "английский (Палау)", "en_RW": "английский (Руанда)", @@ -500,6 +500,7 @@ "sv_FI": "шведский (Финляндия)", "sv_SE": "шведский (Швеция)", "sw": "суахили", + "sw_CD": "суахили (Конго - Киншаса)", "sw_KE": "суахили (Кения)", "sw_TZ": "суахили (Танзания)", "sw_UG": "суахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index 8fcb85440805f..83368b80e5148 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -486,6 +486,7 @@ "sv_FI": "ස්වීඩන් (ෆින්ලන්තය)", "sv_SE": "ස්වීඩන් (ස්වීඩනය)", "sw": "ස්වාහිලි", + "sw_CD": "ස්වාහිලි (කොංගො - කින්ශාසා)", "sw_KE": "ස්වාහිලි (කෙන්යාව)", "sw_TZ": "ස්වාහිලි (ටැන්සානියාව)", "sw_UG": "ස්වාහිලි (උගන්ඩාව)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index 52afc7a37724a..de287fe1ed266 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -500,6 +500,7 @@ "sv_FI": "švédčina (Fínsko)", "sv_SE": "švédčina (Švédsko)", "sw": "svahilčina", + "sw_CD": "svahilčina (Kongo - Kinshasa)", "sw_KE": "svahilčina (Keňa)", "sw_TZ": "svahilčina (Tanzánia)", "sw_UG": "svahilčina (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sl.json b/src/Symfony/Component/Intl/Resources/data/locales/sl.json index ed653f52eb8eb..2954d97f52c7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -72,7 +72,7 @@ "cs": "češčina", "cs_CZ": "češčina (Češka)", "cy": "valižanščina", - "cy_GB": "valižanščina (Velika Britanija)", + "cy_GB": "valižanščina (Združeno kraljestvo)", "da": "danščina", "da_DK": "danščina (Danska)", "da_GL": "danščina (Grenlandija)", @@ -113,7 +113,7 @@ "en_FJ": "angleščina (Fidži)", "en_FK": "angleščina (Falklandski otoki)", "en_FM": "angleščina (Mikronezija)", - "en_GB": "angleščina (Velika Britanija)", + "en_GB": "angleščina (Združeno kraljestvo)", "en_GD": "angleščina (Grenada)", "en_GG": "angleščina (Guernsey)", "en_GH": "angleščina (Gana)", @@ -278,7 +278,7 @@ "ga": "irščina", "ga_IE": "irščina (Irska)", "gd": "škotska gelščina", - "gd_GB": "škotska gelščina (Velika Britanija)", + "gd_GB": "škotska gelščina (Združeno kraljestvo)", "gl": "galicijščina", "gl_ES": "galicijščina (Španija)", "gu": "gudžaratščina", @@ -340,7 +340,7 @@ "ks_Arab_IN": "kašmirščina (arabski, Indija)", "ks_IN": "kašmirščina (Indija)", "kw": "kornijščina", - "kw_GB": "kornijščina (Velika Britanija)", + "kw_GB": "kornijščina (Združeno kraljestvo)", "ky": "kirgiščina", "ky_Cyrl": "kirgiščina (cirilica)", "ky_Cyrl_KG": "kirgiščina (cirilica, Kirgizistan)", @@ -500,6 +500,7 @@ "sv_FI": "švedščina (Finska)", "sv_SE": "švedščina (Švedska)", "sw": "svahili", + "sw_CD": "svahili (Demokratična republika Kongo)", "sw_KE": "svahili (Kenija)", "sw_TZ": "svahili (Tanzanija)", "sw_UG": "svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index 88b5a2b47b066..467365a38d202 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -488,6 +488,7 @@ "sv_FI": "suedisht (Finlandë)", "sv_SE": "suedisht (Suedi)", "sw": "suahilisht", + "sw_CD": "suahilisht (Kongo-Kinshasa)", "sw_KE": "suahilisht (Kenia)", "sw_TZ": "suahilisht (Tanzani)", "sw_UG": "suahilisht (Ugandë)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr.json b/src/Symfony/Component/Intl/Resources/data/locales/sr.json index fd70020ac07f2..45fb2bbad3ce8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -500,6 +500,7 @@ "sv_FI": "шведски (Финска)", "sv_SE": "шведски (Шведска)", "sw": "свахили", + "sw_CD": "свахили (Конго - Киншаса)", "sw_KE": "свахили (Кенија)", "sw_TZ": "свахили (Танзанија)", "sw_UG": "свахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json index cd71579c1ce24..a41db6e196400 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -500,6 +500,7 @@ "sv_FI": "švedski (Finska)", "sv_SE": "švedski (Švedska)", "sw": "svahili", + "sw_CD": "svahili (Kongo - Kinšasa)", "sw_KE": "svahili (Kenija)", "sw_TZ": "svahili (Tanzanija)", "sw_UG": "svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index f8044125a98a9..5c388f8ba8226 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -277,8 +277,8 @@ "fy_NL": "västfrisiska (Nederländerna)", "ga": "iriska", "ga_IE": "iriska (Irland)", - "gd": "höglandsskotska", - "gd_GB": "höglandsskotska (Storbritannien)", + "gd": "skotsk gäliska", + "gd_GB": "skotsk gäliska (Storbritannien)", "gl": "galiciska", "gl_ES": "galiciska (Spanien)", "gu": "gujarati", @@ -500,6 +500,7 @@ "sv_FI": "svenska (Finland)", "sv_SE": "svenska (Sverige)", "sw": "swahili", + "sw_CD": "swahili (Kongo-Kinshasa)", "sw_KE": "swahili (Kenya)", "sw_TZ": "swahili (Tanzania)", "sw_UG": "swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json index e67703bbea4a4..892424c449949 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv_FI.json @@ -1,63 +1,8 @@ { "Names": { - "ar_PS": "arabiska (Palestinska området)", - "ar_SD": "arabiska (Nordsudan)", - "cy_GB": "walesiska (Förenade kungariket)", - "en_GB": "engelska (Förenade kungariket)", - "en_KN": "engelska (Saint Kitts och Nevis)", - "en_LC": "engelska (Saint Lucia)", - "en_PN": "engelska (Pitcairn)", - "en_SD": "engelska (Nordsudan)", - "en_SH": "engelska (Saint Helena)", - "en_SX": "engelska (Sint Martin)", - "en_TK": "engelska (Tokelauöarna)", - "en_US": "engelska (Förenta staterna)", - "en_VC": "engelska (Saint Vincent och Grenadinerna)", - "es_US": "spanska (Förenta staterna)", - "fr_BL": "franska (Saint-Barthélemy)", - "fr_CD": "franska (Demokratiska republiken Kongo)", - "fr_CG": "franska (Kongo)", - "fr_MF": "franska (S:t Martin (franska delen))", - "fr_PM": "franska (Saint Pierre och Miquelon)", - "fr_WF": "franska (Wallis- och Futuna)", - "gd_GB": "höglandsskotska (Förenade kungariket)", - "km": "khmer", - "km_KH": "khmer (Kambodja)", - "ks": "kashmiri", - "ks_Arab": "kashmiri (arabiska)", - "ks_Arab_IN": "kashmiri (arabiska, Indien)", - "ks_IN": "kashmiri (Indien)", - "kw_GB": "korniska (Förenade kungariket)", "ky": "kirgiziska", "ky_Cyrl": "kirgiziska (kyrilliska)", "ky_Cyrl_KG": "kirgiziska (kyrilliska, Kirgizistan)", - "ky_KG": "kirgiziska (Kirgizistan)", - "ln_CD": "lingala (Demokratiska republiken Kongo)", - "ln_CG": "lingala (Kongo)", - "lo": "lao", - "lo_LA": "lao (Laos)", - "lu_CD": "luba-katanga (Demokratiska republiken Kongo)", - "my_MM": "burmesiska (Burma)", - "nb": "bokmål", - "nb_NO": "bokmål (Norge)", - "nb_SJ": "bokmål (Svalbard och Jan Mayen)", - "nl_BQ": "nederländska (Bonaire, S:t Eustatius och Saba)", - "nl_SX": "nederländska (Sint Martin)", - "pa": "panjabi", - "pa_Arab": "panjabi (arabiska)", - "pa_Arab_PK": "panjabi (arabiska, Pakistan)", - "pa_Guru": "panjabi (gurmukhi)", - "pa_Guru_IN": "panjabi (gurmukhi, Indien)", - "pa_IN": "panjabi (Indien)", - "pa_PK": "panjabi (Pakistan)", - "ps": "pashto", - "ps_AF": "pashto (Afghanistan)", - "te": "telugu", - "te_IN": "telugu (Indien)", - "th": "thai", - "th_TH": "thai (Thailand)", - "ti": "tigrinska", - "ti_ER": "tigrinska (Eritrea)", - "ti_ET": "tigrinska (Etiopien)" + "ky_KG": "kirgiziska (Kirgizistan)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw.json b/src/Symfony/Component/Intl/Resources/data/locales/sw.json index 0b15406dac052..a8b0905911ac9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -491,6 +491,7 @@ "sv_FI": "Kiswidi (Ufini)", "sv_SE": "Kiswidi (Uswidi)", "sw": "Kiswahili", + "sw_CD": "Kiswahili (Jamhuri ya Kidemokrasia ya Kongo)", "sw_KE": "Kiswahili (Kenya)", "sw_TZ": "Kiswahili (Tanzania)", "sw_UG": "Kiswahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json new file mode 100644 index 0000000000000..dce00b507ef5d --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw_CD.json @@ -0,0 +1,124 @@ +{ + "Names": { + "ak": "Kiakan", + "ak_GH": "Kiakan (Ghana)", + "bn": "Kibangla", + "bn_BD": "Kibangla (Bangladeshi)", + "bn_IN": "Kibangla (India)", + "cs": "Kichecki", + "cs_CZ": "Kichecki (Jamhuri ya Cheki)", + "de_LI": "Kijerumani (Lishenteni)", + "el_CY": "Kigiriki (Kuprosi)", + "en": "Kingereza", + "en_AG": "Kingereza (Antigua na Barbuda)", + "en_AI": "Kingereza (Anguilla)", + "en_AS": "Kingereza (Samoa ya Marekani)", + "en_AU": "Kingereza (Australia)", + "en_BB": "Kingereza (Babadosi)", + "en_BE": "Kingereza (Ubelgiji)", + "en_BM": "Kingereza (Bermuda)", + "en_BS": "Kingereza (Bahama)", + "en_BW": "Kingereza (Botswana)", + "en_BZ": "Kingereza (Belize)", + "en_CA": "Kingereza (Kanada)", + "en_CC": "Kingereza (Visiwa vya Cocos (Keeling))", + "en_CK": "Kingereza (Visiwa vya Cook)", + "en_CM": "Kingereza (Kameruni)", + "en_CX": "Kingereza (Kisiwa cha Krismasi)", + "en_DG": "Kingereza (Diego Garcia)", + "en_DM": "Kingereza (Dominika)", + "en_ER": "Kingereza (Eritrea)", + "en_FJ": "Kingereza (Fiji)", + "en_FK": "Kingereza (Visiwa vya Falkland)", + "en_FM": "Kingereza (Mikronesia)", + "en_GB": "Kingereza (Uingereza)", + "en_GD": "Kingereza (Grenada)", + "en_GG": "Kingereza (Guernsey)", + "en_GH": "Kingereza (Ghana)", + "en_GI": "Kingereza (Jibralta)", + "en_GM": "Kingereza (Gambia)", + "en_GU": "Kingereza (Gwam)", + "en_GY": "Kingereza (Guyana)", + "en_HK": "Kingereza (Hong Kong SAR China)", + "en_IE": "Kingereza (Ayalandi)", + "en_IM": "Kingereza (Isle of Man)", + "en_IN": "Kingereza (India)", + "en_IO": "Kingereza (Eneo la Uingereza katika Bahari Hindi)", + "en_JE": "Kingereza (Jersey)", + "en_JM": "Kingereza (Jamaika)", + "en_KE": "Kingereza (Kenya)", + "en_KI": "Kingereza (Kiribati)", + "en_KN": "Kingereza (Santakitzi na Nevis)", + "en_KY": "Kingereza (Visiwa vya Kayman)", + "en_LC": "Kingereza (Santalusia)", + "en_LR": "Kingereza (Liberia)", + "en_LS": "Kingereza (Lesoto)", + "en_MG": "Kingereza (Bukini)", + "en_MH": "Kingereza (Visiwa vya Marshal)", + "en_MO": "Kingereza (Macau SAR China)", + "en_MP": "Kingereza (Visiwa vya Mariana vya Kaskazini)", + "en_MS": "Kingereza (Montserrati)", + "en_MT": "Kingereza (Malta)", + "en_MU": "Kingereza (Morisi)", + "en_MW": "Kingereza (Malawi)", + "en_MY": "Kingereza (Malesia)", + "en_NA": "Kingereza (Namibia)", + "en_NF": "Kingereza (Kisiwa cha Norfok)", + "en_NG": "Kingereza (Nijeria)", + "en_NR": "Kingereza (Nauru)", + "en_NU": "Kingereza (Niue)", + "en_NZ": "Kingereza (Nyuzilandi)", + "en_PG": "Kingereza (Papua)", + "en_PH": "Kingereza (Filipino)", + "en_PK": "Kingereza (Pakistani)", + "en_PN": "Kingereza (Pitkairni)", + "en_PR": "Kingereza (Pwetoriko)", + "en_PW": "Kingereza (Palau)", + "en_RW": "Kingereza (Rwanda)", + "en_SB": "Kingereza (Visiwa vya Solomon)", + "en_SC": "Kingereza (Shelisheli)", + "en_SD": "Kingereza (Sudani)", + "en_SG": "Kingereza (Singapoo)", + "en_SH": "Kingereza (Santahelena)", + "en_SL": "Kingereza (Siera Leoni)", + "en_SS": "Kingereza (Sudani Kusini)", + "en_SX": "Kingereza (Santamatini)", + "en_SZ": "Kingereza (Uswazi)", + "en_TC": "Kingereza (Visiwa vya Turki na Kaiko)", + "en_TK": "Kingereza (Tokelau)", + "en_TO": "Kingereza (Tonga)", + "en_TT": "Kingereza (Trinidad na Tobago)", + "en_TV": "Kingereza (Tuvalu)", + "en_TZ": "Kingereza (Tanzania)", + "en_UG": "Kingereza (Uganda)", + "en_UM": "Kingereza (Visiwa Vidogo vya Nje vya Marekani)", + "en_US": "Kingereza (Marekani)", + "en_VC": "Kingereza (Santavisenti na Grenadini)", + "en_VG": "Kingereza (Visiwa vya Virgin vya Uingereza)", + "en_VI": "Kingereza (Visiwa vya Virgin vya Marekani)", + "en_VU": "Kingereza (Vanuatu)", + "en_WS": "Kingereza (Samoa)", + "en_ZA": "Kingereza (Afrika Kusini)", + "en_ZM": "Kingereza (Zambia)", + "en_ZW": "Kingereza (Zimbabwe)", + "fa_AF": "Kiajemi (Afuganistani)", + "fa_IR": "Kiajemi (Uajemi)", + "fr_BJ": "Kifaransa (Benini)", + "fr_CG": "Kifaransa (Kongo)", + "fr_CI": "Kifaransa (Kodivaa)", + "fr_MG": "Kifaransa (Bukini)", + "ha_Latn_NG": "Kihausa (Kilatini, Nijeria)", + "ha_NG": "Kihausa (Nijeria)", + "ig_NG": "Kiigbo (Nijeria)", + "ln_CG": "Kilingala (Kongo)", + "mg_MG": "Malagasi (Bukini)", + "my_MM": "Kiburma (Myama)", + "ps_AF": "Kipashto (Afuganistani)", + "pt_TL": "Kireno (Timori ya Mashariki)", + "tr_CY": "Kituruki (Kuprosi)", + "uz_AF": "Kiuzbeki (Afuganistani)", + "uz_Arab_AF": "Kiuzbeki (Kiarabu, Afuganistani)", + "yo_BJ": "Kiyoruba (Benini)", + "yo_NG": "Kiyoruba (Nijeria)" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ta.json b/src/Symfony/Component/Intl/Resources/data/locales/ta.json index 82394e2704943..6f9588311cc63 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -500,6 +500,7 @@ "sv_FI": "ஸ்வீடிஷ் (பின்லாந்து)", "sv_SE": "ஸ்வீடிஷ் (ஸ்வீடன்)", "sw": "சுவாஹிலி", + "sw_CD": "சுவாஹிலி (காங்கோ - கின்ஷாசா)", "sw_KE": "சுவாஹிலி (கென்யா)", "sw_TZ": "சுவாஹிலி (தான்சானியா)", "sw_UG": "சுவாஹிலி (உகாண்டா)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index a6de0ebd5bf23..fa03426f48d2b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -500,6 +500,7 @@ "sv_FI": "స్వీడిష్ (ఫిన్లాండ్)", "sv_SE": "స్వీడిష్ (స్వీడన్)", "sw": "స్వాహిలి", + "sw_CD": "స్వాహిలి (కాంగో- కిన్షాసా)", "sw_KE": "స్వాహిలి (కెన్యా)", "sw_TZ": "స్వాహిలి (టాంజానియా)", "sw_UG": "స్వాహిలి (ఉగాండా)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index 08b6cd2e12e42..6ac20060dc675 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -500,6 +500,7 @@ "sv_FI": "สวีเดน (ฟินแลนด์)", "sv_SE": "สวีเดน (สวีเดน)", "sw": "สวาฮีลี", + "sw_CD": "สวาฮีลี (คองโก-กินชาซา)", "sw_KE": "สวาฮีลี (เคนยา)", "sw_TZ": "สวาฮีลี (แทนซาเนีย)", "sw_UG": "สวาฮีลี (ยูกันดา)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/to.json b/src/Symfony/Component/Intl/Resources/data/locales/to.json index 4e06f5f655011..f9386442c9f52 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -500,6 +500,7 @@ "sv_FI": "lea fakasuēteni (Finilani)", "sv_SE": "lea fakasuēteni (Suēteni)", "sw": "lea fakasuahili", + "sw_CD": "lea fakasuahili (Kongo - Kinisasa)", "sw_KE": "lea fakasuahili (Keniā)", "sw_TZ": "lea fakasuahili (Tenisānia)", "sw_UG": "lea fakasuahili (ʻIukanitā)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tr.json b/src/Symfony/Component/Intl/Resources/data/locales/tr.json index c8b6afc8ffe13..9ffaf7dcd4e84 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -500,6 +500,7 @@ "sv_FI": "İsveççe (Finlandiya)", "sv_SE": "İsveççe (İsveç)", "sw": "Svahili", + "sw_CD": "Svahili (Kongo - Kinşasa)", "sw_KE": "Svahili (Kenya)", "sw_TZ": "Svahili (Tanzanya)", "sw_UG": "Svahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 4dfae21729989..4eef62aa22f9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -500,6 +500,7 @@ "sv_FI": "شۋېدچە (فىنلاندىيە)", "sv_SE": "شۋېدچە (شىۋېتسىيە)", "sw": "سىۋالىچە", + "sw_CD": "سىۋالىچە (كونگو - كىنشاسا)", "sw_KE": "سىۋالىچە (كېنىيە)", "sw_TZ": "سىۋالىچە (تانزانىيە)", "sw_UG": "سىۋالىچە (ئۇگاندا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index ee5b8ce2adb1b..b85bd44dc65fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -500,6 +500,7 @@ "sv_FI": "шведська (Фінляндія)", "sv_SE": "шведська (Швеція)", "sw": "суахілі", + "sw_CD": "суахілі (Конго – Кіншаса)", "sw_KE": "суахілі (Кенія)", "sw_TZ": "суахілі (Танзанія)", "sw_UG": "суахілі (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index cca2d9e6b0211..4865496ea3063 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -64,11 +64,11 @@ "bs_Cyrl_BA": "بوسنی (سیریلک, بوسنیا اور ہرزیگووینا)", "bs_Latn": "بوسنی (لاطینی)", "bs_Latn_BA": "بوسنی (لاطینی, بوسنیا اور ہرزیگووینا)", - "ca": "کاٹالانین", - "ca_AD": "کاٹالانین (انڈورا)", - "ca_ES": "کاٹالانین (ہسپانیہ)", - "ca_FR": "کاٹالانین (فرانس)", - "ca_IT": "کاٹالانین (اٹلی)", + "ca": "کیٹالان", + "ca_AD": "کیٹالان (انڈورا)", + "ca_ES": "کیٹالان (ہسپانیہ)", + "ca_FR": "کیٹالان (فرانس)", + "ca_IT": "کیٹالان (اٹلی)", "cs": "چیک", "cs_CZ": "چیک (چیک جمہوریہ)", "cy": "ویلش", @@ -96,7 +96,7 @@ "en_AI": "انگریزی (انگوئیلا)", "en_AS": "انگریزی (امریکی ساموآ)", "en_AU": "انگریزی (آسٹریلیا)", - "en_BB": "انگریزی (باربادوس)", + "en_BB": "انگریزی (بارباڈوس)", "en_BE": "انگریزی (بیلجیم)", "en_BM": "انگریزی (برمودا)", "en_BS": "انگریزی (بہاماس)", @@ -114,7 +114,7 @@ "en_FK": "انگریزی (فاکلینڈ جزائر)", "en_FM": "انگریزی (مائکرونیشیا)", "en_GB": "انگریزی (سلطنت متحدہ)", - "en_GD": "انگریزی (غرناطہ)", + "en_GD": "انگریزی (گریناڈا)", "en_GG": "انگریزی (گوئرنسی)", "en_GH": "انگریزی (گھانا)", "en_GI": "انگریزی (جبل الطارق)", @@ -145,7 +145,7 @@ "en_MW": "انگریزی (ملاوی)", "en_MY": "انگریزی (ملیشیا)", "en_NA": "انگریزی (نامیبیا)", - "en_NF": "انگریزی (نار فاک آئلینڈ)", + "en_NF": "انگریزی (نارفوک آئلینڈ)", "en_NG": "انگریزی (نائجیریا)", "en_NR": "انگریزی (نؤرو)", "en_NU": "انگریزی (نیئو)", @@ -220,7 +220,7 @@ "fi": "فینیش", "fi_FI": "فینیش (فن لینڈ)", "fo": "فیروئیز", - "fo_FO": "فیروئیز (فروئی آئلینڈز)", + "fo_FO": "فیروئیز (فیرو آئلینڈز)", "fr": "فرانسیسی", "fr_BE": "فرانسیسی (بیلجیم)", "fr_BF": "فرانسیسی (برکینا فاسو)", @@ -315,8 +315,8 @@ "ja_JP": "جاپانی (جاپان)", "ka": "جارجی", "ka_GE": "جارجی (جارجیا)", - "ki": "کیکو", - "ki_KE": "کیکو (کینیا)", + "ki": "کیکویو", + "ki_KE": "کیکویو (کینیا)", "kk": "قزاخ", "kk_Cyrl": "قزاخ (سیریلک)", "kk_Cyrl_KZ": "قزاخ (سیریلک, قزاخستان)", @@ -340,8 +340,8 @@ "ky_Cyrl": "کرغیزی (سیریلک)", "ky_Cyrl_KG": "کرغیزی (سیریلک, کرغزستان)", "ky_KG": "کرغیزی (کرغزستان)", - "lb": "لگژمبرگ کا باشندہ", - "lb_LU": "لگژمبرگ کا باشندہ (لگژمبرگ)", + "lb": "لگژمبرگش", + "lb_LU": "لگژمبرگش (لگژمبرگ)", "lg": "گینڈا", "lg_UG": "گینڈا (یوگانڈا)", "ln": "لِنگَلا", @@ -408,7 +408,7 @@ "or_IN": "اورِیا (بھارت)", "os": "اوسیٹک", "os_GE": "اوسیٹک (جارجیا)", - "os_RU": "اوسیٹک (روسی)", + "os_RU": "اوسیٹک (روس)", "pa": "پنجابی", "pa_Arab": "پنجابی (عربی)", "pa_Arab_PK": "پنجابی (عربی, پاکستان)", @@ -422,7 +422,7 @@ "ps_AF": "پشتو (افغانستان)", "pt": "پُرتگالی", "pt_AO": "پُرتگالی (انگولا)", - "pt_BR": "پُرتگالی (برازیلی)", + "pt_BR": "پُرتگالی (برازیل)", "pt_CV": "پُرتگالی (کیپ ورڈی)", "pt_GW": "پُرتگالی (گنی بساؤ)", "pt_MO": "پُرتگالی (مکاؤ SAR چین)", @@ -438,15 +438,15 @@ "rm_CH": "رومانش (سوئٹزر لینڈ)", "rn": "رونڈی", "rn_BI": "رونڈی (برونڈی)", - "ro": "رومنی", - "ro_MD": "رومنی (مالدووا)", - "ro_RO": "رومنی (رومانیا)", + "ro": "رومینین", + "ro_MD": "رومینین (مالدووا)", + "ro_RO": "رومینین (رومانیا)", "ru": "روسی", "ru_BY": "روسی (بیلاروس)", "ru_KG": "روسی (کرغزستان)", "ru_KZ": "روسی (قزاخستان)", "ru_MD": "روسی (مالدووا)", - "ru_RU": "روسی (روسی)", + "ru_RU": "روسی (روس)", "ru_UA": "روسی (یوکرین)", "rw": "کینیاروانڈا", "rw_RW": "کینیاروانڈا (روانڈا)", @@ -454,8 +454,8 @@ "se_FI": "شمالی سامی (فن لینڈ)", "se_NO": "شمالی سامی (ناروے)", "se_SE": "شمالی سامی (سویڈن)", - "sg": "سانغو", - "sg_CF": "سانغو (وسط افریقی جمہوریہ)", + "sg": "سانجو", + "sg_CF": "سانجو (وسط افریقی جمہوریہ)", "sh": "سربو-کروئیشین", "sh_BA": "سربو-کروئیشین (بوسنیا اور ہرزیگووینا)", "si": "سنہالا", @@ -495,6 +495,7 @@ "sv_FI": "سویڈش (فن لینڈ)", "sv_SE": "سویڈش (سویڈن)", "sw": "سواحلی", + "sw_CD": "سواحلی (کانگو - کنشاسا)", "sw_KE": "سواحلی (کینیا)", "sw_TZ": "سواحلی (تنزانیہ)", "sw_UG": "سواحلی (یوگانڈا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/locales/ur_IN.json index 88a751a83f74c..90a5be37f0dac 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur_IN.json @@ -3,26 +3,14 @@ "af": "افریقی", "af_NA": "افریقی (نامیبیا)", "af_ZA": "افریقی (جنوبی افریقہ)", - "bm": "بامبرا", - "bm_Latn": "بامبرا (لاطینی)", - "bm_Latn_ML": "بامبرا (لاطینی, مالی)", - "ca": "کتالان", - "ca_AD": "کتالان (انڈورا)", - "ca_ES": "کتالان (ہسپانیہ)", - "ca_FR": "کتالان (فرانس)", - "ca_IT": "کتالان (اٹلی)", - "en_BB": "انگریزی (بارباڈوس)", "en_CC": "انگریزی (جزائر (کیلنگ) کوکوس)", "en_CK": "انگریزی (جزائر کک)", "en_DG": "انگریزی (ڈیگو گارشیا)", "en_FK": "انگریزی (جزائر فاکلینڈ)", - "en_GD": "انگریزی (گریناڈا)", "en_IO": "انگریزی (برطانوی بحرہند خطہ)", "en_MH": "انگریزی (جزائر مارشل)", "en_MP": "انگریزی (جزائر شمالی ماریانا)", - "en_NF": "انگریزی (جزیرہ نارفولک)", - "en_NR": "انگریزی (ناورو)", - "en_PH": "انگریزی (فلپائن)", + "en_NF": "انگریزی (جزیرہ نارفوک)", "en_PN": "انگریزی (جزائر پٹکیرن)", "en_SB": "انگریزی (جزائر سلیمان)", "en_TC": "انگریزی (جزائر کیکس و ترکیہ)", @@ -30,41 +18,13 @@ "en_VG": "انگریزی (برطانوی جزائر ورجن)", "en_VI": "انگریزی (امریکی جزائر ورجن)", "es_IC": "ہسپانوی (جزائر کناری)", - "es_PH": "ہسپانوی (فلپائن)", - "et": "اسٹونی", - "et_EE": "اسٹونی (اسٹونیا)", - "fo": "فارويز", - "fo_FO": "فارويز (جزائرفارو)", + "fo_FO": "فیروئیز (جزائر فیرو)", "fr_CI": "فرانسیسی (کوت داوواغ)", "fr_GF": "فرانسیسی (فرانسیسی گیانا)", - "fy": "مغربی فریسیائی", - "fy_NL": "مغربی فریسیائی (نیدر لینڈز)", - "gv": "مانوی", - "gv_IM": "مانوی (آئل آف مین)", - "ii": "سشوان ی", - "ii_CN": "سشوان ی (چین)", - "ki": "کیکویو", - "ki_KE": "کیکویو (کینیا)", "kn": "کنڑ", "kn_IN": "کنڑ (بھارت)", - "kw": "کورنوالی", - "kw_GB": "کورنوالی (سلطنت متحدہ)", - "lb": "لکسمبرگی", - "lb_LU": "لکسمبرگی (لگژمبرگ)", "lv": "لٹويای", "lv_LV": "لٹويای (لٹویا)", - "os_RU": "اوسیٹک (روس)", - "pt_BR": "پُرتگالی (برازیل)", - "ro": "رومانوی", - "ro_MD": "رومانوی (مالدووا)", - "ro_RO": "رومانوی (رومانیا)", - "ru_RU": "روسی (روس)", - "sg": "سانجو", - "sg_CF": "سانجو (وسط افریقی جمہوریہ)", - "sv_AX": "سویڈش (جزائر ایلانڈ)", - "ug": "آئغور", - "ug_Arab": "آئغور (عربی)", - "ug_Arab_CN": "آئغور (عربی, چین)", - "ug_CN": "آئغور (چین)" + "sv_AX": "سویڈش (جزائر آلینڈ)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index 9b14384051419..2975f29435ae5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -486,6 +486,7 @@ "sv_FI": "shvedcha (Finlyandiya)", "sv_SE": "shvedcha (Shvetsiya)", "sw": "svahilcha", + "sw_CD": "svahilcha (Kongo-Kinshasa)", "sw_KE": "svahilcha (Keniya)", "sw_TZ": "svahilcha (Tanzaniya)", "sw_UG": "svahilcha (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json index 71f821b1d31ae..d4070e2482237 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -465,6 +465,7 @@ "sv_FI": "Шведча (Финляндия)", "sv_SE": "Шведча (Швеция)", "sw": "Суахили", + "sw_CD": "Суахили (Конго-Киншаса)", "sw_KE": "Суахили (Кения)", "sw_TZ": "Суахили (Танзания)", "sw_UG": "Суахили (Уганда)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index 8411205cb88df..a2f048f5e0da5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -500,6 +500,7 @@ "sv_FI": "Tiếng Thụy Điển (Phần Lan)", "sv_SE": "Tiếng Thụy Điển (Thụy Điển)", "sw": "Tiếng Swahili", + "sw_CD": "Tiếng Swahili (Congo - Kinshasa)", "sw_KE": "Tiếng Swahili (Kenya)", "sw_TZ": "Tiếng Swahili (Tanzania)", "sw_UG": "Tiếng Swahili (Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yi.json b/src/Symfony/Component/Intl/Resources/data/locales/yi.json index d799a53116a60..69984731a6edc 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -364,6 +364,7 @@ "sv_FI": "שוועדיש (פֿינלאַנד)", "sv_SE": "שוועדיש (שוועדן)", "sw": "סוואַהיליש", + "sw_CD": "סוואַהיליש (קאנגא־קינשאַזע)", "sw_KE": "סוואַהיליש (קעניע)", "sw_TZ": "סוואַהיליש (טאַנזאַניע)", "sw_UG": "סוואַהיליש (אוגאַנדע)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index d233faff66004..9d3598c2c572e 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -351,6 +351,7 @@ "sv_FI": "Èdè Suwidiisi (Orílẹ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílẹ́ède Swidini)", "sw": "Èdè Swahili", + "sw_CD": "Èdè Swahili (Orilẹ́ède Kóngò)", "sw_KE": "Èdè Swahili (Orílẹ́ède Kenya)", "sw_TZ": "Èdè Swahili (Orílẹ́ède Tanṣania)", "sw_UG": "Èdè Swahili (Orílẹ́ède Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json index 7e95a49e89b7d..7ddb37760470a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json @@ -286,6 +286,7 @@ "sr_BA": "Èdè Serbia (Orílɛ́ède Bɔ̀síníà àti Ɛtisɛgófínà)", "sv_FI": "Èdè Suwidiisi (Orílɛ́ède Filandi)", "sv_SE": "Èdè Suwidiisi (Orílɛ́ède Swidini)", + "sw_CD": "Èdè Swahili (Orilɛ́ède Kóngò)", "sw_KE": "Èdè Swahili (Orílɛ́ède Kenya)", "sw_TZ": "Èdè Swahili (Orílɛ́ède Tanshania)", "sw_UG": "Èdè Swahili (Orílɛ́ède Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh.json b/src/Symfony/Component/Intl/Resources/data/locales/zh.json index 5f523b3cccf2b..dcf3424b4fa2f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -484,15 +484,15 @@ "sr_BA": "塞尔维亚文 (波斯尼亚和黑塞哥维那)", "sr_Cyrl": "塞尔维亚文 (西里尔文)", "sr_Cyrl_BA": "塞尔维亚文 (西里尔文, 波斯尼亚和黑塞哥维那)", - "sr_Cyrl_ME": "塞尔维亚文 (西里尔文, 黑山共和国)", + "sr_Cyrl_ME": "塞尔维亚文 (西里尔文, 黑山)", "sr_Cyrl_RS": "塞尔维亚文 (西里尔文, 塞尔维亚)", "sr_Cyrl_XK": "塞尔维亚文 (西里尔文, 科索沃)", "sr_Latn": "塞尔维亚文 (拉丁文)", "sr_Latn_BA": "塞尔维亚文 (拉丁文, 波斯尼亚和黑塞哥维那)", - "sr_Latn_ME": "塞尔维亚文 (拉丁文, 黑山共和国)", + "sr_Latn_ME": "塞尔维亚文 (拉丁文, 黑山)", "sr_Latn_RS": "塞尔维亚文 (拉丁文, 塞尔维亚)", "sr_Latn_XK": "塞尔维亚文 (拉丁文, 科索沃)", - "sr_ME": "塞尔维亚文 (黑山共和国)", + "sr_ME": "塞尔维亚文 (黑山)", "sr_RS": "塞尔维亚文 (塞尔维亚)", "sr_XK": "塞尔维亚文 (科索沃)", "sv": "瑞典文", @@ -500,6 +500,7 @@ "sv_FI": "瑞典文 (芬兰)", "sv_SE": "瑞典文 (瑞典)", "sw": "斯瓦希里文", + "sw_CD": "斯瓦希里文 (刚果(金))", "sw_KE": "斯瓦希里文 (肯尼亚)", "sw_TZ": "斯瓦希里文 (坦桑尼亚)", "sw_UG": "斯瓦希里文 (乌干达)", @@ -549,15 +550,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/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_HK.json deleted file mode 100644 index f69f58b5861cd..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_HK.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "Names": { - "fr_GP": "法文 (瓜德罗普岛)", - "fr_PM": "法文 (圣皮埃尔和密克隆)", - "om": "奥罗莫文", - "om_ET": "奥罗莫文 (埃塞俄比亚)", - "om_KE": "奥罗莫文 (肯尼亚)", - "sr_Cyrl_ME": "塞尔维亚文 (西里尔文, 黑山)", - "sr_Latn_ME": "塞尔维亚文 (拉丁文, 黑山)", - "sr_ME": "塞尔维亚文 (黑山)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_MO.json deleted file mode 100644 index 3dfa8e3f5b702..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_MO.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Names": { - "fr_PM": "法文 (圣皮埃尔和密克隆)", - "om": "奥罗莫文", - "om_ET": "奥罗莫文 (埃塞俄比亚)", - "om_KE": "奥罗莫文 (肯尼亚)", - "sr_Cyrl_ME": "塞尔维亚文 (西里尔文, 黑山)", - "sr_Latn_ME": "塞尔维亚文 (拉丁文, 黑山)", - "sr_ME": "塞尔维亚文 (黑山)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_SG.json deleted file mode 100644 index 3dfa8e3f5b702..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hans_SG.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "Names": { - "fr_PM": "法文 (圣皮埃尔和密克隆)", - "om": "奥罗莫文", - "om_ET": "奥罗莫文 (埃塞俄比亚)", - "om_KE": "奥罗莫文 (肯尼亚)", - "sr_Cyrl_ME": "塞尔维亚文 (西里尔文, 黑山)", - "sr_Latn_ME": "塞尔维亚文 (拉丁文, 黑山)", - "sr_ME": "塞尔维亚文 (黑山)" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json index b49bc97efa98d..7c6c7e65777b5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -43,11 +43,11 @@ "br": "布列塔尼文", "br_FR": "布列塔尼文 (法國)", "bs": "波士尼亞文", - "bs_BA": "波士尼亞文 (波士尼亞與赫塞格維納)", + "bs_BA": "波士尼亞文 (波士尼亞與赫塞哥維納)", "bs_Cyrl": "波士尼亞文 (斯拉夫文)", - "bs_Cyrl_BA": "波士尼亞文 (斯拉夫文, 波士尼亞與赫塞格維納)", + "bs_Cyrl_BA": "波士尼亞文 (斯拉夫文, 波士尼亞與赫塞哥維納)", "bs_Latn": "波士尼亞文 (拉丁文)", - "bs_Latn_BA": "波士尼亞文 (拉丁文, 波士尼亞與赫塞格維納)", + "bs_Latn_BA": "波士尼亞文 (拉丁文, 波士尼亞與赫塞哥維納)", "ca": "加泰羅尼亞文", "ca_AD": "加泰羅尼亞文 (安道爾)", "ca_ES": "加泰羅尼亞文 (西班牙)", @@ -68,13 +68,12 @@ "dz_BT": "宗卡文 (不丹)", "ee": "埃維文", "ee_GH": "埃維文 (迦納)", - "ee_TG": "埃維文 (多哥共和國)", + "ee_TG": "埃維文 (多哥)", "el": "希臘文", "el_CY": "希臘文 (賽普勒斯)", "el_GR": "希臘文 (希臘)", "en_AG": "英文 (安地卡及巴布達)", - "en_AI": "英文 (安圭拉島)", - "en_AS": "英文 (美屬薩摩亞群島)", + "en_AS": "英文 (美屬薩摩亞)", "en_AU": "英文 (澳洲)", "en_BB": "英文 (巴貝多)", "en_BE": "英文 (比利時)", @@ -82,7 +81,7 @@ "en_BS": "英文 (巴哈馬)", "en_BW": "英文 (波札那)", "en_BZ": "英文 (貝里斯)", - "en_CC": "英文 (可可斯群島)", + "en_CC": "英文 (科科斯(基林)群島)", "en_CK": "英文 (庫克群島)", "en_CM": "英文 (喀麥隆)", "en_CX": "英文 (聖誕島)", @@ -102,7 +101,7 @@ "en_HK": "英文 (中華人民共和國香港特別行政區)", "en_IE": "英文 (愛爾蘭)", "en_IM": "英文 (曼島)", - "en_IO": "英文 (英屬印度洋領土)", + "en_IO": "英文 (英屬印度洋領地)", "en_JE": "英文 (澤西島)", "en_JM": "英文 (牙買加)", "en_KE": "英文 (肯亞)", @@ -140,7 +139,7 @@ "en_SS": "英文 (南蘇丹)", "en_SX": "英文 (荷屬聖馬丁)", "en_SZ": "英文 (史瓦濟蘭)", - "en_TC": "英文 (土克斯及開科斯群島)", + "en_TC": "英文 (英屬土克凱可群島)", "en_TK": "英文 (托克勞群島)", "en_TO": "英文 (東加)", "en_TT": "英文 (千里達及托巴哥)", @@ -211,7 +210,7 @@ "fr_MQ": "法文 (馬丁尼克島)", "fr_MR": "法文 (茅利塔尼亞)", "fr_MU": "法文 (模里西斯)", - "fr_NC": "法文 (新喀里多尼亞群島)", + "fr_NC": "法文 (新喀里多尼亞)", "fr_NE": "法文 (尼日)", "fr_PF": "法文 (法屬玻里尼西亞)", "fr_PM": "法文 (聖皮埃爾和密克隆群島)", @@ -221,7 +220,6 @@ "fr_SN": "法文 (塞內加爾)", "fr_SY": "法文 (敘利亞)", "fr_TD": "法文 (查德)", - "fr_TG": "法文 (多哥共和國)", "fr_TN": "法文 (突尼西亞)", "fr_VU": "法文 (萬那杜)", "fr_WF": "法文 (瓦利斯和富圖納群島)", @@ -249,7 +247,7 @@ "hi": "北印度文", "hi_IN": "北印度文 (印度)", "hr": "克羅埃西亞文", - "hr_BA": "克羅埃西亞文 (波士尼亞與赫塞格維納)", + "hr_BA": "克羅埃西亞文 (波士尼亞與赫塞哥維納)", "hr_HR": "克羅埃西亞文 (克羅埃西亞)", "hy": "亞美尼亞文", "hy_AM": "亞美尼亞文 (亞美尼亞)", @@ -332,7 +330,7 @@ "ne_IN": "尼泊爾文 (印度)", "ne_NP": "尼泊爾文 (尼泊爾)", "nl": "荷蘭文", - "nl_AW": "荷蘭文 (阿路巴)", + "nl_AW": "荷蘭文 (荷屬阿魯巴)", "nl_BE": "荷蘭文 (比利時)", "nl_BQ": "荷蘭文 (荷蘭加勒比區)", "nl_CW": "荷蘭文 (庫拉索)", @@ -356,10 +354,10 @@ "ps": "普什圖文", "ps_AF": "普什圖文 (阿富汗)", "pt_CV": "葡萄牙文 (維德角)", - "pt_GW": "葡萄牙文 (幾內亞比紹)", + "pt_GW": "葡萄牙文 (幾內亞比索)", "pt_MO": "葡萄牙文 (中華人民共和國澳門特別行政區)", "pt_MZ": "葡萄牙文 (莫三比克)", - "pt_ST": "葡萄牙文 (聖多美及普林西比)", + "pt_ST": "葡萄牙文 (聖多美普林西比)", "pt_TL": "葡萄牙文 (東帝汶)", "qu": "蓋楚瓦文", "qu_BO": "蓋楚瓦文 (玻利維亞)", @@ -386,7 +384,7 @@ "se_SE": "北方薩米文 (瑞典)", "sg_CF": "桑戈文 (中非共和國)", "sh": "塞爾維亞克羅埃西亞文", - "sh_BA": "塞爾維亞克羅埃西亞文 (波士尼亞與赫塞格維納)", + "sh_BA": "塞爾維亞克羅埃西亞文 (波士尼亞與赫塞哥維納)", "si": "僧伽羅文", "si_LK": "僧伽羅文 (斯里蘭卡)", "sl": "斯洛維尼亞文", @@ -403,14 +401,14 @@ "sq_MK": "阿爾巴尼亞文 (馬其頓)", "sq_XK": "阿爾巴尼亞文 (科索沃)", "sr": "塞爾維亞文", - "sr_BA": "塞爾維亞文 (波士尼亞與赫塞格維納)", + "sr_BA": "塞爾維亞文 (波士尼亞與赫塞哥維納)", "sr_Cyrl": "塞爾維亞文 (斯拉夫文)", - "sr_Cyrl_BA": "塞爾維亞文 (斯拉夫文, 波士尼亞與赫塞格維納)", + "sr_Cyrl_BA": "塞爾維亞文 (斯拉夫文, 波士尼亞與赫塞哥維納)", "sr_Cyrl_ME": "塞爾維亞文 (斯拉夫文, 蒙特內哥羅)", "sr_Cyrl_RS": "塞爾維亞文 (斯拉夫文, 塞爾維亞)", "sr_Cyrl_XK": "塞爾維亞文 (斯拉夫文, 科索沃)", "sr_Latn": "塞爾維亞文 (拉丁文)", - "sr_Latn_BA": "塞爾維亞文 (拉丁文, 波士尼亞與赫塞格維納)", + "sr_Latn_BA": "塞爾維亞文 (拉丁文, 波士尼亞與赫塞哥維納)", "sr_Latn_ME": "塞爾維亞文 (拉丁文, 蒙特內哥羅)", "sr_Latn_RS": "塞爾維亞文 (拉丁文, 塞爾維亞)", "sr_Latn_XK": "塞爾維亞文 (拉丁文, 科索沃)", @@ -420,6 +418,7 @@ "sv_AX": "瑞典文 (奧蘭群島)", "sv_FI": "瑞典文 (芬蘭)", "sw": "史瓦希里文", + "sw_CD": "史瓦希里文 (剛果(金夏沙))", "sw_KE": "史瓦希里文 (肯亞)", "sw_TZ": "史瓦希里文 (坦尚尼亞)", "sw_UG": "史瓦希里文 (烏干達)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json index ea3067896d15b..9e1a80843c141 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json @@ -4,36 +4,22 @@ "ar_AE": "阿拉伯文 (阿拉伯聯合酋長國)", "ar_ER": "阿拉伯文 (厄立特里亞)", "ar_KM": "阿拉伯文 (科摩羅)", - "ar_MR": "阿拉伯文 (毛里塔尼亞)", "ar_QA": "阿拉伯文 (卡塔爾)", - "ar_SO": "阿拉伯文 (索馬里)", "az_AZ": "亞塞拜然文 (阿塞拜疆)", - "az_Cyrl": "亞塞拜然文 (西里爾語字母)", - "az_Cyrl_AZ": "亞塞拜然文 (西里爾語字母, 阿塞拜疆)", - "az_Latn": "亞塞拜然文 (拉丁字母)", - "az_Latn_AZ": "亞塞拜然文 (拉丁字母, 阿塞拜疆)", - "bm_Latn": "班巴拉文 (拉丁字母)", - "bm_Latn_ML": "班巴拉文 (拉丁字母, 馬里)", - "br_FR": "布里多尼文 (法國)", + "az_Cyrl": "亞塞拜然文 (西里爾文)", + "az_Cyrl_AZ": "亞塞拜然文 (西里爾文, 阿塞拜疆)", + "az_Latn_AZ": "亞塞拜然文 (拉丁文, 阿塞拜疆)", "bs_BA": "波士尼亞文 (波斯尼亞和黑塞哥維那)", - "bs_Cyrl": "波士尼亞文 (西里爾語字母)", - "bs_Cyrl_BA": "波士尼亞文 (西里爾語字母, 波斯尼亞和黑塞哥維那)", - "bs_Latn": "波士尼亞文 (拉丁字母)", - "bs_Latn_BA": "波士尼亞文 (拉丁字母, 波斯尼亞和黑塞哥維那)", + "bs_Cyrl": "波士尼亞文 (西里爾文)", + "bs_Cyrl_BA": "波士尼亞文 (西里爾文, 波斯尼亞和黑塞哥維那)", + "bs_Latn_BA": "波士尼亞文 (拉丁文, 波斯尼亞和黑塞哥維那)", "ca_IT": "加泰羅尼亞文 (意大利)", "el_CY": "希臘文 (塞浦路斯)", - "en_AG": "英文 (安提瓜及巴布達)", "en_BW": "英文 (博茨瓦納)", "en_ER": "英文 (厄立特里亞)", "en_GD": "英文 (格林納達)", - "en_GM": "英文 (岡比亞)", - "en_IM": "英文 (英屬地曼島)", "en_KE": "英文 (肯雅)", - "en_KN": "英文 (聖基茨和尼維斯)", - "en_LC": "英文 (聖盧西亞)", - "en_LR": "英文 (利比里亞)", "en_LS": "英文 (萊索托)", - "en_MS": "英文 (蒙塞拉特島)", "en_MU": "英文 (毛里裘斯)", "en_NG": "英文 (尼日利亞)", "en_PG": "英文 (巴布亞新幾內亞)", @@ -44,36 +30,22 @@ "en_SZ": "英文 (斯威士蘭)", "en_TC": "英文 (特克斯和凱科斯群島)", "en_TO": "英文 (湯加)", - "en_TT": "英文 (千里達和多巴哥)", "en_TV": "英文 (圖瓦盧)", "en_TZ": "英文 (坦桑尼亞)", - "en_VC": "英文 (聖文森特和格林納丁斯)", "en_VU": "英文 (瓦努阿圖)", "en_ZM": "英文 (贊比亞)", - "eo": "世界語", "es_CR": "西班牙文 (哥斯達黎加)", "es_GT": "西班牙文 (危地馬拉)", - "ff_MR": "富拉文 (毛里塔尼亞)", - "fr_BJ": "法文 (貝寧)", - "fr_BL": "法文 (聖巴泰勒米)", "fr_CD": "法文 (剛果 - 金夏沙)", "fr_CG": "法文 (剛果 - 布拉薩)", "fr_KM": "法文 (科摩羅)", - "fr_ML": "法文 (馬里)", - "fr_MR": "法文 (毛里塔尼亞)", "fr_MU": "法文 (毛里裘斯)", - "fr_NC": "法文 (新喀里多尼亞)", "fr_NE": "法文 (尼日爾)", "fr_RW": "法文 (盧旺達)", "fr_SC": "法文 (塞舌爾)", "fr_VU": "法文 (瓦努阿圖)", - "gl": "加里西亞文", - "gl_ES": "加里西亞文 (西班牙)", - "gv_IM": "曼島文 (英屬地曼島)", - "ha_Latn": "豪撒文 (拉丁字母)", - "ha_Latn_GH": "豪撒文 (拉丁字母, 迦納)", - "ha_Latn_NE": "豪撒文 (拉丁字母, 尼日爾)", - "ha_Latn_NG": "豪撒文 (拉丁字母, 尼日利亞)", + "ha_Latn_NE": "豪撒文 (拉丁文, 尼日爾)", + "ha_Latn_NG": "豪撒文 (拉丁文, 尼日利亞)", "ha_NE": "豪撒文 (尼日爾)", "ha_NG": "豪撒文 (尼日利亞)", "hr_BA": "克羅埃西亞文 (波斯尼亞和黑塞哥維那)", @@ -81,63 +53,42 @@ "it_SM": "意大利文 (聖馬利諾)", "ka_GE": "喬治亞文 (格魯吉亞)", "ki_KE": "吉庫尤文 (肯雅)", - "kk_Cyrl": "哈薩克文 (西里爾語字母)", - "kk_Cyrl_KZ": "哈薩克文 (西里爾語字母, 哈薩克)", - "ky_Cyrl": "吉爾吉斯文 (西里爾語字母)", - "ky_Cyrl_KG": "吉爾吉斯文 (西里爾語字母, 吉爾吉斯)", + "kk_Cyrl": "哈薩克文 (西里爾文)", + "kk_Cyrl_KZ": "哈薩克文 (西里爾文, 哈薩克)", + "ky_Cyrl": "吉爾吉斯文 (西里爾文)", + "ky_Cyrl_KG": "吉爾吉斯文 (西里爾文, 吉爾吉斯)", "ln_CD": "林加拉文 (剛果 - 金夏沙)", "ln_CG": "林加拉文 (剛果 - 布拉薩)", "lu_CD": "魯巴加丹加文 (剛果 - 金夏沙)", - "mn_Cyrl": "蒙古文 (西里爾語字母)", - "mn_Cyrl_MN": "蒙古文 (西里爾語字母, 蒙古)", - "ms_Latn": "馬來文 (拉丁字母)", - "ms_Latn_BN": "馬來文 (拉丁字母, 汶萊)", - "ms_Latn_MY": "馬來文 (拉丁字母, 馬來西亞)", - "ms_Latn_SG": "馬來文 (拉丁字母, 新加坡)", - "nb_SJ": "巴克摩挪威文 (斯瓦爾巴群島及揚馬延島)", + "mn_Cyrl": "蒙古文 (西里爾文)", + "mn_Cyrl_MN": "蒙古文 (西里爾文, 蒙古)", + "nb_SJ": "巴克摩挪威文 (斯瓦爾巴特群島及揚馬延島)", "nl_AW": "荷蘭文 (阿魯巴)", - "nl_SR": "荷蘭文 (蘇里南)", "om_ET": "奧羅莫文 (埃塞俄比亞)", "om_KE": "奧羅莫文 (肯雅)", "os_GE": "奧塞提文 (格魯吉亞)", - "pt_ST": "葡萄牙文 (聖多美普林西比)", "rw_RW": "盧安達文 (盧旺達)", "sh_BA": "塞爾維亞克羅埃西亞文 (波斯尼亞和黑塞哥維那)", "sl_SI": "斯洛維尼亞文 (斯洛文尼亞)", "so_ET": "索馬利文 (埃塞俄比亞)", "so_KE": "索馬利文 (肯雅)", - "so_SO": "索馬利文 (索馬里)", "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_Cyrl": "塞爾維亞文 (西里爾文)", + "sr_Cyrl_BA": "塞爾維亞文 (西里爾文, 波斯尼亞和黑塞哥維那)", + "sr_Cyrl_ME": "塞爾維亞文 (西里爾文, 黑山)", + "sr_Cyrl_RS": "塞爾維亞文 (西里爾文, 塞爾維亞)", + "sr_Cyrl_XK": "塞爾維亞文 (西里爾文, 科索沃)", + "sr_Latn_BA": "塞爾維亞文 (拉丁文, 波斯尼亞和黑塞哥維那)", + "sr_Latn_ME": "塞爾維亞文 (拉丁文, 黑山)", "sr_ME": "塞爾維亞文 (黑山)", + "sw_CD": "史瓦希里文 (剛果 - 金夏沙)", "sw_KE": "史瓦希里文 (肯雅)", "sw_TZ": "史瓦希里文 (坦桑尼亞)", "ti_ER": "提格利尼亞文 (厄立特里亞)", "ti_ET": "提格利尼亞文 (埃塞俄比亞)", "to_TO": "東加文 (湯加)", - "uz_Cyrl": "烏茲別克文 (西里爾語字母)", - "uz_Cyrl_UZ": "烏茲別克文 (西里爾語字母, 烏茲別克)", - "uz_Latn": "烏茲別克文 (拉丁字母)", - "uz_Latn_UZ": "烏茲別克文 (拉丁字母, 烏茲別克)", - "yo_BJ": "約魯巴文 (貝寧)", - "yo_NG": "約魯巴文 (尼日利亞)", - "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": "中文 (繁體字, 台灣)" + "uz_Cyrl": "烏茲別克文 (西里爾文)", + "uz_Cyrl_UZ": "烏茲別克文 (西里爾文, 烏茲別克)", + "yo_NG": "約魯巴文 (尼日利亞)" } } diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index dd0a0ac7845c1..1b7df522369c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -491,6 +491,7 @@ "sv_FI": "isi-Swedish (i-Finland)", "sv_SE": "isi-Swedish (i-Sweden)", "sw": "isi-Swahili", + "sw_CD": "isi-Swahili (i-Congo - Kinshasa)", "sw_KE": "isi-Swahili (i-Kenya)", "sw_TZ": "isi-Swahili (i-Tanzania)", "sw_UG": "isi-Swahili (i-Uganda)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index 80cafe4c44f03..a875c61b9e6a7 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascensioneiland", "AD": "Andorra", @@ -39,7 +39,7 @@ "BY": "Belarus", "BZ": "Belize", "CA": "Kanada", - "CC": "Cocos- (Keeling) eilande", + "CC": "Kokos-eilande", "CD": "Demokratiese Republiek van die Kongo", "CF": "Sentraal-Afrikaanse Republiek", "CG": "Republiek van die Kongo", @@ -108,7 +108,7 @@ "IL": "Israel", "IM": "Eiland Man", "IN": "Indië", - "IO": "Britse Indiese Oseaangebied", + "IO": "Brits-Indiese Oseaangebied", "IQ": "Irak", "IR": "Iran", "IS": "Ysland", @@ -122,7 +122,7 @@ "KH": "Kambodja", "KI": "Kiribati", "KM": "Comore", - "KN": "Sint Kitts en Nevis", + "KN": "St. Kitts en Nevis", "KP": "Noord-Korea", "KR": "Suid-Korea", "KW": "Koeweit", @@ -130,7 +130,7 @@ "KZ": "Kazakstan", "LA": "Laos", "LB": "Libanon", - "LC": "Sint Lucia", + "LC": "St. Lucia", "LI": "Liechtenstein", "LK": "Sri Lanka", "LR": "Liberië", @@ -151,7 +151,7 @@ "MM": "Mianmar (Birma)", "MN": "Mongolië", "MO": "Macau SAS Sjina", - "MP": "Noordelike Mariana-eilande", + "MP": "Noord-Mariane-eilande", "MQ": "Martinique", "MR": "Mauritanië", "MS": "Montserrat", @@ -182,7 +182,7 @@ "PH": "Filippyne", "PK": "Pakistan", "PL": "Pole", - "PM": "Sint Pierre en Miquelon", + "PM": "St. Pierre en Miquelon", "PN": "Pitcairneilande", "PR": "Puerto Rico", "PS": "Palestynse gebiede", @@ -196,7 +196,7 @@ "RU": "Rusland", "RW": "Rwanda", "SA": "Saoedi-Arabië", - "SB": "Solomoneilande", + "SB": "Salomonseilande", "SC": "Seychelle", "SD": "Soedan", "SE": "Swede", @@ -211,7 +211,7 @@ "SO": "Somalië", "SR": "Suriname", "SS": "Suid-Soedan", - "ST": "Sao Tome en Principe", + "ST": "São Tomé en Príncipe", "SV": "El Salvador", "SX": "Sint Maarten", "SY": "Sirië", @@ -240,7 +240,7 @@ "UY": "Uruguay", "UZ": "Oesbekistan", "VA": "Vatikaanstad", - "VC": "Sint Vincent en die Grenadine", + "VC": "St. Vincent en die Grenadine", "VE": "Venezuela", "VG": "Britse Maagde-eilande", "VI": "Amerikaanse Maagde-eilande", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/am.json b/src/Symfony/Component/Intl/Resources/data/regions/am.json index b268877c70c28..d699783b8533f 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.8.9", + "Version": "2.1.12.94", "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 c1830ca92616b..e3da6f445e853 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "جزيرة أسينشيون", "AD": "أندورا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index e741e031c470f..3d3b69525dd4b 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Yüksəliş 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 b24ad5fff397a..f82c64b2231c8 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.6.69", + "Version": "2.1.10.34", "Names": { "AZ": "Азәрбајҹан", "BR": "Бразилија", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index 4c47416b96ddd..adcd0f65f8a8d 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.7.39", + "Version": "2.1.10.93", "Names": { "AD": "Андора", "AE": "Аб’яднаныя Арабскія Эміраты", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index 73437ede9cb3c..888d52c5154fc 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.8.9", + "Version": "2.1.12.94", "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 c32f00fcc0ac5..034cdde5bb9ed 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.6.69", + "Version": "2.1.10.42", "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 f099f687b91f5..bd6620b57fe7b 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "এ্যান্ডোরা", @@ -80,7 +80,7 @@ "FR": "ফ্রান্স", "GA": "গ্যাবন", "GB": "যুক্তরাজ্য", - "GD": "গ্রেনাডা", + "GD": "গ্রেনেডা", "GE": "জর্জিয়া", "GF": "ফরাসী গায়ানা", "GG": "গ্রাঞ্জি", @@ -93,7 +93,7 @@ "GQ": "নিরক্ষীয় গিনি", "GR": "গ্রীস", "GS": "দক্ষিণ জর্জিয়া ও দক্ষিণ স্যান্ডউইচ দ্বীপপুঞ্জ", - "GT": "গোয়াটিমালা", + "GT": "গোয়াতেমালা", "GU": "গুয়াম", "GW": "গিনি-বিসাউ", "GY": "গিয়ানা", @@ -114,7 +114,7 @@ "IS": "আইসল্যান্ড", "IT": "ইতালী", "JE": "জার্সি", - "JM": "জ্যামাইকা", + "JM": "জামাইকা", "JO": "জর্ডন", "JP": "জাপান", "KE": "কেনিয়া", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json deleted file mode 100644 index 96710078cbe0c..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "GD": "গ্রেনেডা", - "GT": "গোয়াতেমালা", - "JM": "জামাইকা" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 41ba21d57184a..8b5f921a1a566 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.7.39", + "Version": "2.1.10.93", "Names": { "AC": "Enez Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 6110db808add2..a47c8202f7ed6 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.8.9", + "Version": "2.1.13.46", "Names": { "AC": "Ostrvo Asension", "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 6c24cab54b30d..fe218343729c3 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.8.9", + "Version": "2.1.12.94", "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 0be8443154f6c..0cc183cc07ae3 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "illa de l’Ascensió", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index 649928f03929b..c80ca6de60e73 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.8.9", + "Version": "2.1.12.94", "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 9f277ac8d9460..8f6948d206373 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.7.80", + "Version": "2.1.10.93", "Names": { "AC": "Ynys Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 36c31549dbd8a..948befb953d3b 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.9.62", + "Version": "2.1.12.94", "Names": { "AC": "Ascensionøen", "AD": "Andorra", @@ -16,7 +16,7 @@ "AT": "Østrig", "AU": "Australien", "AW": "Aruba", - "AX": "Ålandsøerne", + "AX": "Åland", "AZ": "Aserbajdsjan", "BA": "Bosnien-Hercegovina", "BB": "Barbados", @@ -163,9 +163,9 @@ "MY": "Malaysia", "MZ": "Mozambique", "NA": "Namibia", - "NC": "Ny Caledonien", + "NC": "Ny Kaledonien", "NE": "Niger", - "NF": "Norfolkøen", + "NF": "Norfolk Island", "NG": "Nigeria", "NI": "Nicaragua", "NL": "Holland", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index e8f7ad351fe59..b3b5a3ef3bf6e 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.8.9", + "Version": "2.1.13.4", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -16,7 +16,7 @@ "AT": "Österreich", "AU": "Australien", "AW": "Aruba", - "AX": "Åland-Inseln", + "AX": "Ålandinseln", "AZ": "Aserbaidschan", "BA": "Bosnien und Herzegowina", "BB": "Barbados", @@ -31,7 +31,7 @@ "BM": "Bermuda", "BN": "Brunei Darussalam", "BO": "Bolivien", - "BQ": "Karibische Niederlande", + "BQ": "Bonaire, Sint Eustatius und Saba", "BR": "Brasilien", "BS": "Bahamas", "BT": "Bhutan", @@ -123,8 +123,8 @@ "KI": "Kiribati", "KM": "Komoren", "KN": "St. Kitts und Nevis", - "KP": "Demokratische Volksrepublik Korea", - "KR": "Republik Korea", + "KP": "Nordkorea", + "KR": "Südkorea", "KW": "Kuwait", "KY": "Kaimaninseln", "KZ": "Kasachstan", @@ -193,7 +193,7 @@ "RE": "Réunion", "RO": "Rumänien", "RS": "Serbien", - "RU": "Russische Föderation", + "RU": "Russland", "RW": "Ruanda", "SA": "Saudi-Arabien", "SB": "Salomonen", 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 f114b077264e7..0279cf3c93876 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json @@ -1,17 +1,13 @@ { - "Version": "2.1.8.21", + "Version": "2.1.11.70", "Names": { "BD": "Bangladesh", "BN": "Brunei", "BW": "Botswana", "BY": "Weissrussland", - "CV": "Kapverden", - "DJ": "Djibouti", "GB": "Grossbritannien", "MH": "Marshall-Inseln", - "RW": "Rwanda", "SB": "Salomon-Inseln", - "ST": "Sao Tomé und Principe", "ZW": "Zimbabwe" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index 2be9fee894a52..d25847fece61f 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.8.9", + "Version": "2.1.12.94", "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 5555e070525e5..6ce79f9c7741c 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Νήσος Ασενσιόν", "AD": "Ανδόρα", @@ -146,7 +146,7 @@ "MF": "Άγιος Μαρτίνος (Γαλλικό τμήμα)", "MG": "Μαδαγασκάρη", "MH": "Νήσοι Μάρσαλ", - "MK": "Πρώην Γιουγκοσλαβική Δημοκρατία της Μακεδονίας", + "MK": "ΠΓΔΜ", "ML": "Μάλι", "MM": "Μιανμάρ\/Βιρμανία", "MN": "Μογγολία", @@ -219,7 +219,7 @@ "TA": "Τριστάν ντα Κούνια", "TC": "Νήσοι Τερκ και Κάικος", "TD": "Τσαντ", - "TF": "Γαλλικές περιοχές του νοτίου ημισφαιρίου", + "TF": "Γαλλικά Νότια Εδάφη", "TG": "Τόγκο", "TH": "Ταϊλάνδη", "TJ": "Τατζικιστάν", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index 163513a5c7948..0d9e45a128fa8 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.8.87", + "Version": "2.1.13.48", "Names": { "AC": "Ascension Island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json b/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json deleted file mode 100644 index ef2d24e97281b..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_AU.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "GS": "South Georgia and the South Sandwich Islands", - "UM": "U.S. Minor Outlying Islands", - "VC": "Saint Vincent and the Grenadines" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json b/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json deleted file mode 100644 index 514c5a9fe0fe5..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/en_GB.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "AG": "Antigua and Barbuda", - "BA": "Bosnia and Herzegovina", - "BL": "Saint Barthélemy", - "EA": "Ceuta and Melilla", - "KN": "Saint Kitts and Nevis", - "LC": "Saint Lucia", - "MF": "Saint Martin", - "PM": "Saint Pierre and Miquelon", - "SH": "Saint Helena", - "SJ": "Svalbard and Jan Mayen", - "ST": "São Tomé and Príncipe", - "TC": "Turks and Caicos Islands", - "TT": "Trinidad and Tobago", - "WF": "Wallis and Futuna" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index 3df04b8d3d4f3..b66589d50bb80 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.6.76", + "Version": "2.1.10.93", "Names": { "AD": "Andoro", "AE": "Unuiĝintaj Arabaj Emirlandos", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es.json b/src/Symfony/Component/Intl/Resources/data/regions/es.json index c94fa24cef14c..9e5ca888d2dd4 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.8.9", + "Version": "2.1.13.21", "Names": { "AC": "Isla de la Ascensión", "AD": "Andorra", @@ -54,7 +54,7 @@ "CU": "Cuba", "CV": "Cabo Verde", "CW": "Curazao", - "CX": "Isla Christmas", + "CX": "Isla de Navidad (Christmas)", "CY": "Chipre", "CZ": "República Checa", "DE": "Alemania", @@ -109,7 +109,7 @@ "IM": "Isla de Man", "IN": "India", "IO": "Territorio Británico del Océano Índico", - "IQ": "Iraq", + "IQ": "Irak", "IR": "Irán", "IS": "Islandia", "IT": "Italia", @@ -172,7 +172,7 @@ "NO": "Noruega", "NP": "Nepal", "NR": "Nauru", - "NU": "Isla Niue", + "NU": "Niue", "NZ": "Nueva Zelanda", "OM": "Omán", "PA": "Panamá", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json deleted file mode 100644 index e7d022708300d..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "AC": "Isla Ascensión", - "BA": "Bosnia y Herzegovina", - "IQ": "Irak", - "NU": "Niue" - } -} 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 672c2a1b8f376..8e0a388ba8ed9 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.8.19", + "Version": "2.1.13.23", "Names": { "EH": "Sahara Occidental" } 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 5557038a3dff2..69d0d5eeeb59a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json @@ -1,21 +1,16 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { - "BA": "Bosnia-Herzegovina", "BD": "Bangladesh", "CC": "Islas Cocos (Keeling)", - "CG": "Congo Brazzaville", "CX": "Isla de Navidad", "GG": "Guernsey", - "GS": "Islas Georgias del Sur y Sandwich del Sur", - "GW": "Guinea-Bissau", "HK": "Región Administrativa Especial de Hong Kong de la República Popular China", "IC": "Islas Canarias", "MO": "Región Administrativa Especial de Macao de la República Popular China", "PW": "Palaos", - "QA": "Qatar", "TA": "Tristán de Acuña", - "UM": "Islas UltramarinasMenores de Estados Unidos", + "UM": "Islas Ultramarinas Menores de Estados Unidos", "VI": "Islas Vírgenes de los Estados Unidos" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index f0d4bbdd7df84..5dbc262ab408a 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.8.9", + "Version": "2.1.12.94", "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 151f9d35d3e37..2f5436aa8c631 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eu.json @@ -1,9 +1,9 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension uhartea", "AD": "Andorra", - "AE": "Arabiar Emirrerri Batuak", + "AE": "Arabiar Emirerri Batuak", "AF": "Afganistan", "AG": "Antigua eta Barbuda", "AI": "Angila", @@ -27,7 +27,7 @@ "BH": "Bahrain", "BI": "Burundi", "BJ": "Benin", - "BL": "San Bartolome", + "BL": "Saint Barthélemy", "BM": "Bermuda", "BN": "Brunei", "BO": "Bolivia", @@ -39,7 +39,7 @@ "BY": "Bielorrusia", "BZ": "Belize", "CA": "Kanada", - "CC": "Cocos (Keeling) uharteak", + "CC": "Cocos uharteak", "CD": "Kongoko Errepublika Demokratikoa", "CF": "Afrika Erdiko Errepublika", "CG": "Kongo (Brazzaville)", @@ -83,7 +83,7 @@ "GD": "Grenada", "GE": "Georgia", "GF": "Guyana Frantsesa", - "GG": "Guernsey", + "GG": "Guernesey", "GH": "Ghana", "GI": "Gibraltar", "GL": "Groenlandia", @@ -222,7 +222,7 @@ "TF": "Hegoaldeko lurralde frantsesak", "TG": "Togo", "TH": "Thailandia", - "TJ": "Tadjikistan", + "TJ": "Tajikistan", "TK": "Tokelau", "TL": "Ekialdeko Timor", "TM": "Turkmenistan", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index 9356db1122b82..9b0647e520f4f 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "جزایر آسنسیون", "AD": "آندورا", @@ -12,11 +12,11 @@ "AO": "آنگولا", "AQ": "جنوبگان", "AR": "آرژانتین", - "AS": "ساموآی آمریکا", + "AS": "ساموآی امریکا", "AT": "اتریش", "AU": "استرالیا", "AW": "آروبا", - "AX": "جزایر اُلند", + "AX": "جزایر آلاند", "AZ": "جمهوری آذربایجان", "BA": "بوسنی و هرزگوین", "BB": "باربادوس", @@ -31,7 +31,7 @@ "BM": "برمودا", "BN": "برونئی", "BO": "بولیوی", - "BQ": "جزایر کارائیب هلند", + "BQ": "بونیر", "BR": "برزیل", "BS": "باهاما", "BT": "بوتان", @@ -39,7 +39,7 @@ "BY": "بلاروس", "BZ": "بلیز", "CA": "کانادا", - "CC": "جزایر کوکوس (کیلینگ)", + "CC": "جزایر کوکوس", "CD": "کنگو - کینشاسا", "CF": "جمهوری افریقای مرکزی", "CG": "کنگو - برازویل", @@ -92,7 +92,7 @@ "GP": "گوادلوپ", "GQ": "گینهٔ استوایی", "GR": "یونان", - "GS": "جزایر جورجیای جنوبی و ساندویچ جنوبی", + "GS": "جورجیای جنوبی و جزایر ساندویچ جنوبی", "GT": "گواتمالا", "GU": "گوام", "GW": "گینهٔ بیسائو", @@ -121,7 +121,7 @@ "KG": "قرقیزستان", "KH": "کامبوج", "KI": "کیریباتی", - "KM": "کومور", + "KM": "کومورو", "KN": "سنت کیتس و نویس", "KP": "کرهٔ شمالی", "KR": "کرهٔ جنوبی", @@ -165,7 +165,7 @@ "NA": "نامیبیا", "NC": "کالدونیای جدید", "NE": "نیجر", - "NF": "جزیره نورفک", + "NF": "جزیرهٔ نورفولک", "NG": "نیجریه", "NI": "نیکاراگوئه", "NL": "هلند", @@ -173,7 +173,7 @@ "NP": "نپال", "NR": "نائورو", "NU": "نیوئه", - "NZ": "زلاند نو", + "NZ": "نیوزیلند", "OM": "عمان", "PA": "پاناما", "PE": "پرو", @@ -206,12 +206,12 @@ "SJ": "اسوالبارد و جان‌ماین", "SK": "اسلواکی", "SL": "سیرالئون", - "SM": "سن مارینو", + "SM": "سان‌مارینو", "SN": "سنگال", "SO": "سومالی", "SR": "سورینام", "SS": "سودان جنوبی", - "ST": "سائوتومه و پرینسیپ", + "ST": "پرینسیپ و سائوتومه", "SV": "السالوادور", "SX": "سنت مارتن", "SY": "سوریه", 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 5f1c95caa2123..fba98156885e3 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.6.69", + "Version": "2.1.12.17", "Names": { "AD": "اندورا", "AG": "انتیگوا و باربودا", @@ -16,9 +16,8 @@ "BR": "برازیل", "BS": "بهاماس", "BY": "روسیهٔ سفید", - "CD": "جمهوری دموکراتیک کانگو", - "CF": "افریقای مرکزی", - "CG": "کانگو", + "CD": "کانگو - کینشاسا", + "CG": "کانگو - برازویل", "CH": "سویس", "CL": "چلی", "CO": "کولمبیا", @@ -47,7 +46,6 @@ "KE": "کینیا", "KG": "قرغزستان", "KH": "کمپوچیا", - "KN": "سنت کیتس و نیویس", "KP": "کوریای شمالی", "KR": "کوریای جنوبی", "LK": "سریلانکا", @@ -76,7 +74,6 @@ "PY": "پاراگوای", "RO": "رومانیا", "RW": "روآندا", - "SB": "جزایر سلومون", "SE": "سویدن", "SG": "سینگاپور", "SI": "سلونیا", @@ -84,12 +81,10 @@ "SL": "سیرالیون", "SN": "سینیگال", "SO": "سومالیه", - "ST": "سائو تومه و پرینسیپ", "SV": "السلوادور", "TJ": "تاجکستان", "UA": "اکراین", "UY": "یوروگوای", - "VC": "سنت وینسنت و گرینادین", "VE": "ونزویلا", "ZW": "زیمبابوی" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fi.json b/src/Symfony/Component/Intl/Resources/data/regions/fi.json index c719c9de7286c..92f60d10a2e5f 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.8.9", + "Version": "2.1.13.33", "Names": { "AC": "Ascension-saari", "AD": "Andorra", @@ -79,7 +79,7 @@ "FO": "Färsaaret", "FR": "Ranska", "GA": "Gabon", - "GB": "Yhdistynyt kuningaskunta", + "GB": "Iso-Britannia", "GD": "Grenada", "GE": "Georgia", "GF": "Ranskan Guayana", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Turks- ja Caicossaaret", "TD": "Tšad", - "TF": "Ranskan ulkopuoliset eteläiset alueet", + "TF": "Ranskan eteläiset alueet", "TG": "Togo", "TH": "Thaimaa", "TJ": "Tadžikistan", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index 53d35aa178339..70d176b0032db 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.7.53", + "Version": "2.1.12.27", "Names": { "AC": "Ascensionoyggjin", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index f90d69f0ee46c..1055ddfc88f1a 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.8.9", + "Version": "2.1.13.46", "Names": { "AC": "Île de l’Ascension", "AD": "Andorre", @@ -92,7 +92,7 @@ "GP": "Guadeloupe", "GQ": "Guinée équatoriale", "GR": "Grèce", - "GS": "Îles Géorgie du Sud et Sandwich du Sud", + "GS": "Géorgie du Sud et îles Sandwich du Sud", "GT": "Guatemala", "GU": "Guam", "GW": "Guinée-Bissau", @@ -143,7 +143,7 @@ "MC": "Monaco", "MD": "Moldavie", "ME": "Monténégro", - "MF": "Saint-Martin (partie française)", + "MF": "Saint-Martin", "MG": "Madagascar", "MH": "Îles Marshall", "MK": "Macédoine", @@ -183,7 +183,7 @@ "PK": "Pakistan", "PL": "Pologne", "PM": "Saint-Pierre-et-Miquelon", - "PN": "Pitcairn", + "PN": "Îles Pitcairn", "PR": "Porto Rico", "PS": "Territoires palestiniens", "PT": "Portugal", 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 2e2b3364e61a2..ab453b45a2673 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json @@ -1,13 +1,9 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "BY": "Bélarus", "CC": "Îles Cocos (Keeling)", "FM": "Micronésie", - "GS": "Géorgie du Sud et les îles Sandwich du Sud", - "MF": "Saint-Martin (France)", - "SV": "Salvador", - "SX": "Saint-Martin (Pays-Bas)", "VC": "Saint-Vincent-et-les Grenadines" } } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fy.json b/src/Symfony/Component/Intl/Resources/data/regions/fy.json index 2e743a030e09f..bd8a1aceb2b52 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.7.53", + "Version": "2.1.10.93", "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 6caf214948f81..b4f6add87a6ba 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.8.9", + "Version": "2.1.12.94", "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 2df582116ef29..90574c7340beb 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.8.9", + "Version": "2.1.12.94", "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 386f723abb45e..5608c363ab5dd 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Illa de Ascensión", "AD": "Andorra", @@ -16,7 +16,7 @@ "AT": "Austria", "AU": "Australia", "AW": "Aruba", - "AX": "Illas Aland", + "AX": "Åland", "AZ": "Acerbaixán", "BA": "Bosnia e Hercegovina", "BB": "Barbados", @@ -39,9 +39,9 @@ "BY": "Bielorrusia", "BZ": "Belice", "CA": "Canadá", - "CC": "Illas Cocos (Keeling)", + "CC": "Illas Cocos", "CD": "República Democrática do Congo", - "CF": "República Africana Central", + "CF": "República Centroafricana", "CG": "Congo", "CH": "Suíza", "CI": "Costa de Marfil", @@ -59,7 +59,7 @@ "CZ": "República Checa", "DE": "Alemaña", "DG": "Diego García", - "DJ": "Xibuti", + "DJ": "Djibuti", "DK": "Dinamarca", "DM": "Dominica", "DO": "República Dominicana", @@ -68,12 +68,12 @@ "EC": "Ecuador", "EE": "Estonia", "EG": "Exipto", - "EH": "Sahara Occidental", + "EH": "Sáhara Occidental", "ER": "Eritrea", "ES": "España", "ET": "Etiopía", "FI": "Finlandia", - "FJ": "Fixi", + "FJ": "Fidxi", "FK": "Illas Malvinas", "FM": "Micronesia", "FO": "Illas Feroe", @@ -95,7 +95,7 @@ "GS": "Xeorxia do Sur e Illas Sandwich", "GT": "Guatemala", "GU": "Guam", - "GW": "Guinea-Bissau", + "GW": "Guinea-Bisau", "GY": "Güiana", "HK": "Hong Kong RAE de China", "HN": "Honduras", @@ -113,48 +113,48 @@ "IR": "Irán", "IS": "Islandia", "IT": "Italia", - "JE": "Jersey", + "JE": "Illa de Jersey", "JM": "Xamaica", "JO": "Xordania", "JP": "Xapón", - "KE": "Quenia", + "KE": "Kenya", "KG": "Quirguicistán", "KH": "Cambodia", "KI": "Kiribati", "KM": "Comores", - "KN": "San Cristovo e Nevis", + "KN": "Saint Kitts e Nevis", "KP": "Corea do Norte", "KR": "Corea do Sur", "KW": "Kuwait", "KY": "Illas Caimán", - "KZ": "Kazakhstan", + "KZ": "Casaquistán", "LA": "Laos", "LB": "Líbano", "LC": "Santa Lucía", "LI": "Liechtenstein", "LK": "Sri Lanka", "LR": "Liberia", - "LS": "Lesotho", + "LS": "Lesoto", "LT": "Lituania", "LU": "Luxemburgo", "LV": "Letonia", "LY": "Libia", "MA": "Marrocos", "MC": "Mónaco", - "MD": "Moldova", + "MD": "Moldavia", "ME": "Montenegro", "MF": "San Martiño", "MG": "Madagascar", "MH": "Illas Marshall", - "MK": "Macedonia", - "ML": "Mali", + "MK": "República de Macedonia", + "ML": "Malí", "MM": "Myanmar (Birmania)", "MN": "Mongolia", "MO": "Macau RAE de China", "MP": "Illas Marianas do norte", "MQ": "Martinica", "MR": "Mauritania", - "MS": "Montserrat", + "MS": "Illa Montserrat", "MT": "Malta", "MU": "Mauricio", "MV": "Maldivas", @@ -173,7 +173,7 @@ "NP": "Nepal", "NR": "Nauru", "NU": "Niue", - "NZ": "Nova Celandia", + "NZ": "Nova Zelandia", "OM": "Omán", "PA": "Panamá", "PE": "Perú", @@ -187,7 +187,7 @@ "PR": "Porto Rico", "PS": "Territorios palestinos", "PT": "Portugal", - "PW": "Palau", + "PW": "Rep. das Palaus", "PY": "Paraguai", "QA": "Qatar", "RE": "Reunión", @@ -212,7 +212,7 @@ "SR": "Surinam", "SS": "Sudán do sur", "ST": "San Tomé e Príncipe", - "SV": "El Salvador", + "SV": "O Salvador", "SX": "Sint Maarten", "SY": "Siria", "SZ": "Suacilandia", @@ -223,9 +223,9 @@ "TG": "Togo", "TH": "Tailandia", "TJ": "Taxiquistán", - "TK": "Tokelau", + "TK": "Toquelau", "TL": "Timor Leste", - "TM": "Turkmenistán", + "TM": "Turcomenistán", "TN": "Tunisia", "TO": "Tonga", "TR": "Turquía", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index 438171d18393a..d8af20a283de8 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/he.json b/src/Symfony/Component/Intl/Resources/data/regions/he.json index 88ac97bbb0a29..a3f65664c29db 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -108,7 +108,7 @@ "IL": "ישראל", "IM": "האי מאן", "IN": "הודו", - "IO": "טריטוריה בריטית באוקיאנוס ההודי", + "IO": "הטריטוריה הבריטית באוקיינוס ההודי", "IQ": "עיראק", "IR": "איראן", "IS": "איסלנד", @@ -121,7 +121,7 @@ "KG": "קירגיזסטן", "KH": "קמבודיה", "KI": "קיריבאטי", - "KM": "קומורוס", + "KM": "קומורו", "KN": "סנט קיטס ונוויס", "KP": "קוריאה הצפונית", "KR": "קוריאה הדרומית", @@ -143,7 +143,7 @@ "MC": "מונקו", "MD": "מולדובה", "ME": "מונטנגרו", - "MF": "סנט מרטין", + "MF": "סן מרטן", "MG": "מדגסקר", "MH": "איי מרשל", "MK": "מקדוניה", @@ -184,7 +184,7 @@ "PL": "פולין", "PM": "סנט פייר ומיקלון", "PN": "איי פיטקרן", - "PR": "פורטו ריקו", + "PR": "פוארטו ריקו", "PS": "השטחים הפלסטיניים", "PT": "פורטוגל", "PW": "פאלאו", @@ -243,7 +243,7 @@ "VC": "סנט וינסנט והגרנדינים", "VE": "ונצואלה", "VG": "איי הבתולה הבריטיים", - "VI": "איי הבתולה האמריקניים", + "VI": "איי הבתולה של ארצות הברית", "VN": "וייטנאם", "VU": "ונואטו", "WF": "איי ווליס ופוטונה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index 70d43c1684234..5c8b1e7f94292 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.8.9", + "Version": "2.1.12.94", "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 fb572b2af485a..42df311eae51e 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Otok Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index ad0c11ead2b96..37af397e14540 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.8.9", + "Version": "2.1.12.94", "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 6f2753b8d5133..bf5361f48f1ae 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.8.9", + "Version": "2.1.12.94", "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 b5af0cb180bff..75e591f96351e 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -92,7 +92,7 @@ "GP": "Guadeloupe", "GQ": "Guinea Ekuatorial", "GR": "Yunani", - "GS": "Georgia Selatan dan Kepulauan Sandwich Selatan", + "GS": "Georgia Selatan & Kep. Sandwich Selatan", "GT": "Guatemala", "GU": "Guam", "GW": "Guinea-Bissau", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/in.json b/src/Symfony/Component/Intl/Resources/data/regions/in.json index b5af0cb180bff..75e591f96351e 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -92,7 +92,7 @@ "GP": "Guadeloupe", "GQ": "Guinea Ekuatorial", "GR": "Yunani", - "GS": "Georgia Selatan dan Kepulauan Sandwich Selatan", + "GS": "Georgia Selatan & Kep. Sandwich Selatan", "GT": "Guatemala", "GU": "Guam", "GW": "Guinea-Bissau", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index bdc2131e94bc3..949d9379fc6b4 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension-eyja", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index f58fdf58f0e58..671cf0a715c27 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.8.32", + "Version": "2.1.13.6", "Names": { "AC": "Isola di 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 88ac97bbb0a29..a3f65664c29db 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -108,7 +108,7 @@ "IL": "ישראל", "IM": "האי מאן", "IN": "הודו", - "IO": "טריטוריה בריטית באוקיאנוס ההודי", + "IO": "הטריטוריה הבריטית באוקיינוס ההודי", "IQ": "עיראק", "IR": "איראן", "IS": "איסלנד", @@ -121,7 +121,7 @@ "KG": "קירגיזסטן", "KH": "קמבודיה", "KI": "קיריבאטי", - "KM": "קומורוס", + "KM": "קומורו", "KN": "סנט קיטס ונוויס", "KP": "קוריאה הצפונית", "KR": "קוריאה הדרומית", @@ -143,7 +143,7 @@ "MC": "מונקו", "MD": "מולדובה", "ME": "מונטנגרו", - "MF": "סנט מרטין", + "MF": "סן מרטן", "MG": "מדגסקר", "MH": "איי מרשל", "MK": "מקדוניה", @@ -184,7 +184,7 @@ "PL": "פולין", "PM": "סנט פייר ומיקלון", "PN": "איי פיטקרן", - "PR": "פורטו ריקו", + "PR": "פוארטו ריקו", "PS": "השטחים הפלסטיניים", "PT": "פורטוגל", "PW": "פאלאו", @@ -243,7 +243,7 @@ "VC": "סנט וינסנט והגרנדינים", "VE": "ונצואלה", "VG": "איי הבתולה הבריטיים", - "VI": "איי הבתולה האמריקניים", + "VI": "איי הבתולה של ארצות הברית", "VN": "וייטנאם", "VU": "ונואטו", "WF": "איי ווליס ופוטונה", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index 3086bd59acca2..c010a1ed9a39b 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.8.9", + "Version": "2.1.12.94", "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 e74a8deefef21..d756f70252ff1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ka.json @@ -1,18 +1,18 @@ { - "Version": "2.1.8.95", + "Version": "2.1.13.22", "Names": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", "AE": "არაბთა გაერთიანებული საამიროები", "AF": "ავღანეთი", "AG": "ანტიგუა და ბარბუდა", - "AI": "ანგვილა", + "AI": "ანგილია", "AL": "ალბანეთი", "AM": "სომხეთი", "AO": "ანგოლა", "AQ": "ანტარქტიკა", "AR": "არგენტინა", - "AS": "ამერიკული სამოა", + "AS": "ამერიკის სამოა", "AT": "ავსტრია", "AU": "ავსტრალია", "AW": "არუბა", @@ -27,19 +27,19 @@ "BH": "ბაჰრეინი", "BI": "ბურუნდი", "BJ": "ბენინი", - "BL": "სენ-ბართლემი", + "BL": "სენ-ბართელმი", "BM": "ბერმუდი", "BN": "ბრუნეი", "BO": "ბოლივია", "BQ": "კარიბის ნიდერლანდები", "BR": "ბრაზილია", "BS": "ბაჰამის კუნძულები", - "BT": "ბუტანი", + "BT": "ბჰუტანი", "BW": "ბოტსვანა", - "BY": "ბელორუსია", + "BY": "ბელარუსი", "BZ": "ბელიზი", "CA": "კანადა", - "CC": "ქოქოსის (კილინგის) კუნძულები", + "CC": "ქოქოსის კუნძულები", "CD": "კონგო - კინშასა", "CF": "ცენტრალური აფრიკის რესპუბლიკა", "CG": "კონგო - ბრაზავილი", @@ -62,7 +62,7 @@ "DJ": "ჯიბუტი", "DK": "დანია", "DM": "დომინიკა", - "DO": "დომინიკანის რესპუბლიკა", + "DO": "დომინიკელთა რესპუბლიკა", "DZ": "ალჟირი", "EA": "სეუტა და მელილა", "EC": "ეკვადორი", @@ -82,14 +82,14 @@ "GB": "დიდი ბრიტანეთი", "GD": "გრენადა", "GE": "საქართველო", - "GF": "ფრანგული გვიანა", + "GF": "საფრანგეთის გვიანა", "GG": "გერნსი", "GH": "განა", "GI": "გიბრალტარი", "GL": "გრენლანდია", "GM": "გამბია", "GN": "გვინეა", - "GP": "გვადელუპე", + "GP": "გვადელუპა", "GQ": "ეკვატორული გვინეა", "GR": "საბერძნეთი", "GS": "სამხრეთი გეორგია და სამხრეთ სენდვიჩის კუნძულები", @@ -108,7 +108,7 @@ "IL": "ისრაელი", "IM": "მენის კუნძული", "IN": "ინდოეთი", - "IO": "ბრიტანული ტერიტორია ინდოეთის ოკეანეში", + "IO": "ბრიტ. ტერიტ. ინდ. ოკეანეში", "IQ": "ერაყი", "IR": "ირანი", "IS": "ისლანდია", @@ -131,7 +131,7 @@ "LA": "ლაოსი", "LB": "ლიბანი", "LC": "სენტ-ლუსია", - "LI": "ლიხტენშტეინი", + "LI": "ლიხტენშტაინი", "LK": "შრი-ლანკა", "LR": "ლიბერია", "LS": "ლესოთო", @@ -157,7 +157,7 @@ "MS": "მონსერატი", "MT": "მალტა", "MU": "მავრიკი", - "MV": "მალდივის კუნძულები", + "MV": "მალდივის რესპუბლიკა", "MW": "მალავი", "MX": "მექსიკა", "MY": "მალაიზია", @@ -177,7 +177,7 @@ "OM": "ომანი", "PA": "პანამა", "PE": "პერუ", - "PF": "ფრანგული პოლინეზია", + "PF": "საფრანგეთის პოლინეზია", "PG": "პაპუა-ახალი გვინეა", "PH": "ფილიპინები", "PK": "პაკისტანი", @@ -217,14 +217,14 @@ "SY": "სირია", "SZ": "სვაზილენდი", "TA": "ტრისტან-და-კუნია", - "TC": "ტერკსის და კაიკოსის კუნძულები", + "TC": "ტერქსისა და კაიკოსის კუნძულები", "TD": "ჩადი", "TF": "ფრანგული სამხრეთის ტერიტორიები", "TG": "ტოგო", "TH": "ტაილანდი", "TJ": "ტაჯიკეთი", "TK": "ტოკელაუ", - "TL": "ტიმორ-ლეშტი", + "TL": "აღმოსავლეთი ტიმორი", "TM": "თურქმენეთი", "TN": "ტუნისი", "TO": "ტონგა", @@ -242,8 +242,8 @@ "VA": "ქალაქი ვატიკანი", "VC": "სენტ-ვინსენტი და გრენადინები", "VE": "ვენესუელა", - "VG": "ბრიტანეთის ვირჯინიის კუნძულები", - "VI": "აშშ-ის ვირჯინიის კუნძულები", + "VG": "ბრიტანეთის ვირჯინის კუნძულები", + "VI": "აშშ-ის ვირჯინის კუნძულები", "VN": "ვიეტნამი", "VU": "ვანუატუ", "WF": "უოლისი და ფუტუნა", @@ -251,7 +251,7 @@ "XK": "კოსოვო", "YE": "იემენი", "YT": "მაიოტა", - "ZA": "სამხრეთ აფრიკა", + "ZA": "სამხრეთ აფრიკის რესპუბლიკა", "ZM": "ზამბია", "ZW": "ზიმბაბვე" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kk.json b/src/Symfony/Component/Intl/Resources/data/regions/kk.json index 7b7f50d87779f..939ce9eee12a9 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ғибадат аралы", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/km.json b/src/Symfony/Component/Intl/Resources/data/regions/km.json index ff0c32b554104..5e12b070e86f2 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.8.9", + "Version": "2.1.13.51", "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 159f87770e284..4c0ed6a30ad5d 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.8.9", + "Version": "2.1.13.51", "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 e6d8d977fa9e8..19db38c106bb2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko.json @@ -1,12 +1,12 @@ { - "Version": "2.1.9.31", + "Version": "2.1.12.94", "Names": { "AC": "어센션 섬", "AD": "안도라", "AE": "아랍에미리트 연합", "AF": "아프가니스탄", "AG": "앤티가 바부다", - "AI": "안길라", + "AI": "앵귈라", "AL": "알바니아", "AM": "아르메니아", "AO": "앙골라", @@ -27,7 +27,7 @@ "BH": "바레인", "BI": "부룬디", "BJ": "베냉", - "BL": "생 바르텔르미", + "BL": "생바르텔레미", "BM": "버뮤다", "BN": "브루나이", "BO": "볼리비아", @@ -52,10 +52,10 @@ "CO": "콜롬비아", "CR": "코스타리카", "CU": "쿠바", - "CV": "까뽀베르데", + "CV": "카보베르데", "CW": "퀴라소", "CX": "크리스마스섬", - "CY": "사이프러스", + "CY": "키프로스", "CZ": "체코", "DE": "독일", "DG": "디에고 가르시아", @@ -76,7 +76,7 @@ "FJ": "피지", "FK": "포클랜드 제도", "FM": "미크로네시아", - "FO": "페로제도", + "FO": "페로 제도", "FR": "프랑스", "GA": "가봉", "GB": "영국", @@ -95,7 +95,7 @@ "GS": "사우스조지아 사우스샌드위치 제도", "GT": "과테말라", "GU": "괌", - "GW": "기네비쏘", + "GW": "기니비사우", "GY": "가이아나", "HK": "홍콩, 중국 특별행정구", "HN": "온두라스", @@ -108,7 +108,7 @@ "IL": "이스라엘", "IM": "맨 섬", "IN": "인도", - "IO": "영국령인도양식민지", + "IO": "영국령 인도양 식민지", "IQ": "이라크", "IR": "이란", "IS": "아이슬란드", @@ -121,9 +121,9 @@ "KG": "키르기스스탄", "KH": "캄보디아", "KI": "키리바시", - "KM": "코모로스", - "KN": "세인트 키츠 네비스", - "KP": "조선 민주주의 인민 공화국", + "KM": "코모로", + "KN": "세인트키츠 네비스", + "KP": "조선민주주의인민공화국", "KR": "대한민국", "KW": "쿠웨이트", "KY": "케이맨제도", @@ -152,7 +152,7 @@ "MN": "몽골", "MO": "마카오, 중국 특별행정구", "MP": "북마리아나제도", - "MQ": "말티니크", + "MQ": "마르티니크", "MR": "모리타니", "MS": "몬트세라트", "MT": "몰타", @@ -163,7 +163,7 @@ "MY": "말레이시아", "MZ": "모잠비크", "NA": "나미비아", - "NC": "뉴 칼레도니아", + "NC": "뉴칼레도니아", "NE": "니제르", "NF": "노퍽섬", "NG": "나이지리아", @@ -197,7 +197,7 @@ "RW": "르완다", "SA": "사우디아라비아", "SB": "솔로몬 제도", - "SC": "쉐이쉘", + "SC": "세이셸", "SD": "수단", "SE": "스웨덴", "SG": "싱가포르", @@ -215,9 +215,9 @@ "SV": "엘살바도르", "SX": "신트마르턴", "SY": "시리아", - "SZ": "스와질랜드", + "SZ": "스와질란드", "TA": "트리스탄다쿠나", - "TC": "터크스케이커스제도", + "TC": "터크스 케이커스 제도", "TD": "차드", "TF": "프랑스 남부 지방", "TG": "토고", @@ -239,18 +239,18 @@ "US": "미국", "UY": "우루과이", "UZ": "우즈베키스탄", - "VA": "바티칸", + "VA": "바티칸시국", "VC": "세인트빈센트그레나딘", "VE": "베네수엘라", - "VG": "영국령 버진 아일랜드", - "VI": "미국령 버진 아일랜드", + "VG": "영국령 버진아일랜드", + "VI": "미국령 버진아일랜드", "VN": "베트남", "VU": "바누아투", "WF": "왈리스-푸투나 제도", "WS": "사모아", "XK": "코소보", "YE": "예멘", - "YT": "마요티", + "YT": "마요트", "ZA": "남아프리카", "ZM": "잠비아", "ZW": "짐바브웨" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ks.json b/src/Symfony/Component/Intl/Resources/data/regions/ks.json index 5ae64d7639999..3a65c6acaadae 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.8.9", + "Version": "2.1.12.94", "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 6964b8376fa34..03837678967bc 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.6.69", + "Version": "2.1.12.32", "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 0af28d42668f5..6093f1e3fdef0 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.8.9", + "Version": "2.1.12.94", "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 49ea6dad9a1dc..98b096426c3c1 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index 2cc5490920148..5b3782d6264cc 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.8.9", + "Version": "2.1.12.94", "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 b13d4f3e44a26..1c2e1cf9bf0f6 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.8.9", + "Version": "2.1.13.46", "Names": { "AC": "Dangun Žengimo sala", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lv.json b/src/Symfony/Component/Intl/Resources/data/regions/lv.json index abe980931f721..b04ad0b810ca3 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.8.9", + "Version": "2.1.12.94", "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 b88b049aa20fc..cf0fd31fc5ec0 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.7.12", + "Version": "2.1.12.90", "Regions": [ "AC", "AD", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mk.json b/src/Symfony/Component/Intl/Resources/data/regions/mk.json index 3a408811d2a57..8665ecf2e0653 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.8.9", + "Version": "2.1.12.94", "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 52b614d8169b4..24c12e310ffb2 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.8.9", + "Version": "2.1.12.94", "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 1468b69622fe1..e86522e85673d 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Аскенсион Арал", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index c1bda23939cb6..9b2fa6086d856 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.8.9", + "Version": "2.1.12.94", "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 c191309151f24..fb5bafb79def0 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.8.9", + "Version": "2.1.12.94", "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 1f0888926303a..33adf029a7923 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.8.22", + "Version": "2.1.10.93", "Names": { "AD": "Andorra", "AE": "Emirati Għarab Maqgħuda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/my.json b/src/Symfony/Component/Intl/Resources/data/regions/my.json index 989ca286f2346..eb43f5b0e43d7 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.8.9", + "Version": "2.1.13.21", "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 5d9b716f7374c..f1e29b6b6304b 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -108,7 +108,7 @@ "IL": "Israel", "IM": "Man", "IN": "India", - "IO": "Britiske territorier i Indiahavet", + "IO": "Det britiske territoriet i Indiahavet", "IQ": "Irak", "IR": "Iran", "IS": "Island", @@ -122,7 +122,7 @@ "KH": "Kambodsja", "KI": "Kiribati", "KM": "Komorene", - "KN": "St. Kitts og Nevis", + "KN": "Saint Kitts og Nevis", "KP": "Nord-Korea", "KR": "Sør-Korea", "KW": "Kuwait", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ne.json b/src/Symfony/Component/Intl/Resources/data/regions/ne.json index e3fd298fd63fa..3375c22456b6f 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.8.95", + "Version": "2.1.12.94", "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 00ec2cb6f3b11..008e6096e1f85 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Turks- en Caicoseilanden", "TD": "Tsjaad", - "TF": "Franse Gebieden in de zuidelijke Indische Oceaan", + "TF": "Franse Zuidelijke Gebieden", "TG": "Togo", "TH": "Thailand", "TJ": "Tadzjikistan", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl_BE.json b/src/Symfony/Component/Intl/Resources/data/regions/nl_BE.json deleted file mode 100644 index 5a84114a34cef..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/nl_BE.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "IM": "Het Eiland Man" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index d0934832a7205..5d975daebb435 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.7.72", + "Version": "2.1.10.42", "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 5d9b716f7374c..f1e29b6b6304b 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -108,7 +108,7 @@ "IL": "Israel", "IM": "Man", "IN": "India", - "IO": "Britiske territorier i Indiahavet", + "IO": "Det britiske territoriet i Indiahavet", "IQ": "Irak", "IR": "Iran", "IS": "Island", @@ -122,7 +122,7 @@ "KH": "Kambodsja", "KI": "Kiribati", "KM": "Komorene", - "KN": "St. Kitts og Nevis", + "KN": "Saint Kitts og Nevis", "KP": "Nord-Korea", "KR": "Sør-Korea", "KW": "Kuwait", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 6de5d4f8a1aa5..24bc299d6c303 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.6.69", + "Version": "2.1.10.42", "Names": { "BR": "Brazil", "CN": "China", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index b6fe63d2ed038..39e6ad4f32593 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.7.53", + "Version": "2.1.10.93", "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 dd213b469a77e..ee5f741c066bc 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pl.json b/src/Symfony/Component/Intl/Resources/data/regions/pl.json index fd4c5ce7e2ea0..be607f41d9d5a 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.8.95", + "Version": "2.1.12.94", "Names": { "AC": "Wyspa Wniebowstąpienia", "AD": "Andora", @@ -83,7 +83,7 @@ "GD": "Grenada", "GE": "Gruzja", "GF": "Gujana Francuska", - "GG": "Wyspa Guernsey", + "GG": "Guernsey", "GH": "Ghana", "GI": "Gibraltar", "GL": "Grenlandia", @@ -113,7 +113,7 @@ "IR": "Iran", "IS": "Islandia", "IT": "Włochy", - "JE": "Wyspa Jersey", + "JE": "Jersey", "JM": "Jamajka", "JO": "Jordania", "JP": "Japonia", @@ -219,7 +219,7 @@ "TA": "Tristan da Cunha", "TC": "Turks i Caicos", "TD": "Czad", - "TF": "Francuskie Terytoria Południowe", + "TF": "Francuskie Terytoria Południowe i Antarktyczne", "TG": "Togo", "TH": "Tajlandia", "TJ": "Tadżykistan", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt.json b/src/Symfony/Component/Intl/Resources/data/regions/pt.json index 8b4b957f89dac..49487f27ef1d5 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ilha de Ascensão", "AD": "Andorra", @@ -92,10 +92,10 @@ "GP": "Guadalupe", "GQ": "Guiné Equatorial", "GR": "Grécia", - "GS": "Geórgia do Sul e Ilhas Sandwich do Sul", + "GS": "Ilhas Geórgia do Sul e Sandwich do Sul", "GT": "Guatemala", "GU": "Guam", - "GW": "Guiné Bissau", + "GW": "Guiné-Bissau", "GY": "Guiana", "HK": "Hong Kong, RAE da China", "HN": "Honduras", @@ -126,7 +126,7 @@ "KP": "Coreia do Norte", "KR": "Coreia do Sul", "KW": "Kuwait", - "KY": "Ilhas Caiman", + "KY": "Ilhas Cayman", "KZ": "Cazaquistão", "LA": "Laos", "LB": "Líbano", @@ -235,7 +235,7 @@ "TZ": "Tanzânia", "UA": "Ucrânia", "UG": "Uganda", - "UM": "Ilhas Distantes dos EUA", + "UM": "Ilhas Menores Distantes dos EUA", "US": "Estados Unidos", "UY": "Uruguai", "UZ": "Uzbequistão", 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 6efd1fce6c204..8f0916a6d042a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json @@ -1,28 +1,21 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "AI": "Anguila", "AM": "Arménia", "BH": "Barém", "BJ": "Benim", - "BW": "Botswana", - "CC": "Ilhas Cocos", "CD": "Congo-Kinshasa", "CG": "Congo-Brazzaville", "CM": "Camarões", "CW": "Curaçau", - "CX": "Ilha do Natal", "CZ": "República Checa", - "DJ": "Jibuti", "DM": "Domínica", "EE": "Estónia", - "EG": "Egipto", "FK": "Ilhas Falkland", "FO": "Ilhas Faroé", "GL": "Gronelândia", - "GS": "Ilhas Geórgia do Sul e Sandwich do Sul", "GU": "Guame", - "GW": "Guiné-Bissau", "IR": "Irão", "KE": "Quénia", "KY": "Ilhas Caimão", @@ -33,16 +26,14 @@ "MS": "Monserrate", "MU": "Maurícia", "NC": "Nova Caledónia", - "NL": "Países Baixos", "PL": "Polónia", "PN": "Pitcairn", - "PS": "Território Palestiniano", + "PS": "Territórios palestinianos", "RO": "Roménia", "SC": "Seicheles", "SG": "Singapura", "SI": "Eslovénia", "SM": "São Marino", - "TC": "Ilhas Turcas e Caicos", "TK": "Toquelau", "TM": "Turquemenistão", "TT": "Trindade e Tobago", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index b72a785ca9693..177f6c9f4cd5f 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.8.9", + "Version": "2.1.12.94", "Names": { "AD": "Andorra", "AE": "Emirats Arabs Unids", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro.json b/src/Symfony/Component/Intl/Resources/data/regions/ro.json index e585044c6ee5c..b4144c99f3249 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Insula Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ru.json b/src/Symfony/Component/Intl/Resources/data/regions/ru.json index aa954074c740a..a6867830e3cd3 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.8.9", + "Version": "2.1.13.53", "Names": { "AC": "о-в Вознесения", "AD": "Андорра", @@ -157,7 +157,7 @@ "MS": "Монтсеррат", "MT": "Мальта", "MU": "Маврикий", - "MV": "Мальдивские о-ва", + "MV": "Мальдивы", "MW": "Малави", "MX": "Мексика", "MY": "Малайзия", @@ -183,7 +183,7 @@ "PK": "Пакистан", "PL": "Польша", "PM": "Сен-Пьер и Микелон", - "PN": "Питкэрн", + "PN": "Питкерн", "PR": "Пуэрто-Рико", "PS": "Палестинские территории", "PT": "Португалия", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh.json b/src/Symfony/Component/Intl/Resources/data/regions/sh.json index acbf5106c1336..e734c05c8baed 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.8.20", + "Version": "2.1.13.24", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/si.json b/src/Symfony/Component/Intl/Resources/data/regions/si.json index a9f7cfcc7c15a..12d83d8335bbf 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.8.9", + "Version": "2.1.12.94", "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 db4ab677e02da..af839a901af23 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascensión", "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 ee90235f54d14..744de5f4d7594 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -79,7 +79,7 @@ "FO": "Ferski otoki", "FR": "Francija", "GA": "Gabon", - "GB": "Velika Britanija", + "GB": "Združeno kraljestvo", "GD": "Grenada", "GE": "Gruzija", "GF": "Francoska Gvajana", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index 94efdec567796..d30cb9d64cce1 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.7.39", + "Version": "2.1.10.93", "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 7e2848f57898b..20ea328cdf704 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ishulli Asenshion", "AD": "Andorrë", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index 76d66da2630c1..be6929ccf8448 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Острво Асенсион", "AD": "Андора", 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 acbf5106c1336..e734c05c8baed 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.8.20", + "Version": "2.1.13.24", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index 4c3dc005d3a5b..c053402e49469 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/regions/sv_FI.json deleted file mode 100644 index c274429df9492..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/sv_FI.json +++ /dev/null @@ -1,25 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "BL": "Saint-Barthélemy", - "BQ": "Bonaire, S:t Eustatius och Saba", - "CD": "Demokratiska republiken Kongo", - "CG": "Kongo", - "GB": "Förenade kungariket", - "KN": "Saint Kitts och Nevis", - "LC": "Saint Lucia", - "MF": "S:t Martin (franska delen)", - "MM": "Burma", - "PM": "Saint Pierre och Miquelon", - "PN": "Pitcairn", - "PS": "Palestinska området", - "SD": "Nordsudan", - "SH": "Saint Helena", - "SX": "Sint Martin", - "TK": "Tokelauöarna", - "US": "Förenta staterna", - "VA": "Vatikanen", - "VC": "Saint Vincent och Grenadinerna", - "WF": "Wallis- och Futuna" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index f66a0ea274d6a..0c16f3b1f5319 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Kisiwa cha Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json new file mode 100644 index 0000000000000..411d9da20d2b2 --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json @@ -0,0 +1,17 @@ +{ + "Version": "2.1.11.52", + "Names": { + "AF": "Afuganistani", + "BJ": "Benini", + "CG": "Kongo", + "CI": "Kodivaa", + "CY": "Kuprosi", + "IR": "Uajemi", + "LI": "Lishenteni", + "MG": "Bukini", + "MM": "Myama", + "NF": "Kisiwa cha Norfok", + "NG": "Nijeria", + "TL": "Timori ya Mashariki" + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index 30a36996b56bf..2a55f63c6a7a3 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.8.9", + "Version": "2.1.12.94", "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 7ca9075efab40..3f630b1cb2b39 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.8.9", + "Version": "2.1.12.94", "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 ab6a587ae523b..f169bede68c2e 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.8.9", + "Version": "2.1.12.94", "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 f2520a60d1482..706a68ad4b1be 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.8.9", + "Version": "2.1.12.94", "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 e8b649465c222..cfadca6352c55 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.8.9", + "Version": "2.1.12.94", "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 74871b9289672..6f6ab8c145d6b 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Ascension Adası", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uk.json b/src/Symfony/Component/Intl/Resources/data/regions/uk.json index 60d67695208a6..be0985af71d92 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.8.9", + "Version": "2.1.12.94", "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 c40b12ba8b7f1..ecebc04e46b54 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur.json @@ -1,7 +1,7 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { - "AC": "اسکینسیئن آئلینڈ", + "AC": "اسینشن آئلینڈ", "AD": "انڈورا", "AE": "متحدہ عرب امارات", "AF": "افغانستان", @@ -19,7 +19,7 @@ "AX": "آلینڈ آئلینڈز", "AZ": "آذربائجان", "BA": "بوسنیا اور ہرزیگووینا", - "BB": "باربادوس", + "BB": "بارباڈوس", "BD": "بنگلہ دیش", "BE": "بیلجیم", "BF": "برکینا فاسو", @@ -32,7 +32,7 @@ "BN": "برونئی", "BO": "بولیویا", "BQ": "کریبیائی نیدرلینڈز", - "BR": "برازیلی", + "BR": "برازیل", "BS": "بہاماس", "BT": "بھوٹان", "BW": "بوتسوانا", @@ -76,11 +76,11 @@ "FJ": "فجی", "FK": "فاکلینڈ جزائر", "FM": "مائکرونیشیا", - "FO": "فروئی آئلینڈز", + "FO": "فیرو آئلینڈز", "FR": "فرانس", "GA": "گیبون", "GB": "سلطنت متحدہ", - "GD": "غرناطہ", + "GD": "گریناڈا", "GE": "جارجیا", "GF": "فرینچ گیانا", "GG": "گوئرنسی", @@ -165,7 +165,7 @@ "NA": "نامیبیا", "NC": "نیو کلیڈونیا", "NE": "نائجر", - "NF": "نار فاک آئلینڈ", + "NF": "نارفوک آئلینڈ", "NG": "نائجیریا", "NI": "نکاراگووا", "NL": "نیدر لینڈز", @@ -193,7 +193,7 @@ "RE": "ری یونین", "RO": "رومانیا", "RS": "سربیا", - "RU": "روسی", + "RU": "روس", "RW": "روانڈا", "SA": "سعودی عرب", "SB": "سولومن آئلینڈز", 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 893a3d0882cb6..a71616eb19e0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json @@ -1,27 +1,21 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "AC": "جزیرہ اسینشن", - "AX": "جزائر ایلانڈ", - "BB": "بارباڈوس", - "BR": "برازیل", + "AX": "جزائر آلینڈ", "CC": "جزائر (کیلنگ) کوکوس", "CI": "کوت داوواغ", "CK": "جزائر کک", "DG": "ڈیگو گارشیا", "FK": "جزائر فاکلینڈ", - "FO": "جزائرفارو", - "GD": "گریناڈا", + "FO": "جزائر فیرو", "GF": "فرانسیسی گیانا", "IC": "جزائر کناری", "IO": "برطانوی بحرہند خطہ", "MH": "جزائر مارشل", "MP": "جزائر شمالی ماریانا", - "NF": "جزیرہ نارفولک", - "NR": "ناورو", - "PH": "فلپائن", + "NF": "جزیرہ نارفوک", "PN": "جزائر پٹکیرن", - "RU": "روس", "SB": "جزائر سلیمان", "TA": "ترسٹان دا کونیا", "TC": "جزائر کیکس و ترکیہ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz.json b/src/Symfony/Component/Intl/Resources/data/regions/uz.json index a6390e1644821..979614e8a22f5 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Vozneseniye oroli", "AD": "Andorra", 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 8e893c03c8cf5..52ab49be828b3 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.7.39", + "Version": "2.1.10.42", "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 f526356cbac5e..a779a064fb987 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "Đảo Ascension", "AD": "Andorra", 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 492685c1ceb94..2125ab9b995a5 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.8.19", + "Version": "2.1.13.24", "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 d3c8c069895de..7222d424fd6cc 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.8.9", + "Version": "2.1.12.94", "Names": { "AC": "阿森松岛", "AD": "安道尔", @@ -142,7 +142,7 @@ "MA": "摩洛哥", "MC": "摩纳哥", "MD": "摩尔多瓦", - "ME": "黑山共和国", + "ME": "黑山", "MF": "法属圣马丁", "MG": "马达加斯加", "MH": "马绍尔群岛", 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 6854b269e6cc6..cbdca192b09ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json @@ -1,50 +1,31 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { "AE": "阿拉伯聯合酋長國", - "AG": "安提瓜及巴布達", "AW": "阿魯巴", "AZ": "阿塞拜疆", "BA": "波斯尼亞和黑塞哥維那", - "BB": "巴巴多斯", - "BJ": "貝寧", - "BL": "聖巴泰勒米", "BW": "博茨瓦納", "CD": "剛果 - 金夏沙", "CG": "剛果 - 布拉薩", - "CI": "科特迪瓦", "CR": "哥斯達黎加", - "CV": "佛得角", "CY": "塞浦路斯", "ER": "厄立特里亞", "ET": "埃塞俄比亞", - "GA": "加蓬", "GD": "格林納達", "GE": "格魯吉亞", - "GM": "岡比亞", - "GS": "南佐治亞島與南桑威奇群島", "GT": "危地馬拉", - "HN": "洪都拉斯", - "IM": "英屬地曼島", "IT": "意大利", "KE": "肯雅", "KM": "科摩羅", - "KN": "聖基茨和尼維斯", - "LC": "聖盧西亞", "LI": "列支敦士登", - "LR": "利比里亞", "LS": "萊索托", "ME": "黑山", - "ML": "馬里", - "MR": "毛里塔尼亞", - "MS": "蒙塞拉特島", "MU": "毛里裘斯", "MV": "馬爾代夫", "MZ": "莫桑比克", - "NC": "新喀里多尼亞", "NE": "尼日爾", "NG": "尼日利亞", - "OM": "阿曼", "PG": "巴布亞新幾內亞", "PN": "皮特凱恩島", "QA": "卡塔爾", @@ -53,21 +34,14 @@ "SB": "所羅門群島", "SC": "塞舌爾", "SI": "斯洛文尼亞", - "SJ": "斯瓦爾巴群島及揚馬延島", + "SJ": "斯瓦爾巴特群島及揚馬延島", "SL": "塞拉利昂", - "SO": "索馬里", - "SR": "蘇里南", - "ST": "聖多美普林西比", "SZ": "斯威士蘭", "TC": "特克斯和凱科斯群島", - "TD": "乍得", "TF": "法屬南部地區", "TO": "湯加", - "TT": "千里達和多巴哥", "TV": "圖瓦盧", "TZ": "坦桑尼亞", - "VA": "梵蒂岡宮城", - "VC": "聖文森特和格林納丁斯", "VU": "瓦努阿圖", "ZM": "贊比亞" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_HK.json deleted file mode 100644 index cbb29da9d21f7..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_HK.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "GP": "瓜德罗普岛", - "ME": "黑山", - "PM": "圣皮埃尔和密克隆" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_MO.json deleted file mode 100644 index beef6101ffeda..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_MO.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ME": "黑山", - "PM": "圣皮埃尔和密克隆" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_SG.json deleted file mode 100644 index beef6101ffeda..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hans_SG.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ME": "黑山", - "PM": "圣皮埃尔和密克隆" - } -} 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 95ac09ebdfbca..ca09f765d875e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json @@ -1,24 +1,24 @@ { - "Version": "2.1.8.95", + "Version": "2.1.12.94", "Names": { "AC": "阿森松島", "AD": "安道爾", "AE": "阿拉伯聯合大公國", "AF": "阿富汗", "AG": "安地卡及巴布達", - "AI": "安圭拉島", + "AI": "安圭拉", "AL": "阿爾巴尼亞", "AM": "亞美尼亞", "AO": "安哥拉", "AQ": "南極洲", "AR": "阿根廷", - "AS": "美屬薩摩亞群島", + "AS": "美屬薩摩亞", "AT": "奧地利", "AU": "澳洲", - "AW": "阿路巴", + "AW": "荷屬阿魯巴", "AX": "奧蘭群島", "AZ": "亞塞拜然", - "BA": "波士尼亞與赫塞格維納", + "BA": "波士尼亞與赫塞哥維納", "BB": "巴貝多", "BD": "孟加拉", "BE": "比利時", @@ -39,7 +39,7 @@ "BY": "白俄羅斯", "BZ": "貝里斯", "CA": "加拿大", - "CC": "可可斯群島", + "CC": "科科斯(基林)群島", "CD": "剛果(金夏沙)", "CF": "中非共和國", "CG": "剛果(布拉薩)", @@ -95,7 +95,7 @@ "GS": "南喬治亞與南三明治群島", "GT": "瓜地馬拉", "GU": "關島", - "GW": "幾內亞比紹", + "GW": "幾內亞比索", "GY": "蓋亞那", "HK": "中華人民共和國香港特別行政區", "HN": "宏都拉斯", @@ -108,7 +108,7 @@ "IL": "以色列", "IM": "曼島", "IN": "印度", - "IO": "英屬印度洋領土", + "IO": "英屬印度洋領地", "IQ": "伊拉克", "IR": "伊朗", "IS": "冰島", @@ -163,7 +163,7 @@ "MY": "馬來西亞", "MZ": "莫三比克", "NA": "納米比亞", - "NC": "新喀里多尼亞群島", + "NC": "新喀里多尼亞", "NE": "尼日", "NF": "諾福克島", "NG": "奈及利亞", @@ -211,16 +211,16 @@ "SO": "索馬利亞", "SR": "蘇利南", "SS": "南蘇丹", - "ST": "聖多美及普林西比", + "ST": "聖多美普林西比", "SV": "薩爾瓦多", "SX": "荷屬聖馬丁", "SY": "敘利亞", "SZ": "史瓦濟蘭", "TA": "特里斯坦達庫尼亞群島", - "TC": "土克斯及開科斯群島", + "TC": "英屬土克凱可群島", "TD": "查德", "TF": "法屬南方屬地", - "TG": "多哥共和國", + "TG": "多哥", "TH": "泰國", "TJ": "塔吉克", "TK": "托克勞群島", 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 6854b269e6cc6..cbdca192b09ae 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,50 +1,31 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { "AE": "阿拉伯聯合酋長國", - "AG": "安提瓜及巴布達", "AW": "阿魯巴", "AZ": "阿塞拜疆", "BA": "波斯尼亞和黑塞哥維那", - "BB": "巴巴多斯", - "BJ": "貝寧", - "BL": "聖巴泰勒米", "BW": "博茨瓦納", "CD": "剛果 - 金夏沙", "CG": "剛果 - 布拉薩", - "CI": "科特迪瓦", "CR": "哥斯達黎加", - "CV": "佛得角", "CY": "塞浦路斯", "ER": "厄立特里亞", "ET": "埃塞俄比亞", - "GA": "加蓬", "GD": "格林納達", "GE": "格魯吉亞", - "GM": "岡比亞", - "GS": "南佐治亞島與南桑威奇群島", "GT": "危地馬拉", - "HN": "洪都拉斯", - "IM": "英屬地曼島", "IT": "意大利", "KE": "肯雅", "KM": "科摩羅", - "KN": "聖基茨和尼維斯", - "LC": "聖盧西亞", "LI": "列支敦士登", - "LR": "利比里亞", "LS": "萊索托", "ME": "黑山", - "ML": "馬里", - "MR": "毛里塔尼亞", - "MS": "蒙塞拉特島", "MU": "毛里裘斯", "MV": "馬爾代夫", "MZ": "莫桑比克", - "NC": "新喀里多尼亞", "NE": "尼日爾", "NG": "尼日利亞", - "OM": "阿曼", "PG": "巴布亞新幾內亞", "PN": "皮特凱恩島", "QA": "卡塔爾", @@ -53,21 +34,14 @@ "SB": "所羅門群島", "SC": "塞舌爾", "SI": "斯洛文尼亞", - "SJ": "斯瓦爾巴群島及揚馬延島", + "SJ": "斯瓦爾巴特群島及揚馬延島", "SL": "塞拉利昂", - "SO": "索馬里", - "SR": "蘇里南", - "ST": "聖多美普林西比", "SZ": "斯威士蘭", "TC": "特克斯和凱科斯群島", - "TD": "乍得", "TF": "法屬南部地區", "TO": "湯加", - "TT": "千里達和多巴哥", "TV": "圖瓦盧", "TZ": "坦桑尼亞", - "VA": "梵蒂岡宮城", - "VC": "聖文森特和格林納丁斯", "VU": "瓦努阿圖", "ZM": "贊比亞" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_SG.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_SG.json deleted file mode 100644 index beef6101ffeda..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_SG.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "ME": "黑山", - "PM": "圣皮埃尔和密克隆" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zu.json b/src/Symfony/Component/Intl/Resources/data/regions/zu.json index 85b089b693d54..6a8cbc4f1efcf 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.8.18", + "Version": "2.1.10.93", "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 2b1b2aa4463e6..87c5a16133569 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.8.9", + "Version": "2.1.12.94", "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 c274de281d99f..3412b102c6280 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.8.9", + "Version": "2.1.12.94", "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 7ba9be2148125..e407345e22196 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "العربية", "Armn": "الأرمينية", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az.json b/src/Symfony/Component/Intl/Resources/data/scripts/az.json index 527caac793579..2daa9e49d51cb 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.8.9", + "Version": "2.1.12.94", "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 new file mode 100644 index 0000000000000..d1c6ce313c9aa --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json @@ -0,0 +1,6 @@ +{ + "Version": "2.1.10.34", + "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 8b7da2dc35c1f..d54ac49d13a8c 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.7.39", + "Version": "2.1.10.93", "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 83d8b09c3ff36..48f718fce3461 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.8.9", + "Version": "2.1.12.94", "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 bf3ec2c1a347c..4df1f8345702b 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "আরবি", "Armi": "আরমি", @@ -41,7 +41,7 @@ "Hani": "হ্যান", "Hano": "হ্যানুনু", "Hans": "সরলীকৃত", - "Hant": "প্রথাগত", + "Hant": "ঐতিহ্যবাহী", "Hebr": "হিব্রু", "Hira": "হিরাগানা", "Hmng": "ফাহাও মঙ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/scripts/bn_IN.json deleted file mode 100644 index 27e8052dd0240..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bn_IN.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Hant": "ঐতিহ্যবাহী" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/br.json b/src/Symfony/Component/Intl/Resources/data/scripts/br.json index e236745b2c2e7..1fe33e9e7daaf 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/br.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.7.39", + "Version": "2.1.10.93", "Names": { "Arab": "arabek", "Armi": "arameek impalaerel", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index 8606733e6ab93..7489c86d410af 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.8.9", + "Version": "2.1.13.46", "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 d21119eda102f..2479d953ae88b 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.8.9", + "Version": "2.1.12.94", "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 f0571394042be..d413c48dc603e 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "afaka", "Arab": "àrab", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json index 5df4a05ad9fa9..3810e47acaa8a 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.8.9", + "Version": "2.1.12.94", "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 4e4d42f76793e..893ba3d9a0298 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.7.80", + "Version": "2.1.10.93", "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 8c291d308788c..c955d9d19d64c 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.9.62", + "Version": "2.1.12.94", "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 0dd31c6307124..acecaf3e23c4b 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.8.9", + "Version": "2.1.13.4", "Names": { "Afak": "Afaka", "Aghb": "Kaukasisch-Albanisch", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json index 083b8b8ab6881..2ec2dd8c2540e 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.8.9", + "Version": "2.1.12.94", "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 111dac68f41ea..10f9119f8cf71 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.8.9", + "Version": "2.1.12.94", "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 e5430c09c79df..436f39131a4b7 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.8.87", + "Version": "2.1.13.48", "Names": { "Afak": "Afaka", "Aghb": "Caucasian Albanian", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json deleted file mode 100644 index a311f2890c5fa..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_AU.json +++ /dev/null @@ -1,10 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Cham": "Cham", - "Loma": "Loma", - "Modi": "Modi", - "Moon": "Moon", - "Thai": "Thai" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json deleted file mode 100644 index 6a477ecebfb57..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_GB.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Thai": "Thai" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es.json b/src/Symfony/Component/Intl/Resources/data/scripts/es.json index 1721daf117bcb..beb741c678f05 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.8.9", + "Version": "2.1.13.21", "Names": { "Arab": "árabe", "Armn": "armenio", @@ -91,7 +91,7 @@ "Saur": "saurashtra", "Sgnw": "SignWriting", "Shaw": "shaviano", - "Sinh": "singalés", + "Sinh": "cingalés", "Sund": "sundanés", "Sylo": "syloti nagri", "Syrc": "siriaco", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json deleted file mode 100644 index 56bf5a4c0c30e..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Laoo": "laosiano", - "Mlym": "malayalam", - "Sinh": "sinhala" - } -} 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 62e76602e29a5..d0f88258cf3c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json @@ -1,10 +1,6 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { - "Hans": "han simplificado", - "Hant": "han tradicional", - "Laoo": "lao", - "Sinh": "cingalés", "Telu": "telugú" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index 6dfaa51769466..faf6903061dc3 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "araabia", "Armn": "armeenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json index 6b7ce2f5fbbbc..8d9f6767baff4 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.8.9", + "Version": "2.1.12.94", "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 03d32356f43f8..5807c5dc792a7 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.8.9", + "Version": "2.1.12.94", "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 169c68ef7f613..24f2c6d3161ff 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.6.69", + "Version": "2.1.12.17", "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 020ead15564b3..02555005c7d16 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.8.9", + "Version": "2.1.13.33", "Names": { "Afak": "afaka", "Aghb": "kaukasianalbanialainen", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json index febd0164b422d..c868a1764b903 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.7.53", + "Version": "2.1.12.27", "Names": { "Latn": "latinske" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json index d97865177bfb2..f6e4265a60a89 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.8.9", + "Version": "2.1.13.46", "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 8f92fb93aac22..450b811b60f5e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json @@ -1,12 +1,7 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "Deva": "devanagari", - "Gujr": "gujarati", - "Hans": "idéogrammes han simplifiés", - "Hant": "idéogrammes han traditionnels", - "Mlym": "malayâlam", - "Orya": "oriyâ", - "Sinh": "cingalais" + "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 8737787b21e7c..caaabc05d799a 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.7.53", + "Version": "2.1.10.93", "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 7002597a4fe44..596fe954e5db9 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "Arabach", "Armn": "Airméanach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index 5623631c255d1..2c61ee1456efa 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.8.9", + "Version": "2.1.12.94", "Names": { "Aghb": "Albàinis Chabhcasach", "Arab": "Arabais", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index 661f56657da93..7d9969f15ca39 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.8.9", + "Version": "2.1.12.94", "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 bc65d3fddef1e..a864abbf70f1c 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.8.9", + "Version": "2.1.12.94", "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 03f712dca686a..dbc8e7b4c6e2f 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.8.9", + "Version": "2.1.12.94", "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 64d87ce8610fa..17421e8614604 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.8.9", + "Version": "2.1.12.94", "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 48de4fdad1a28..e90f92f0e8f30 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.8.9", + "Version": "2.1.12.94", "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 760308f0e974c..c099ba954e90a 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.8.9", + "Version": "2.1.12.94", "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 7b2fb94c0d984..f9c0ee80ecc1a 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.8.9", + "Version": "2.1.12.94", "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 4cd37ab3fe2a7..a420238ad1c18 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/in.json b/src/Symfony/Component/Intl/Resources/data/scripts/in.json index 4cd37ab3fe2a7..a420238ad1c18 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.8.9", + "Version": "2.1.12.94", "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 62f52b0f6654f..d490dd13fd9f9 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.8.9", + "Version": "2.1.12.94", "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 b5496e65c7767..89d94ea6827be 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.8.32", + "Version": "2.1.13.6", "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 03f712dca686a..dbc8e7b4c6e2f 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.8.9", + "Version": "2.1.12.94", "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 2d5f736185f5a..b729457a7211d 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.8.9", + "Version": "2.1.12.94", "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 1ad70c0fc652d..e55916fe680e3 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.8.95", + "Version": "2.1.13.22", "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 8cf14f56840b5..fdb5f639000a6 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.8.9", + "Version": "2.1.12.94", "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 4d1c1efea3813..5b8fcc3ff706b 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.8.9", + "Version": "2.1.13.51", "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 0bcadbfa1ad34..8e5d1b3effa41 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.8.9", + "Version": "2.1.13.51", "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 0292766d4875f..4e7dc5333f3a7 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.9.31", + "Version": "2.1.12.94", "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 4df9494fb0210..c369058b4f119 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.8.9", + "Version": "2.1.12.94", "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 db35a5c68ca3b..23080f9962618 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.8.9", + "Version": "2.1.12.94", "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 400d784e8bcb7..d653d1a3ea29d 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.8.9", + "Version": "2.1.12.94", "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 be77313477a7f..ef62776d43757 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.8.9", + "Version": "2.1.12.94", "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 ce0c6059e1c0f..046aa75b83910 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.8.9", + "Version": "2.1.13.46", "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 d2c21c8382434..b0a1cb7579444 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.8.9", + "Version": "2.1.12.94", "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 dc12f18a96a45..38fb3b1b025e3 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.7.12", + "Version": "2.1.12.90", "Scripts": [ "Afak", "Aghb", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json index d575da021d6c8..f639a3f2b6a73 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.8.9", + "Version": "2.1.12.94", "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 aa8c6434a6655..1a8bd2fdbd344 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.8.9", + "Version": "2.1.12.94", "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 c0961e527054d..b932540e571fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "араб", "Armn": "армен", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index dc55c58347faf..e0f515d355ae4 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.8.9", + "Version": "2.1.12.94", "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 160d209d53ed6..de0889c1d49b7 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.8.9", + "Version": "2.1.12.94", "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 9fb450261ccdf..e6b7267537311 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.8.22", + "Version": "2.1.10.93", "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 4b927e32e8a59..555c02cf1b5f1 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.8.9", + "Version": "2.1.13.21", "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 be0ceda53aa6b..97882ddf9d64c 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "afaka", "Arab": "arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json index 84291d02df12a..545f9dbf3be3a 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.8.95", + "Version": "2.1.12.94", "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 fb1b9e8e944aa..afa738203694f 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "Defaka", "Aghb": "Kaukasisch Albanees", @@ -71,9 +71,9 @@ "Kthi": "Kaithi", "Lana": "Lanna", "Laoo": "Laotiaans", - "Latf": "Gotisch Latijn", - "Latg": "Gaelisch Latijn", - "Latn": "Latijn", + "Latf": "Gotisch Latijns", + "Latg": "Gaelisch Latijns", + "Latn": "Latijns", "Lepc": "Lepcha", "Limb": "Limbu", "Lina": "Lineair A", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json index a0b20ad7c4399..6d2513d5d3a53 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.7.72", + "Version": "2.1.10.42", "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 be0ceda53aa6b..97882ddf9d64c 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "afaka", "Arab": "arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/om.json b/src/Symfony/Component/Intl/Resources/data/scripts/om.json index 2e51f754cec4c..80d867a2e5f3f 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.6.69", + "Version": "2.1.10.42", "Names": { "Latn": "Latin" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/os.json b/src/Symfony/Component/Intl/Resources/data/scripts/os.json index b9323af2ffc71..e7974f199010f 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.7.53", + "Version": "2.1.10.93", "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 ae81e74255e7b..f51aebad30f40 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "ਅਰਬੀ", "Armn": "ਅਰਮੀਨੀਆਈ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json index 6302e7e622147..164100b6dd074 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.8.95", + "Version": "2.1.12.94", "Names": { "Arab": "arabskie", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index 0e47c037d7cb3..04f5001ea0259 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "árabe", "Armi": "armi", @@ -66,8 +66,8 @@ "Latn": "latim", "Lepc": "lepcha", "Limb": "limbu", - "Lina": "A linear", - "Linb": "B linear", + "Lina": "linear A", + "Linb": "linear B", "Lisu": "lisu", "Lyci": "lício", "Lydi": "lídio", 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 e5fdd07ffbd68..f9d5f030b44ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json @@ -1,20 +1,14 @@ { - "Version": "2.1.8.19", + "Version": "2.1.13.23", "Names": { "Armn": "arménio", - "Blis": "símbolos Bliss", "Egyd": "egípcio demótico", "Egyh": "egípcio hierático", "Gujr": "guzerate", - "Hans": "han simplificado", - "Hant": "han tradicional", "Inds": "indus", - "Lina": "linear A", - "Linb": "linear B", "Sylo": "siloti nagri", "Tale": "tai le", "Telu": "telugu", - "Xsux": "cuneiforme sumero-acadiano", "Zsym": "símbolos", "Zxxx": "não escrito" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json index 873bfa4b781d9..46dd640b45e23 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.8.9", + "Version": "2.1.12.94", "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 eb2aeef875dc6..f83997c7b2d51 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.8.9", + "Version": "2.1.12.94", "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 2b092906d25f2..72c154f3cfa61 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json @@ -1,159 +1,159 @@ { - "Version": "2.1.8.9", + "Version": "2.1.13.53", "Names": { "Afak": "афака", "Arab": "арабица", - "Armi": "Арамейская", + "Armi": "арамейская", "Armn": "армянская", - "Avst": "Авестийская", - "Bali": "Балийская", + "Avst": "авестийская", + "Bali": "балийская", "Bamu": "бамум", "Bass": "басса (вах)", - "Batk": "Батакская", + "Batk": "батакская", "Beng": "бенгальская", - "Blis": "Блиссимволика", + "Blis": "блиссимволика", "Bopo": "бопомофо", - "Brah": "Брахми", - "Brai": "Брайля", - "Bugi": "Бугинизийская", - "Buhd": "Бухид", - "Cakm": "Чакмийская", - "Cans": "Канадское слоговое письмо", - "Cari": "Карийская", - "Cham": "Чамская", - "Cher": "Чероки", - "Cirt": "Кирт", - "Copt": "Коптская", - "Cprt": "Кипрская", + "Brah": "брахми", + "Brai": "брайля", + "Bugi": "бугинизийская", + "Buhd": "бухид", + "Cakm": "чакмийская", + "Cans": "канадское слоговое письмо", + "Cari": "карийская", + "Cham": "чамская", + "Cher": "чероки", + "Cirt": "кирт", + "Copt": "коптская", + "Cprt": "кипрская", "Cyrl": "кириллица", - "Cyrs": "Старославянская", + "Cyrs": "старославянская", "Deva": "деванагари", - "Dsrt": "Дезерет", + "Dsrt": "дезерет", "Dupl": "дуплоянская скоропись", - "Egyd": "Египетская демотическая", - "Egyh": "Египетская иератическая", - "Egyp": "Египетская иероглифическая", + "Egyd": "египетская демотическая", + "Egyh": "египетская иератическая", + "Egyp": "египетская иероглифическая", "Ethi": "эфиопская", - "Geok": "Грузинская хуцури", + "Geok": "грузинская хуцури", "Geor": "грузинская", - "Glag": "Глаголица", - "Goth": "Готская", + "Glag": "глаголица", + "Goth": "готская", "Gran": "грантха", "Grek": "греческая", "Gujr": "гуджарати", "Guru": "гурмукхи", "Hang": "хангыль", "Hani": "китайская", - "Hano": "Хануну", + "Hano": "хануну", "Hans": "упрощенная китайская", "Hant": "традиционная китайская", "Hebr": "иврит", "Hira": "хирагана", "Hluw": "лувийские иероглифы", - "Hmng": "Пахау хмонг", - "Hrkt": "Катакана или хирагана", - "Hung": "Старовенгерская", - "Inds": "Хараппская (письменность долины Инда)", - "Ital": "Староитальянская", - "Java": "Яванская", + "Hmng": "пахау хмонг", + "Hrkt": "катакана или хирагана", + "Hung": "старовенгерская", + "Inds": "хараппская (письменность долины Инда)", + "Ital": "староитальянская", + "Java": "яванская", "Jpan": "японская", "Jurc": "чжурчжэньская", - "Kali": "Кайа", + "Kali": "кайа", "Kana": "катакана", - "Khar": "Кхароштхи", + "Khar": "кхароштхи", "Khmr": "кхмерская", "Khoj": "ходжики", "Knda": "каннада", "Kore": "корейская", "Kpel": "кпелле", - "Kthi": "Кайтхи", - "Lana": "Ланна", + "Kthi": "кайтхи", + "Lana": "ланна", "Laoo": "лаосская", - "Latf": "Латинская фрактура", - "Latg": "Гэльская латинская", + "Latf": "латинская фрактура", + "Latg": "гэльская латинская", "Latn": "латиница", - "Lepc": "Лепха", - "Limb": "Лимбу", - "Lina": "Линейное письмо А", - "Linb": "Линейное письмо Б", + "Lepc": "лепха", + "Limb": "лимбу", + "Lina": "линейное письмо А", + "Linb": "линейное письмо Б", "Lisu": "лису", "Loma": "лома", - "Lyci": "Лициан", - "Lydi": "Лидийская", - "Mand": "Мандейская", - "Mani": "Манихейская", - "Maya": "Майя", + "Lyci": "лициан", + "Lydi": "лидийская", + "Mand": "мандейская", + "Mani": "манихейская", + "Maya": "майя", "Mend": "менде", "Merc": "мероитская курсивная", - "Mero": "Мероитская", + "Mero": "мероитская", "Mlym": "малаяльская", "Mong": "монгольская", - "Moon": "Азбука Муна", + "Moon": "азбука муна", "Mroo": "мро", - "Mtei": "Манипури", + "Mtei": "манипури", "Mymr": "мьянманская", "Narb": "северноаравийское", "Nbat": "набатейская", "Nkgb": "наси геба", - "Nkoo": "Нко", + "Nkoo": "нко", "Nshu": "нюй-шу", - "Ogam": "Огамическая", - "Olck": "Ол Чики", - "Orkh": "Орхоно-енисейская", + "Ogam": "огамическая", + "Olck": "ол чики", + "Orkh": "орхоно-енисейская", "Orya": "ория", - "Osma": "Османская", + "Osma": "османская", "Palm": "пальмиры", - "Perm": "Древнепермская", - "Phag": "Пагспа", + "Perm": "древнепермская", + "Phag": "пагспа", "Phli": "пехлевийская", "Phlp": "пахлави псалтирная", - "Phlv": "Пахлави книжная", - "Phnx": "Финикийская", - "Plrd": "Поллардовская фонетика", + "Phlv": "пахлави книжная", + "Phnx": "финикийская", + "Plrd": "поллардовская фонетика", "Prti": "парфянская", - "Rjng": "Реджангская", - "Roro": "Ронго-ронго", - "Runr": "Руническая", - "Samr": "Самаритянская", - "Sara": "Сарати", + "Rjng": "реджангская", + "Roro": "ронго-ронго", + "Runr": "руническая", + "Samr": "самаритянская", + "Sara": "сарати", "Sarb": "староюжноарабская", - "Saur": "Саураштра", - "Sgnw": "Язык знаков", - "Shaw": "Алфавит Шоу", + "Saur": "саураштра", + "Sgnw": "язык знаков", + "Shaw": "алфавит Шоу", "Shrd": "шарада", "Sind": "кхудавади", "Sinh": "сингальская", "Sora": "сора-сонпенг", - "Sund": "Сунданская", - "Sylo": "Силоти Нагри", - "Syrc": "Сирийская", - "Syre": "Сирийская эстрангело", - "Syrj": "Западносирийская", - "Syrn": "Восточно-сирийская", - "Tagb": "Тагбанва", + "Sund": "сунданская", + "Sylo": "силоти нагри", + "Syrc": "сирийская", + "Syre": "сирийская эстрангело", + "Syrj": "западносирийская", + "Syrn": "восточно-сирийская", + "Tagb": "тагбанва", "Takr": "такри", - "Tale": "Тайский Ле", - "Talu": "Новый Тайский Ле", + "Tale": "тайский ле", + "Talu": "новый тайский ле", "Taml": "тамильская", "Tang": "тангутское меня", "Tavt": "тай-вьет", "Telu": "телугу", - "Teng": "Тенгварская", - "Tfng": "Древнеливийская", - "Tglg": "Тагалог", + "Teng": "тенгварская", + "Tfng": "древнеливийская", + "Tglg": "тагалог", "Thaa": "таана", "Thai": "тайская", "Tibt": "тибетская", "Tirh": "тирхута", - "Ugar": "Угаритская", - "Vaii": "Вайская", - "Visp": "Видимая речь", + "Ugar": "угаритская", + "Vaii": "вайская", + "Visp": "видимая речь", "Wara": "варанг-кшити", "Wole": "волеаи", - "Xpeo": "Староперсидская", - "Xsux": "Шумеро-аккадская клинопись", - "Yiii": "И", - "Zinh": "Унаследованная", + "Xpeo": "староперсидская", + "Xsux": "шумеро-аккадская клинопись", + "Yiii": "и", + "Zinh": "унаследованная", "Zmth": "математические обозначения", "Zsym": "символы", "Zxxx": "бесписьменный", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json index 98d04ce4b70ce..a8993a6976e57 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.8.20", + "Version": "2.1.13.24", "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 a413bb7a2a55e..31917253b0592 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.8.9", + "Version": "2.1.12.94", "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 263ebadaa615a..fd3c508362960 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.8.9", + "Version": "2.1.12.94", "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 8d6626433fc14..bb2c623207272 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.8.9", + "Version": "2.1.12.94", "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 b77034d3170a2..5f3a354a89f78 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.7.39", + "Version": "2.1.10.93", "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 065b0616755ab..78814f92d6735 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.8.9", + "Version": "2.1.12.94", "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 481068548b0cf..32db4a4f722cc 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.8.9", + "Version": "2.1.12.94", "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 98d04ce4b70ce..a8993a6976e57 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.8.20", + "Version": "2.1.13.24", "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 9b0b641e75dd9..9c554b86c6ce5 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "afakiska", "Aghb": "kaukasiska albanska", @@ -88,7 +88,7 @@ "Maya": "mayahieroglyfer", "Mend": "mende", "Merc": "kursiv-meroitiska", - "Mero": "meriotiska", + "Mero": "meroitiska", "Mlym": "malayalam", "Modi": "modiska", "Mong": "mongoliska", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/scripts/sv_FI.json deleted file mode 100644 index 9e822e96b31b8..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sv_FI.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Hrkt": "kana", - "Mero": "meroitiska" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index 9b8f61769ce81..747a8847abac1 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.8.9", + "Version": "2.1.12.94", "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 716da82f1ccc5..e9982ddc9d010 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.8.9", + "Version": "2.1.12.94", "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 cff9c3e2116f8..9e24ad7824470 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "అరబిక్", "Armi": "ఇంపీరియల్ అరామాక్", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/th.json b/src/Symfony/Component/Intl/Resources/data/scripts/th.json index 8287874e15374..260b30089037b 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "อะฟาคา", "Aghb": "แอลเบเนีย คอเคเซีย", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json index 892b96afa208d..893aab8929dd5 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.8.9", + "Version": "2.1.12.94", "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 3e32e09ba5c89..5eb4634f2caa6 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.8.9", + "Version": "2.1.12.94", "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 82697ae76e5bd..e09cc78700546 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json index d5192d2cf27bd..f55f865c14c1a 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.8.9", + "Version": "2.1.12.94", "Names": { "Aghb": "кавказька албанська", "Arab": "арабська", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index 425086f22de2a..4f0a7df502702 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.8.9", + "Version": "2.1.12.94", "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 1851c6286a4fa..bffbac8928975 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.8.9", + "Version": "2.1.12.94", "Names": { "Arab": "Arab", "Armn": "Arman", 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 11c8c6adf666c..777858dc4ac2a 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.7.39", + "Version": "2.1.10.42", "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 575afaa256271..5ac1ece9ef5ea 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "Chữ Afaka", "Arab": "Chữ Ả Rập", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json index c346dcb79b6b5..3788987f2ccc5 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.8.9", + "Version": "2.1.12.94", "Names": { "Afak": "阿法卡文", "Arab": "阿拉伯文", @@ -45,8 +45,8 @@ "Hang": "韩文字", "Hani": "汉字", "Hano": "汉奴罗文", - "Hans": "简体中文", - "Hant": "繁体中文", + "Hans": "简体", + "Hant": "繁体", "Hebr": "希伯来文", "Hira": "平假名", "Hluw": "安那托利亚象形文字", 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 e30a9b15c1f9e..50081016ad4f8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json @@ -1,11 +1,7 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { - "Cyrl": "西里爾語字母", - "Deva": "梵文", - "Hang": "韓文字母", - "Hans": "簡體字", - "Hant": "繁體字", - "Latn": "拉丁字母" + "Cyrl": "西里爾文", + "Deva": "梵文" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_HK.json deleted file mode 100644 index bed211b0e1fd1..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_HK.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Knda": "卡纳塔克文", - "Sinh": "辛哈拉文", - "Thaa": "塔安娜文", - "Zzzz": "未知语系" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_MO.json deleted file mode 100644 index bed211b0e1fd1..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_MO.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Knda": "卡纳塔克文", - "Sinh": "辛哈拉文", - "Thaa": "塔安娜文", - "Zzzz": "未知语系" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_SG.json deleted file mode 100644 index bed211b0e1fd1..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hans_SG.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Knda": "卡纳塔克文", - "Sinh": "辛哈拉文", - "Thaa": "塔安娜文", - "Zzzz": "未知语系" - } -} 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 848c0ffd41949..528e6ac7a6bbb 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.8.95", + "Version": "2.1.12.94", "Names": { "Afak": "阿法卡文字", "Aghb": "高加索阿爾巴尼亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json index e30a9b15c1f9e..50081016ad4f8 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,11 +1,7 @@ { - "Version": "2.1.8.28", + "Version": "2.1.13.23", "Names": { - "Cyrl": "西里爾語字母", - "Deva": "梵文", - "Hang": "韓文字母", - "Hans": "簡體字", - "Hant": "繁體字", - "Latn": "拉丁字母" + "Cyrl": "西里爾文", + "Deva": "梵文" } } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_SG.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_SG.json deleted file mode 100644 index bed211b0e1fd1..0000000000000 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_SG.json +++ /dev/null @@ -1,9 +0,0 @@ -{ - "Version": "2.1.8.19", - "Names": { - "Knda": "卡纳塔克文", - "Sinh": "辛哈拉文", - "Thaa": "塔安娜文", - "Zzzz": "未知语系" - } -} diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json index 4ac70d43597bc..49145b52394cc 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.8.18", + "Version": "2.1.10.93", "Names": { "Arab": "i-Arab", "Armn": "i-Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/svn-info.txt b/src/Symfony/Component/Intl/Resources/data/svn-info.txt index 05c6a59e56e18..d81c6ebcefbf6 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/icu/tags/release-54-rc/source -Revision: 36543 -Author: srl -Date: 2014-09-17T00:34:36.814122Z +URL: http://source.icu-project.org/repos/icu/icu/tags/release-55-1/source +Revision: 37294 +Author: mow +Date: 2015-03-27T17:27:46.562500Z diff --git a/src/Symfony/Component/Intl/Resources/data/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 941339b1270eb..1b2093120559c 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -54.1 +55.1 diff --git a/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php b/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php index 53fd4f7238ea3..80e22aa69bdf2 100644 --- a/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/NumberFormatter/AbstractNumberFormatterTest.php @@ -64,15 +64,15 @@ public function formatCurrencyWithCurrencyStyleProvider() { return array( array(100, 'ALL', 'ALL100'), - array(-100, 'ALL', '(ALL100)'), + array(-100, 'ALL', '-ALL100'), array(1000.12, 'ALL', 'ALL1,000'), array(100, 'JPY', '¥100'), - array(-100, 'JPY', '(¥100)'), + array(-100, 'JPY', '-¥100'), array(1000.12, 'JPY', '¥1,000'), array(100, 'EUR', '€100.00'), - array(-100, 'EUR', '(€100.00)'), + array(-100, 'EUR', '-€100.00'), array(1000.12, 'EUR', '€1,000.12'), ); } @@ -90,7 +90,7 @@ public function formatCurrencyWithCurrencyStyleCostaRicanColonsRoundingProvider( { return array( array(100, 'CRC', 'CRC', '%s100'), - array(-100, 'CRC', 'CRC', '(%s100)'), + array(-100, 'CRC', 'CRC', '-%s100'), array(1000.12, 'CRC', 'CRC', '%s1,000'), ); } @@ -108,7 +108,7 @@ public function formatCurrencyWithCurrencyStyleBrazilianRealRoundingProvider() { return array( array(100, 'BRL', 'R', '%s$100.00'), - array(-100, 'BRL', 'R', '(%s$100.00)'), + array(-100, 'BRL', 'R', '-%s$100.00'), array(1000.12, 'BRL', 'R', '%s$1,000.12'), // Rounding checks @@ -135,7 +135,7 @@ public function formatCurrencyWithCurrencyStyleSwissRoundingProvider() { return array( array(100, 'CHF', 'CHF', '%s100.00'), - array(-100, 'CHF', 'CHF', '(%s100.00)'), + array(-100, 'CHF', 'CHF', '-%s100.00'), array(1000.12, 'CHF', 'CHF', '%s1,000.12'), array('1000.12', 'CHF', 'CHF', '%s1,000.12'), @@ -216,7 +216,7 @@ public function formatTypeInt32WithCurrencyStyleProvider() return array( array($formatter, 1, '¤1.00'), array($formatter, 1.1, '¤1.00'), - array($formatter, 2147483648, '(¤2,147,483,648.00)', $message), + array($formatter, 2147483648, '-¤2,147,483,648.00', $message), array($formatter, -2147483649, '¤2,147,483,647.00', $message), ); } @@ -261,7 +261,7 @@ public function formatTypeInt64WithCurrencyStyleProvider() array($formatter, 1, '¤1.00'), array($formatter, 1.1, '¤1.00'), array($formatter, 2147483648, '¤2,147,483,648.00'), - array($formatter, -2147483649, '(¤2,147,483,649.00)'), + array($formatter, -2147483649, '-¤2,147,483,649.00'), ); } 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