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 7d262fe644..1562071edf 100644 --- a/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php +++ b/src/Symfony/Component/Form/Tests/Extension/Core/DataTransformer/DateTimeToLocalizedStringTransformerTest.php @@ -61,11 +61,13 @@ class DateTimeToLocalizedStringTransformerTest extends DateTimeTestCase array(\IntlDateFormatter::FULL, \IntlDateFormatter::NONE, null, 'Mittwoch, 3. Februar 2010', '2010-02-03 00:00:00 UTC'), array(null, \IntlDateFormatter::SHORT, null, '03.02.2010, 04:05', '2010-02-03 04:05:00 UTC'), array(null, \IntlDateFormatter::MEDIUM, null, '03.02.2010, 04:05:06', '2010-02-03 04:05:06 UTC'), - array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 GMT', '2010-02-03 04:05:06 UTC'), + array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 UTC', '2010-02-03 04:05:06 UTC'), + array(null, \IntlDateFormatter::LONG, null, '03.02.2010, 04:05:06 UTC', '2010-02-03 04:05:06 GMT'), // see below for extra test case for time format FULL array(\IntlDateFormatter::NONE, \IntlDateFormatter::SHORT, null, '04:05', '1970-01-01 04:05:00 UTC'), array(\IntlDateFormatter::NONE, \IntlDateFormatter::MEDIUM, null, '04:05:06', '1970-01-01 04:05:06 UTC'), - array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 GMT', '1970-01-01 04:05:06 UTC'), + array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 UTC', '1970-01-01 04:05:06 GMT'), + array(\IntlDateFormatter::NONE, \IntlDateFormatter::LONG, null, '04:05:06 UTC', '1970-01-01 04:05:06 UTC'), array(null, null, 'yyyy-MM-dd HH:mm:00', '2010-02-03 04:05:00', '2010-02-03 04:05:00 UTC'), array(null, null, 'yyyy-MM-dd HH:mm', '2010-02-03 04:05', '2010-02-03 04:05:00 UTC'), array(null, null, 'yyyy-MM-dd HH', '2010-02-03 04', '2010-02-03 04:00:00 UTC'), @@ -85,6 +87,9 @@ class DateTimeToLocalizedStringTransformerTest extends DateTimeTestCase */ public function testTransform($dateFormat, $timeFormat, $pattern, $output, $input) { + IntlTestHelper::requireFullIntl($this, '59.1'); + \Locale::setDefault('de_AT'); + $transformer = new DateTimeToLocalizedStringTransformer( 'UTC', 'UTC', @@ -101,9 +106,12 @@ class DateTimeToLocalizedStringTransformerTest extends DateTimeTestCase public function testTransformFullTime() { + IntlTestHelper::requireFullIntl($this, '59.1'); + \Locale::setDefault('de_AT'); + $transformer = new DateTimeToLocalizedStringTransformer('UTC', 'UTC', null, \IntlDateFormatter::FULL); - $this->assertEquals('03.02.2010, 04:05:06 GMT', $transformer->transform($this->dateTime)); + $this->assertEquals('03.02.2010, 04:05:06 Koordinierte Weltzeit', $transformer->transform($this->dateTime)); } public function testTransformToDifferentLocale() diff --git a/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php b/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php index 65d22dbe39..5170bb788e 100644 --- a/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php +++ b/src/Symfony/Component/Intl/DateFormatter/DateFormat/TimeZoneTransformer.php @@ -33,10 +33,29 @@ class TimeZoneTransformer extends Transformer throw new NotImplementedException('Time zone different than GMT or UTC is not supported as a formatting output.'); } - // From ICU >= 4.8, the zero offset is not more used, example: GMT instead of GMT+00:00 - $format = (0 !== (int) $dateTime->format('O')) ? '\G\M\TP' : '\G\M\T'; + if ('Etc' === $timeZone) { + // i.e. Etc/GMT+1, Etc/UTC, Etc/Zulu + $timeZone = substr($dateTime->getTimezone()->getName(), 4); + } - return $dateTime->format($format); + // From ICU >= 59.1 GMT and UTC are no longer unified + if (in_array($timeZone, array('UTC', 'UCT', 'Universal', 'Zulu'))) { + // offset is not supported with UTC + return $length > 3 ? 'Coordinated Universal Time' : 'UTC'; + } + + $offset = (int) $dateTime->format('O'); + + // From ICU >= 4.8, the zero offset is no more used, example: GMT instead of GMT+00:00 + if (0 === $offset) { + return $length > 3 ? 'Greenwich Mean Time' : 'GMT'; + } + + if ($length > 3) { + return $dateTime->format('\G\M\TP'); + } + + return sprintf('GMT%s%d', ($offset >= 0 ? '+' : ''), $offset / 100); } /** diff --git a/src/Symfony/Component/Intl/README.md b/src/Symfony/Component/Intl/README.md index 30cb5093c4..806c6275e8 100644 --- a/src/Symfony/Component/Intl/README.md +++ b/src/Symfony/Component/Intl/README.md @@ -15,5 +15,7 @@ Resources * [Report issues](https://github.com/symfony/symfony/issues) and [send Pull Requests](https://github.com/symfony/symfony/pulls) in the [main Symfony repository](https://github.com/symfony/symfony) + * [Docker images with intl support](https://hub.docker.com/r/jakzal/php-intl) + (for the Intl component development) [0]: http://www.php.net/manual/en/intl.setup.php diff --git a/src/Symfony/Component/Intl/Resources/bin/icu.ini b/src/Symfony/Component/Intl/Resources/bin/icu.ini index df78504d51..3b288a55f2 100644 --- a/src/Symfony/Component/Intl/Resources/bin/icu.ini +++ b/src/Symfony/Component/Intl/Resources/bin/icu.ini @@ -14,3 +14,4 @@ 55 = http://source.icu-project.org/repos/icu/icu/tags/release-55-1/source 57 = http://source.icu-project.org/repos/icu/icu/tags/release-57-1/source 58 = http://source.icu-project.org/repos/icu/tags/release-58-2/icu4c/source +59 = http://source.icu-project.org/repos/icu/tags/release-59-1/icu4c/source diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af.json b/src/Symfony/Component/Intl/Resources/data/currencies/af.json index 7123daf3a6..a5badcd67a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -451,7 +451,7 @@ ], "PEN": [ "PEN", - "Peruaanse nuwe sol" + "Peruaanse sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json b/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json index 7f76eeefa7..9dd49f7e6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ak.json b/src/Symfony/Component/Intl/Resources/data/currencies/ak.json index cf259fe2e8..7db0d8786d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/am.json b/src/Symfony/Component/Intl/Resources/data/currencies/am.json index abfaa8b2d5..00d1bdb682 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/am.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -439,7 +439,7 @@ ], "PEN": [ "PEN", - "የፔሩቪያ ኑኤቮ ሶል" + "የፔሩቪያ ሶል" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json index 95e3c98b36..767e81f24f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.86", "Names": { "ADP": [ "ADP", @@ -647,7 +647,7 @@ ], "PEN": [ "PEN", - "سول جديد البيرو" + "سول البيرو" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json index a0cccc6e86..26804e714d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json index 4c3df3603c..75679c039d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json index f7c67d5e72..c5da238b68 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SDG": [ "SDG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json index e47d8f9610..8f25c0e5a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SOS": [ "S", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json index 859b6b198d..a273c2b424 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az.json b/src/Symfony/Component/Intl/Resources/data/currencies/az.json index aeea149027..40b0848681 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/az.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -703,11 +703,11 @@ ], "PEN": [ "PEN", - "Peru Nuevo Solu" + "Peru Solu" ], "PES": [ "PES", - "Peru Solu" + "Peru Solu (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json index a70c089be7..d1b2d1ab8b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.74", "Names": { "AZN": [ "₼", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/be.json b/src/Symfony/Component/Intl/Resources/data/currencies/be.json index 2ff2cb58c7..456d91cf3c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/be.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.66", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "перуанскі новы соль" + "перуанскі соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json index 7f0e91965e..95b0df2e99 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.33.75", "Names": { "ADP": [ "ADP", @@ -687,11 +687,11 @@ ], "PEN": [ "PEN", - "Перуански нов сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json index a87eda05b2..8beb7ec703 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json index 83f4bb6ff4..8772c431ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "পেরুভিয়ান সোল নুয়েভো" + "পেরুভিয়ান সোল" ], "PES": [ "PES", - "পেরুভিয়ান সোল" + "পেরুভিয়ান সোল (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json index 0603c9bdf5..1abadab549 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CNY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json index efe4ce0b22..295efd14eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/br.json b/src/Symfony/Component/Intl/Resources/data/currencies/br.json index ce8e0e5dd5..8b59f8eda1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/br.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "nuevo sol Perou" + "sol Perou" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json index a4a5c21f77..0234bfc205 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -739,7 +739,7 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json index ed5a99d0d4..9adf2177dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.72", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Перуански нуево сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json index 502630f92f..da37dc859f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -772,11 +772,11 @@ ], "PEN": [ "PEN", - "nou sol peruà" + "sol peruà" ], "PES": [ "PES", - "sol peruà" + "sol peruà (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json index 2556405f6e..279ca881cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "FRF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ce.json b/src/Symfony/Component/Intl/Resources/data/currencies/ce.json index a39d9d927d..3ec80c4ce5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "Перун керла соль" + "Перун соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json index 9acce92b21..eeeec5e3c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "peruánský nový sol" + "peruánský sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json index 9139ec372b..acea2745be 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -727,7 +727,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Periw" + "Sol Periw" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/da.json b/src/Symfony/Component/Intl/Resources/data/currencies/da.json index ba210ddb2f..0c2bd45b57 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/da.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -687,15 +687,15 @@ ], "PEI": [ "PEI", - "Peruviansk inti" + "peruviansk inti" ], "PEN": [ "PEN", - "peruviansk nuevo sol" + "peruviansk sol" ], "PES": [ "PES", - "Peruviansk sol (1863–1965)" + "peruviansk sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de.json b/src/Symfony/Component/Intl/Resources/data/currencies/de.json index e7460ec383..59325953aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json index 86916be5d6..1e6a09a7e3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BYN": [ "BYN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json index a6556312c9..6010b24058 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "EUR": [ "EUR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json index 0056e3e61d..56ef080168 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "LUF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/dz.json b/src/Symfony/Component/Intl/Resources/data/currencies/dz.json index 9cc1226728..68e2567bef 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.61", + "Version": "2.1.31.34", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json index 09bbb10f6a..0e557ea726 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -747,11 +747,11 @@ ], "PEN": [ "PEN", - "peruga nuevo sol" + "peruga sol" ], "PES": [ "PES", - "peruga nuevo sol (1863–1965)" + "peruga sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/el.json b/src/Symfony/Component/Intl/Resources/data/currencies/el.json index 21339ee0c3..3c13aa9722 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/el.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -700,11 +700,11 @@ ], "PEN": [ "PEN", - "Νέο Σολ Περού" + "Σολ Περού" ], "PES": [ "PES", - "Σολ Περού" + "Σολ Περού (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en.json b/src/Symfony/Component/Intl/Resources/data/currencies/en.json index 2b92604232..b3c2c319be 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -307,7 +307,7 @@ ], "CZK": [ "CZK", - "Czech Republic Koruna" + "Czech Koruna" ], "DDM": [ "DDM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json index 383bec0dd4..a65efeb65d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_001.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "BYB": [ "BYB", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json index aaa978c699..f0d85c1a9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_150.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json index 90005dac4e..e0a4f41daf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.62", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json index e7504e1987..36f0ae6e69 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BBD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json index c636cfa64e..e93c048d7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BIF": [ "FBu", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json index bfd06409e5..e745ac4ce8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BMD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json index a6f081f1d0..45a39b620b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BSD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json index 79f2b161af..e268bbaecb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.65", + "Version": "2.1.31.33", "Names": { "BWP": [ "P", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json index 24863a34b6..84a46ec1bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_BZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json index 7600970fba..db54b7a898 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "CAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json index db55329e58..6b0d816426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_CX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json index f90fcb13d6..4e545e98c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_DK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_DM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json index 10fb31aab0..35207b7c96 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ER.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json index 204c7daa02..ec0114f740 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_FJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "FJD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json index 882f3755ce..b9e1b291c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_FK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "FKP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json index 67841c1b1e..42a66bda99 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json index 9de2f541c5..e36a8c8e74 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json index bd27482178..f65557c224 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json index 1bb59cb7d2..ee84873589 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GMD": [ "D", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json index 8d52977729..373fbdabd2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_GY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GYD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json index 67841c1b1e..42a66bda99 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_IM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json index 67841c1b1e..42a66bda99 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_JE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json index fa6d0c13b9..6a1f6160a6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_JM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "JMD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json index 710f37837d..a776544b0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json index eae7f2b2fb..2818705738 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_KY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KYD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json index 8cafa65047..15bdbf7b64 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "LRD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json index 19966d0715..1555647857 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_LS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json index cd23e75222..f2d917681f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MGA": [ "Ar", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json index 6f3d5afb53..21d185eb5a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json index 97e7554922..7f302b2b85 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json index 0e9cd08c28..fd95a116b0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MUR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json index 496b75db8a..06040fe524 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MWK": [ "MK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json index fd4998eacf..ff346bdae1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_MY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json index ca517971a7..7de7db3e06 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NAD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NF.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json index b61270d84c..be462c4175 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NGN": [ "₦", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json index 4a64e4e1ff..00831e2d9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json index db55329e58..6b0d816426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json index db55329e58..6b0d816426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_NZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json index 8647b20b3e..e7396608ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PGK": [ "K", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json index 7d1a41586a..8e3c186f84 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PHP": [ "₱", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json index 99c4235a2d..201cebdfdd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PKR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json index db55329e58..6b0d816426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_PN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json index c46230dd4a..bc57edd383 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_RW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json index a344e1cdfd..d2771bb79d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SB.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SBD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json index 3451c07355..d8a1118405 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SCR": [ "SR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json index f15c55cc91..a22f8f6722 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SEK": [ "kr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json index 3145fcec62..2214928f25 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "SGD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json index cdd3dd0902..04744532a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json index 33502fa217..36f870b81c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SL.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SLL": [ "Le", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json index bf7bb3768e..734c386e2d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GBP": [ "GB£", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json index 874938b5fd..9f06b8d6a9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json index 1dbee9b290..433f1d9876 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_SZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SZL": [ "E", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json index db55329e58..6b0d816426 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NZD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json index 5d23a66641..59a09c70d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "TOP": [ "T$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json index 10586b530b..64fea7b6bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "TTD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json index f2a61228e2..e1534fc422 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TV.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AUD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json index af6a02d05c..d78476f68c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_TZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "TZS": [ "TSh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json index c9ad30c2ce..db7243d7da 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_UG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "UGX": [ "USh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json index 32edaa85a2..f551a2dd31 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_VC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XCD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json index 4a64e4e1ff..00831e2d9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_VU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json index a551f913ed..f74a36f66a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_WS.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "WST": [ "WS$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json index 95791ea6a4..1555647857 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.64", + "Version": "2.1.31.33", "Names": { "ZAR": [ "R", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json index b18306f345..a878011396 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/en_ZM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ZMW": [ "K", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es.json b/src/Symfony/Component/Intl/Resources/data/currencies/es.json index 818b43ec87..c036a3122e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.80", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,7 +707,7 @@ ], "PEN": [ "PEN", - "nuevo sol peruano" + "sol peruano" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json index 680c2b6882..7f5346037b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AMD": [ "AMD", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json index d36c2b64fe..e049111ee8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_AR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ARS": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json index 657c269e1b..34d7187674 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BOB": [ "Bs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json index 8159520375..fed2a133aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json new file mode 100644 index 0000000000..b228fddd8e --- /dev/null +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_BZ.json @@ -0,0 +1,9 @@ +{ + "Version": "2.1.32.37", + "Names": { + "BZD": [ + "$", + "dólar beliceño" + ] + } +} diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json index cd6c1a9dd6..25bac0c3b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CL.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CLP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json index 0bf0dc8b13..399a5cf828 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "COP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json index d5ab35788c..6b94c74045 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CRC": [ "₡", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json index 0bfa8154ce..2aa410eba4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_CU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CUP": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json index a871eab0ff..fce925ac29 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_DO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "DOP": [ "RD$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json index b61fca480d..6ec4e485e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json index 214a1a95e2..dd83bf9ed9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_GQ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "XAF": [ "FCFA", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json index 95288e4eba..d14b522bbe 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_GT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "GTQ": [ "Q", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json index 6d244ad41b..490f43ba0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_HN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "HNL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json index 8c891fef63..fff01fa78f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "AFN": [ "Af", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json index a498dc3b70..66a430c937 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_NI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "NIO": [ "C$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json index c982a720f7..45dbe193b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "PAB": [ "B\/.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json index 784c706704..14748ada17 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PE.json @@ -1,9 +1,9 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "PEN": [ "S\/", - "nuevo sol peruano" + "sol peruano" ] } } diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json index c0c06e8a6a..e1484871ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PHP": [ "₱", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json index b61fca480d..6ec4e485e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json index 4e955dda8a..cae8b320d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_PY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "PYG": [ "Gs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json index b61fca480d..6ec4e485e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_SV.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json index 44a2947238..8bf94dfbd9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.74", "Names": { "JPY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json index a68a3e7518..e4d2adba7d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_UY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "USD": [ "US$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json index 76b744670c..21f914112f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/es_VE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "VEF": [ "Bs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/et.json b/src/Symfony/Component/Intl/Resources/data/currencies/et.json index 4b68ffc348..5199aad542 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/et.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -700,7 +700,7 @@ ], "PEN": [ "PEN", - "Peruu uus soll" + "Peruu soll" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json index 1b1bad29ff..6260d253f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -440,7 +440,7 @@ ], "PEN": [ "PEN", - "Peruko sol berria" + "Peruko sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json index 65cdaee88b..4223aef956 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json index 64b372dee9..08ed65d1c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fa_AF.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.33", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff.json index ae3107455f..af67b59ab8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json index 5bcca9826b..fa181650fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_GN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GNF": [ "FG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json index 1785988ce2..df8b8a6c13 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ff_MR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MRO": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json index c7c146fd88..9a5ffdd13c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.88", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Perun uusi sol" + "Perun sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json index 3cb3fd5948..4aebc13239 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -423,7 +423,7 @@ ], "PEN": [ "PEN", - "Peru nuevo sol" + "Peru sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json b/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json index ae82859e2e..d5222d47ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fo_DK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr.json index 3980147704..8ccd773a90 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -711,11 +711,11 @@ ], "PEN": [ "PEN", - "nouveau sol péruvien" + "sol péruvien" ], "PES": [ "PES", - "sol péruvien" + "sol péruvien (1863–1985)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json index 071b4a82fc..a3b074bead 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_BI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BIF": [ "FBu", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json index b2c2b3289c..57356f7688 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ARS": [ "ARS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json index 9989b8adde..ea857694c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_CD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CDF": [ "FC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json index 658bdb8f0f..e61ac0a6bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json index 2a15feebe8..8a5a3b5308 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_DZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DZD": [ "DA", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json index 07766e28c9..cc3ce23bc2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_GN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GNF": [ "FG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json index f8ce809cbe..27b11c70d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_HT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.63", + "Version": "2.1.31.33", "Names": { "HTG": [ "G", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json index 9658d53518..989f5fc5fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_KM.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KMF": [ "CF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json index 0fe75282c4..ccde779b86 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_LU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "FRF": [ "FRF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json index bc36db8a9b..e71b0d0f4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MGA": [ "Ar", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json index 289e33d74e..39f160e3d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MRO": [ "UM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json index 3010d330bd..4dd8ce2338 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_MU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MUR": [ "Rs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json index bc47b9562b..ee80ae5959 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_RW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json index 4f82e936f1..6baded7d7b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SCR": [ "SR", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json index dcd413fa7f..572b54cf28 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_SY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SYP": [ "LS", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json index bc09e05a93..13fa79823f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_TN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "TND": [ "DT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json b/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json index 51570db5c2..6cd2817754 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fr_VU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "VUV": [ "VT", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json index 53b58a2743..814eae20ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -759,11 +759,11 @@ ], "PEN": [ "PEN", - "Peruaanske nieuwe sol" + "Peruaanske sol" ], "PES": [ "PES", - "Peruaanske sol" + "Peruaanske sol (1863–1985)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json index 224c9386cf..0a0604f64e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -739,7 +739,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Pheiriú" + "Sol Pheiriú" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json index 27d857091a..0cbb37c07e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Sol ùr Pearùthach" + "Sol Pearùthach" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json index 5512ab882c..95a14f8d1f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json index 507810727d..b1cd2f1d7d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "પેરુવિયન ન્યુવો સોલ" + "પેરુવિયન સોલ" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json index e09a54b5d3..47f4ace5de 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json b/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json index 8bebcc500b..f00bc8de4a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ha_GH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GHS": [ "GH₵", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/he.json b/src/Symfony/Component/Intl/Resources/data/currencies/he.json index 114ae41592..d96cdde587 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/he.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -575,7 +575,7 @@ ], "PEN": [ "PEN", - "סול פרואני חדש" + "סול פרואני" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json index 9675026e72..507cdf5b59 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -471,7 +471,7 @@ ], "PEN": [ "PEN", - "पेरूवियन नुएवो सोल" + "पेरूवियन सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json index b96209e5f9..e43dbcc250 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "peruanski novi sol" + "peruanski sol" ], "PES": [ "PES", - "peruanski sol" + "peruanski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json b/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json index 488f91f824..cc041904ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hr_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BAM": [ "KM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json index ca40323ac2..1924a821a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -703,15 +703,15 @@ ], "PEI": [ "PEI", - "Perui inti" + "perui inti" ], "PEN": [ "PEN", - "perui sol nuevo" + "perui sol" ], "PES": [ "PES", - "Perui sol" + "perui sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json index d3adee83c0..0658e8cb13 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Պերուի նոր սոլ" + "Պերուի սոլ" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/id.json b/src/Symfony/Component/Intl/Resources/data/currencies/id.json index ff47301b34..0fd799627f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/id.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -771,7 +771,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json index 39575432be..8565262ae5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "CVE": [ "CVE", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json index af456c3fc4..44a5dc1659 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CNY": [ "¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/in.json b/src/Symfony/Component/Intl/Resources/data/currencies/in.json index ff47301b34..0fd799627f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/in.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -771,7 +771,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/is.json b/src/Symfony/Component/Intl/Resources/data/currencies/is.json index bd89c39e51..d508caa339 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/is.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.65", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/it.json b/src/Symfony/Component/Intl/Resources/data/currencies/it.json index a5fda55f9e..07547f98eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/it.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -692,11 +692,11 @@ ], "PEN": [ "PEN", - "nuovo sol peruviano" + "sol peruviano" ], "PES": [ "PES", - "sol peruviano" + "sol peruviano (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json index 114ae41592..d96cdde587 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -575,7 +575,7 @@ ], "PEN": [ "PEN", - "סול פרואני חדש" + "סול פרואני" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json index 2fc36a74c8..8079fc9d28 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "ペルー 新ソル" + "ペルー ソル" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json index 4c54c0bd40..ff5185ea8c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -639,11 +639,11 @@ ], "PEN": [ "PEN", - "პერუს ახალი სოლი" + "პერუს სოლი" ], "PES": [ "PES", - "პერუს სოლი" + "პერუს სოლი (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json index ac99bdc302..c30ee2c6d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json index dfd63ff8ce..392aed6921 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Перу жаңа солі" + "Перу солі" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json index d52d7254eb..b50c7c2c06 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.34", "Names": { "DKK": [ "kr.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/km.json b/src/Symfony/Component/Intl/Resources/data/currencies/km.json index 1a9778b6f1..2efd8e0631 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/km.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.74", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json index 435d3a9ad9..b2bcaf4d83 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "ಪೆರುವಿಯನ್ ನುಯೆವೊ ಸೊಲ್" + "ಪೆರುವಿಯನ್ ಸೊಲ್" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json index 106809aef5..4f5ba3c902 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -751,11 +751,11 @@ ], "PEN": [ "PEN", - "페루 누에보 솔" + "페루 솔" ], "PES": [ "PES", - "페루 솔" + "페루 솔 (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json index 4d09d7e273..d93978851d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -643,11 +643,11 @@ ], "PEN": [ "PEN", - "پٔریوٗوِیَن نیوٗاوز سولٕز" + "پٔریوٗوِیَن سولٕز" ], "PES": [ "PES", - "پٔریوٗوِیَن سول" + "پٔریوٗوِیَن سول (۱۸۶۳–۱۹۶۵)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json index 6b8b302942..e0f56f2ef2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "перу нуэво солу" + "перу солу" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json index 80795b95a1..1b0344cbd9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "Peruaneschen Neie Sol" + "Peruaneschen Sol" ], "PES": [ "PES", - "Peruanesche Sol (1863–1965)" + "Peruaneschen Sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json index b7e1b87d7d..efbf806e6b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json index 5c353313e5..e9dbc189f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.74", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json b/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json index 506f805620..ed012a2e85 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ln_AO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AOA": [ "Kz", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json index e1c88cd575..b6fa542783 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -759,7 +759,7 @@ ], "PEN": [ "PEN", - "ເປ​ຣູ​ວຽນ ນູ​ໂວ ໂຊ​ລ໌" + "ເປ​ຣູ​ວຽນ ໂຊ​ລ໌" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json index 410c93029b..fd9fcc8606 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "Peru naujasis solis" + "Peru solis" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json index 1218f8250d..7018ccecaa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json index 33f5bdb022..55de57f6a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -311,7 +311,7 @@ ], "ISK": [ "ISK", - "Īslandes krona" + "Islandes krona" ], "ITL": [ "ITL", @@ -519,7 +519,7 @@ ], "PEN": [ "PEN", - "Peru jaunais sols" + "Peru sols" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json index c2e67c6ad9..4fd187f90c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.58", + "Version": "2.1.32.59", "Currencies": [ "ADP", "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json index 492db6cdb7..6d4e36f014 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json index 7d6233fdc2..de5c698c63 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -583,11 +583,11 @@ ], "PEN": [ "PEN", - "Перуански нов сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json index eb7dbdb3b0..e223352aef 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "പെറുവിയൻ ന്യൂവോ സോൾ" + "പെറുവിയൻ സോൾ" ], "PES": [ "PES", - "പെറൂവിയൻ സോൾ" + "പെറൂവിയൻ സോൾ (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json index 7276cfe7a1..39f345dfe3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "перугийн невосоль" + "перугийн соль" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json index 115ae26c95..dd1765b4d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json index 3508c60cd6..66eed58281 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "पेरुवियन नुइव्हो सोल" + "पेरुवियन सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json index 9ef5603a4f..26f8abf917 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json index e4888cca29..3f8055c107 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms_BN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BND": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json index 43167291ea..27ef127fc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ms_SG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SGD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json index 15f9dec491..7c3d3e56b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/my.json b/src/Symfony/Component/Intl/Resources/data/currencies/my.json index 3a734f8df9..ae65ba2142 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/my.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.33.28", "Names": { "AED": [ "AED", @@ -471,7 +471,7 @@ ], "PEN": [ "PEN", - "ပီရူး နူအီဗိုဆိုးလ်" + "ပီရူး ဆိုးလ်" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json index 8629584658..4ce141f94c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,15 +775,15 @@ ], "PEI": [ "PEI", - "peruvianske inti" + "peruanske inti" ], "PEN": [ "PEN", - "peruanske nuevo sol" + "peruanske sol" ], "PES": [ "PES", - "peruvianske sol (1863–1965)" + "peruanske sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json index c0f77d708d..e811c7c72f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.65", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json index 3126b42730..981dc50b15 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "पेरूभियाली न्यूभो सोल" + "पेरूभियाली सोल" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json index bd030b9bff..4576deb6f9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "Peruaanse nieuwe sol" + "Peruaanse sol" ], "PES": [ "PES", - "Peruaanse sol" + "Peruaanse sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json index 4c726ec039..21fa88b966 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_AW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AWG": [ "Afl.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json index 181f0f2639..b1c3e571e1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_BQ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "USD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json index 0fa1277d79..a0c53278f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_CW.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json index 8867f13f22..fb670110bb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "SRD": [ "$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json index 0fa1277d79..a0c53278f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nl_SX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ANG": [ "NAf.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json index 929be73d0d..374e8f87f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -703,11 +703,11 @@ ], "PEN": [ "PEN", - "peruansk nuevo sol" + "peruansk sol" ], "PES": [ "PES", - "peruansk sol" + "peruansk sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/no.json b/src/Symfony/Component/Intl/Resources/data/currencies/no.json index 8629584658..4ce141f94c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/no.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,15 +775,15 @@ ], "PEI": [ "PEI", - "peruvianske inti" + "peruanske inti" ], "PEN": [ "PEN", - "peruanske nuevo sol" + "peruanske sol" ], "PES": [ "PES", - "peruvianske sol (1863–1965)" + "peruanske sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om.json b/src/Symfony/Component/Intl/Resources/data/currencies/om.json index 73a1dd4501..b309246d3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/om.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json index 21ba3e6d40..0a4e2bde6b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/om_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/or.json b/src/Symfony/Component/Intl/Resources/data/currencies/or.json index b7412c4f2f..02638f6d07 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/or.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "INR": [ "₹", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os.json b/src/Symfony/Component/Intl/Resources/data/currencies/os.json index adb9aa7978..3df990a9e2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/os.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json b/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json index 7fe630ad11..948f46351e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/os_RU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GEL": [ "GEL", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pa.json b/src/Symfony/Component/Intl/Resources/data/currencies/pa.json index e825e3f7f4..7db583d5c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -495,7 +495,7 @@ ], "PEN": [ "PEN", - "ਪੇਰੂਵੀਅਨ ਨਿਊਵੋ ਸੋਲ" + "ਪੇਰੂਵੀਅਨ ਸੋਲ" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json index 616d4692f1..4c529eb080 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pa_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "EUR": [ "€", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json index 3c8ccd7fa4..c9de32446a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -683,11 +683,11 @@ ], "PEN": [ "PEN", - "nowy sol peruwiański" + "sol peruwiański" ], "PES": [ "PES", - "sol peruwiański" + "sol peruwiański (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json index 60bb7f06f4..f0ee1e3188 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AFN": [ "؋", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json index 851140363c..59628b9cce 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "Novo sol peruano" + "Sol peruano" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json index 7c4bc51a4d..b90f0928e6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_AO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AOA": [ "Kz", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json index 8b073d6b23..bc3677a863 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_CV.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CVE": [ "​", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json index f725c1758e..22930077f8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_LU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "LUF": [ "F", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json index 42612416d5..46b59e0dfa 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json index 0573e45752..756583cf9c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_MZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MZN": [ "MTn", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json index 335fe3a11b..b8ec8cac3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json index 439bef558d..f06bdee5b0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/pt_ST.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "STD": [ "Db", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json index 84b814eb75..313a70bef9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "PEN": [ "S\/", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json index bc2d907dd7..51f06f135b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BOB": [ "Bs", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json index 2d1b810504..53315a63ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/qu_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PEN": [ "PEN", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json index 88d5ca726e..c97a076c66 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -771,11 +771,11 @@ ], "PEN": [ "PEN", - "nov sol peruan" + "sol peruan" ], "PES": [ "PES", - "sol peruan" + "sol peruan (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json index a7ea2cf6f6..a1d4191fca 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json index b855540f34..cb66bd7400 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -615,7 +615,7 @@ ], "PEN": [ "PEN", - "sol nou peruvian" + "sol peruvian" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json index 115ae26c95..dd1765b4d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ro_MD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/root.json b/src/Symfony/Component/Intl/Resources/data/currencies/root.json index 3926cb92c3..fcc2c67db3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/root.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/root.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.58", + "Version": "2.1.32.59", "Names": { "AUD": [ "A$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru.json index 7a7df0ab6e..68a7a2b20c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "Перуанский новый соль" + "Перуанский соль" ], "PES": [ "PES", - "Перуанский соль" + "Перуанский соль (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json index 65b017c682..891d7d5080 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_BY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.5", + "Version": "2.1.31.33", "Names": { "BYN": [ "Br", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json index 54e54e7417..a02f9ad4ab 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KGS": [ "сом", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json index 5d720118ef..c717725d44 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_KZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KZT": [ "₸", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json b/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json index 2cd15cd937..d0defa0197 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ru_MD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MDL": [ "L", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/rw.json b/src/Symfony/Component/Intl/Resources/data/currencies/rw.json index 1b039aa646..90b7f9b8eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "RWF": [ "RF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se.json b/src/Symfony/Component/Intl/Resources/data/currencies/se.json index e06f39421c..5d1c1eced4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/se.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "DKK": [ "Dkr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json b/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json index 0852adfe7f..bc82881d1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/se_SE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "NOK": [ "Nkr", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sg.json b/src/Symfony/Component/Intl/Resources/data/currencies/sg.json index 4c19365614..a9868e816f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json index 87a460f3a1..08b31ed671 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", - "Peruanski sol" + "Peruanski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/si.json b/src/Symfony/Component/Intl/Resources/data/currencies/si.json index 60676655d2..28da55f707 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/si.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.28", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "පේරු නියුවෝ සොල්" + "පේරු සොල්" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json index 2d3ba80641..9e32872103 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -671,11 +671,11 @@ ], "PEN": [ "PEN", - "peruánsky nový sol" + "peruánsky sol" ], "PES": [ "PES", - "Peruvský sol" + "peruánsky sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json index c4acd0c16c..b1dc180e6a 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "perujski novi sol" + "perujski sol" ], "PES": [ "PES", - "perujski sol" + "perujski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json index 97f0c60d98..6ba5d7d14c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so.json b/src/Symfony/Component/Intl/Resources/data/currencies/so.json index 360d5e155d..a07daca215 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.33.76", "Names": { "DJF": [ "DJF", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json index 77cd44900c..5348ddead2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_DJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "DJF": [ "Fdj", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json index ba1429aa05..e4c98ff117 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_ET.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ETB": [ "Br", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json b/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json index b27b577bbe..0a4e2bde6b 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/so_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KES": [ "Ksh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json index 83f075c975..20af1b47a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Sola nuevo-peruane" + "Sola peruane" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json b/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json index 45a167e420..aeb51f3885 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sq_MK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MKD": [ "den", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json index 5186f98d56..4d05621cbb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Перуански нови сол" + "Перуански сол" ], "PES": [ "PES", - "Перуански сол" + "Перуански сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json index 87a460f3a1..08b31ed671 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sr_Latn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "ADP": [ "ADP", @@ -715,11 +715,11 @@ ], "PEN": [ "PEN", - "Peruanski novi sol" + "Peruanski sol" ], "PES": [ "PES", - "Peruanski sol" + "Peruanski sol (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json index 1b00d12e9b..a13537bbee 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "peruansk nuevo sol" + "peruansk sol" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json index 8b89a907fa..5b27b4d61d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.73", "Names": { "AED": [ "AED", @@ -447,7 +447,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol ya Peru" + "Sol ya Peru" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json index 89e99e13b2..3add3fc4c0 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_CD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CDF": [ "FC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json b/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json index 5c4ab4a1d8..4238219379 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/sw_UG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "UGX": [ "USh", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json index fc6ee675ea..17fc215384 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.4", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json index efd56a650e..54b5d567dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_LK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "LKR": [ "Rs.", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json index 979a587ed5..f8f9a3bd1f 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_MY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json index f77daea527..1ac4693ff3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ta_SG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MYR": [ "RM", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/te.json b/src/Symfony/Component/Intl/Resources/data/currencies/te.json index 422b85c0ea..3578cc5f66 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/te.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -435,7 +435,7 @@ ], "PEN": [ "PEN", - "పెరువియన్ న్యూవో సోల్" + "పెరువియన్ సోల్" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/th.json b/src/Symfony/Component/Intl/Resources/data/currencies/th.json index e171cf2da4..29a82dce9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/th.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -759,11 +759,11 @@ ], "PEN": [ "PEN", - "นูโวซอลเปรู" + "ซอลเปรู" ], "PES": [ "PES", - "ซอลเปรู" + "ซอลเปรู (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json index 07084b93cc..7e4d938ea7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json b/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json index ab0a8eeabc..1b54832706 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ti_ER.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ERN": [ "Nfk", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json index 764db79ba6..0b578d6064 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AED": [ "AED", @@ -447,7 +447,7 @@ ], "PEN": [ "PEN", - "Peruvian Nuevo Sol" + "Peruvian Sol" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/to.json b/src/Symfony/Component/Intl/Resources/data/currencies/to.json index ae02bcc971..18ab1b744d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/to.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.74", "Names": { "AUD": [ "AUD$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json index b82a5ec5a3..410b322cc3 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "Peru Nuevo Solü" + "Peru Solü" ], "PES": [ "PES", - "Peru Solu" + "Peru Solü (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json index ae1455ac93..9bf96fce65 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ADP": [ "ADP", @@ -779,7 +779,7 @@ ], "PEN": [ "PEN", - "پېرۇ يېڭى سولى" + "پېرۇ سولى" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json index 7b27577f68..19a49211eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.38", + "Version": "2.1.32.60", "Names": { "ADP": [ "ADP", @@ -707,11 +707,11 @@ ], "PEN": [ "PEN", - "перуанський новий сол" + "перуанський сол" ], "PES": [ "PES", - "перуанський сол" + "перуанський сол (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json index 17d4e257df..207bdd6472 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AED": [ "AED", @@ -443,7 +443,7 @@ ], "PEN": [ "PEN", - "پیروین نیووسول" + "پیرو نیووسول" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json index c8d41f8d3d..4a77c41cbb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/ur_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.79", + "Version": "2.1.31.33", "Names": { "CRC": [ "CRC", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json index 4deddb9762..71e2c65329 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.60", "Names": { "AED": [ "AED", @@ -431,7 +431,7 @@ ], "PEN": [ "PEN", - "Peru yangi soli" + "Peru soli" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json index 5e5e2aea1c..eedceddf65 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AFN": [ "؋", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json index 7c732b614d..8a2a641009 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/uz_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.86", "Names": { "ANG": [ "ANG", @@ -163,7 +163,7 @@ ], "PEN": [ "PEN", - "Перу нуево сол" + "Перу сол" ], "PYG": [ "PYG", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json index 650b131761..c118fd31e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "ADP": [ "ADP", @@ -759,7 +759,7 @@ ], "PEN": [ "PEN", - "Nuevo Sol Peru" + "Sol Peru" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json index 29c645d0c5..2f359e0ba9 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.97", + "Version": "2.1.31.33", "Names": { "BRL": [ "R$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yo.json b/src/Symfony/Component/Intl/Resources/data/currencies/yo.json index 6255d054b1..1dcf855306 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json index 0a7177cfa0..6492e1830d 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/yo_BJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json index cb70f59e4a..3e7cf35dd1 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.84", + "Version": "2.1.33.94", "Names": { "ADP": [ "ADP", @@ -775,7 +775,7 @@ ], "PEN": [ "PEN", - "秘鲁新索尔" + "秘鲁索尔" ], "PES": [ "PES", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json index 8d1392dd36..729ddeec1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json index b5e8f8743d..1e66f0f7b6 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json index b6e2805fea..55d26cdcdb 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json index a30758e677..820cc3d79e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hans_SG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json index 13dfe01727..444cb328cd 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.94", "Names": { "ADP": [ "ADP", @@ -779,11 +779,11 @@ ], "PEN": [ "PEN", - "秘魯新太陽幣" + "秘魯太陽幣" ], "PES": [ "PES", - "秘魯索爾 (1863–1965)" + "秘魯太陽幣 (1863–1965)" ], "PGK": [ "PGK", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json index 8d1392dd36..729ddeec1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json index 2beaf4c395..74e8914497 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_Hant_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json index 2beaf4c395..74e8914497 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_MO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "MOP": [ "MOP$", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json b/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json index a30758e677..820cc3d79e 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zh_SG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CNY": [ "CN¥", diff --git a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json index 607fb136be..d521c949d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/currencies/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/currencies/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.31.74", "Names": { "AED": [ "AED", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/af.json b/src/Symfony/Component/Intl/Resources/data/languages/af.json index 086768c60a..8d2db7788d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/af.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkasies", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ak.json b/src/Symfony/Component/Intl/Resources/data/languages/ak.json index 9f6d5ce2b9..ad106f6edf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amarik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/am.json b/src/Symfony/Component/Intl/Resources/data/languages/am.json index 24dccaaee9..98b17340c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/am.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "አፋርኛ", "ab": "አብሐዚኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar.json b/src/Symfony/Component/Intl/Resources/data/languages/ar.json index 0dee4ffea8..74979c6bc0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.86", "Names": { "aa": "الأفارية", "ab": "الأبخازية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json index 6ce492dc16..82d0565925 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_EG.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "da": "الدنماركية" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json index 11e849cac8..02f4cb622a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_LY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "المابودونجونية", "gn": "الغورانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json index c683ab735c..5bf94a92a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ar_SA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "المابودونجونية", "gn": "الغورانية", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/as.json b/src/Symfony/Component/Intl/Resources/data/languages/as.json index ec884a5b47..1e41e0a97c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/as.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "as": "অসমীয়া" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az.json b/src/Symfony/Component/Intl/Resources/data/languages/az.json index d151c8b84a..0b4ebd84d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abxaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json index d1c274640d..0eefc58d0b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/az_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.74", "Names": { "aa": "афар", "ab": "абхаз", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/be.json b/src/Symfony/Component/Intl/Resources/data/languages/be.json index 7666d419ca..1f1e3ee143 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/be.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.66", + "Version": "2.1.31.86", "Names": { "aa": "афарская", "ab": "абхазская", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bg.json b/src/Symfony/Component/Intl/Resources/data/languages/bg.json index 54da08cb87..d428d2b07d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.33.75", "Names": { "aa": "афар", "ab": "абхазки", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bm.json b/src/Symfony/Component/Intl/Resources/data/languages/bm.json index c696388371..8ede2e444b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "akankan", "am": "amarikikan", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn.json b/src/Symfony/Component/Intl/Resources/data/languages/bn.json index 8acbc3a9c0..bf37c5d775 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "aa": "আফার", "ab": "আবখাজিয়ান", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json index 1a2cc3e311..1ff59d3471 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bn_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "ksh": "কোলোনিয়ান" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bo.json b/src/Symfony/Component/Intl/Resources/data/languages/bo.json index eae5e9b57c..cbf78ad53b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "bo": "བོད་སྐད་", "dz": "རྫོང་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/br.json b/src/Symfony/Component/Intl/Resources/data/languages/br.json index 84c5a55fb7..bab1ad52bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/br.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abkhazeg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs.json b/src/Symfony/Component/Intl/Resources/data/languages/bs.json index 639a5fecde..bc6ef11311 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json index 170e9ce1ed..bdd5dff1ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/bs_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.72", "Names": { "aa": "афарски", "ab": "абказијски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ca.json b/src/Symfony/Component/Intl/Resources/data/languages/ca.json index 2d5c92e70a..fe141b6a42 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "àfar", "ab": "abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ce.json b/src/Symfony/Component/Intl/Resources/data/languages/ce.json index 865d2c4ea6..ddbdc6a417 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ab": "абхазхойн", "af": "африкаанс", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cs.json b/src/Symfony/Component/Intl/Resources/data/languages/cs.json index dd6a35f6c5..499aa9441f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarština", "ab": "abcházština", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/cy.json b/src/Symfony/Component/Intl/Resources/data/languages/cy.json index b68fbb5c83..acab563f3e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "aa": "Affareg", "ab": "Abchaseg", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/da.json b/src/Symfony/Component/Intl/Resources/data/languages/da.json index aa161584b8..a6503c98ee 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/da.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de.json b/src/Symfony/Component/Intl/Resources/data/languages/de.json index d030ca22bf..2660636429 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abchasisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json b/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json index 03a8f7d17c..1e098c3129 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_AT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.73", + "Version": "2.1.31.33", "Names": { "ar_001": "modernes Hocharabisch", "car": "karibische Sprache", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json index a3556e398e..831515c7f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_CH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "ace": "Aceh-Sprache", "ach": "Acholi-Sprache", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json b/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json index 062eb0bcc8..3da27050cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/de_LU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "be": "Belarussisch" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/dz.json b/src/Symfony/Component/Intl/Resources/data/languages/dz.json index 0ea5c2aef1..0eb258e307 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.61", + "Version": "2.1.31.34", "Names": { "aa": "ཨ་ཕར་ཁ", "ab": "ཨཱབ་ཁ་ཟི་ཡ་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ee.json b/src/Symfony/Component/Intl/Resources/data/languages/ee.json index c901b192da..cfe59ef2ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "ab": "abkhaziagbe", "af": "afrikaangbe", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/el.json b/src/Symfony/Component/Intl/Resources/data/languages/el.json index aa3d7e1447..a1a7c9602a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/el.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Αφάρ", "ab": "Αμπχαζικά", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en.json b/src/Symfony/Component/Intl/Resources/data/languages/en.json index abb1d892c1..d069c91fa7 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json index a7b137689f..f5b99c2f55 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_AU.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.62", "Names": { "en_US": "United States English", "ro_MD": "Moldovan" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json index f5e58a7d5a..46b80d548b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "bn": "Bengali", "or": "Oriya" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json b/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json index e2a40b0c76..4fa11f1a0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/en_NZ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "mi": "Māori" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eo.json b/src/Symfony/Component/Intl/Resources/data/languages/eo.json index cceb705e89..26f9871d1f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "aa": "afara", "ab": "abĥaza", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es.json b/src/Symfony/Component/Intl/Resources/data/languages/es.json index 9ca4cea58a..6919c3450b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.80", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abjasio", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json index 6ac93d2912..8f00375ce4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "achenés", "ady": "adigeo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_AR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CL.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_CR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json b/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_DO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json b/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json b/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_GT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json b/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_HN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json index e64f710c96..aea2a74554 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json b/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_NI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json index 12e6a0ef52..90879567d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json b/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_PY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json b/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json index 12e6a0ef52..90879567d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_SV.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_US.json b/src/Symfony/Component/Intl/Resources/data/languages/es_US.json index e9ff9dbc3b..84a573c1d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.74", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json b/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json index 0e0d965f5a..197517b58b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/es_VE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ace": "acehnés", "arp": "arapaho", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/et.json b/src/Symfony/Component/Intl/Resources/data/languages/et.json index 925b616e27..e43ed11f4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/et.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afari", "ab": "abhaasi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/eu.json b/src/Symfony/Component/Intl/Resources/data/languages/eu.json index b9c9486b65..bddcaedd08 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "aa": "afarera", "ab": "abkhazera", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa.json b/src/Symfony/Component/Intl/Resources/data/languages/fa.json index 0446ec74d6..4d5ad095d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "aa": "آفاری", "ab": "آبخازی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json index 505dd2bf98..29fe330c69 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fa_AF.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.33", "Names": { "ab": "افریکانس", "as": "اسامی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ff.json b/src/Symfony/Component/Intl/Resources/data/languages/ff.json index 605f829c24..ba748b4b04 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akaan", "am": "Amarik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fi.json b/src/Symfony/Component/Intl/Resources/data/languages/fi.json index cf39b44c81..14469b1a29 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.88", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abhaasi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fo.json b/src/Symfony/Component/Intl/Resources/data/languages/fo.json index af84846b14..96ce2d693d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abkhasiskt", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr.json b/src/Symfony/Component/Intl/Resources/data/languages/fr.json index 9d0f184f88..0223e94771 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhaze", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json index 6ec770c4b7..63733eab3c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_BE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "frp": "franco-provençal", "goh": "ancien haut-allemand", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json index 6d987ac300..958c71ced3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ady": "adygué", "ang": "vieil anglais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json b/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json index 7a98f48b07..5d3416b877 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fr_CH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.96", + "Version": "2.1.32.48", "Names": { "gu": "goudjrati", "pdc": "allemand de Pennsylvanie", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/fy.json b/src/Symfony/Component/Intl/Resources/data/languages/fy.json index e13ecce5a1..9633fb2570 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abchazysk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ga.json b/src/Symfony/Component/Intl/Resources/data/languages/ga.json index 221745625d..b18170b051 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "Afáiris", "ab": "Abcáisis", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gd.json b/src/Symfony/Component/Intl/Resources/data/languages/gd.json index b12ad19274..680d09d476 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abchasais", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gl.json b/src/Symfony/Component/Intl/Resources/data/languages/gl.json index 047eff3c5f..ab0e42e7a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhazo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gu.json b/src/Symfony/Component/Intl/Resources/data/languages/gu.json index 17ce96e8a1..4cc4426559 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "અફાર", "ab": "અબખાજિયન", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/gv.json b/src/Symfony/Component/Intl/Resources/data/languages/gv.json index d273e28e43..b03613b0eb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/gv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.34", "Names": { "gv": "Gaelg" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ha.json b/src/Symfony/Component/Intl/Resources/data/languages/ha.json index 1728e5c584..9ab48c09ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amharik", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/he.json b/src/Symfony/Component/Intl/Resources/data/languages/he.json index 66cfacc7b0..471c68fa51 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/he.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hi.json b/src/Symfony/Component/Intl/Resources/data/languages/hi.json index 9ba864904d..52f0bac672 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "अफ़ार", "ab": "अब्ख़ाज़ियन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hr.json b/src/Symfony/Component/Intl/Resources/data/languages/hr.json index 4ef69f857a..71f83b09bc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hu.json b/src/Symfony/Component/Intl/Resources/data/languages/hu.json index 74317019b4..73bf0d5b71 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abház", @@ -329,7 +329,7 @@ "nan": "min nan kínai", "nap": "nápolyi", "naq": "nama", - "nb": "norvég (bokmál)", + "nb": "norvég (bokmål)", "nd": "északi ndebele", "nds": "alsónémet", "nds_NL": "alsószász", @@ -341,7 +341,7 @@ "nl": "holland", "nl_BE": "flamand", "nmg": "ngumba", - "nn": "norvég (nynrosk)", + "nn": "norvég (nynorsk)", "nnh": "ngiemboon", "no": "norvég", "nog": "nogaj", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/hy.json b/src/Symfony/Component/Intl/Resources/data/languages/hy.json index b89bb266cb..6217545392 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "աֆարերեն", "ab": "աբխազերեն", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/id.json b/src/Symfony/Component/Intl/Resources/data/languages/id.json index e289c0af44..361985033e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/id.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ig.json b/src/Symfony/Component/Intl/Resources/data/languages/ig.json index 7cf0a6fbfe..a24fbf9ac6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amariikị", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ii.json b/src/Symfony/Component/Intl/Resources/data/languages/ii.json index 2d50558f60..729aecf425 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "de": "ꄓꇩꉙ", "en": "ꑱꇩꉙ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/in.json b/src/Symfony/Component/Intl/Resources/data/languages/in.json index e289c0af44..361985033e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/in.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkhaz", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/is.json b/src/Symfony/Component/Intl/Resources/data/languages/is.json index 14b2714c91..b6e9135b16 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/is.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.65", + "Version": "2.1.32.59", "Names": { "aa": "afár", "ab": "abkasíska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/it.json b/src/Symfony/Component/Intl/Resources/data/languages/it.json index 095e153b56..0f6e9202f4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/it.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "aa": "afar", "ab": "abcaso", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/iw.json b/src/Symfony/Component/Intl/Resources/data/languages/iw.json index 66cfacc7b0..471c68fa51 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "aa": "אפארית", "ab": "אבחזית", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ja.json b/src/Symfony/Component/Intl/Resources/data/languages/ja.json index 95a2ff27d3..473b3cf86c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "アファル語", "ab": "アブハズ語", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ka.json b/src/Symfony/Component/Intl/Resources/data/languages/ka.json index 6c83bebe2f..e86244f61b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "aa": "აფარი", "ab": "აფხაზური", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ki.json b/src/Symfony/Component/Intl/Resources/data/languages/ki.json index ea54607c12..3f5d74cf7d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Kiakan", "am": "Kiamhari", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kk.json b/src/Symfony/Component/Intl/Resources/data/languages/kk.json index 6bab52fe5b..8f04a1b389 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "афар тілі", "ab": "абхаз тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kl.json b/src/Symfony/Component/Intl/Resources/data/languages/kl.json index bfc65cc587..b566d648ba 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.34", "Names": { "kl": "kalaallisut" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/km.json b/src/Symfony/Component/Intl/Resources/data/languages/km.json index 6a111324f7..d028f580d5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/km.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.74", "Names": { "aa": "អាហ្វារ", "ab": "អាប់ខាហ៊្សាន", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kn.json b/src/Symfony/Component/Intl/Resources/data/languages/kn.json index 6ef0288f70..e123c78e70 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "ಅಫಾರ್", "ab": "ಅಬ್ಖಾಜಿಯನ್", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ko.json b/src/Symfony/Component/Intl/Resources/data/languages/ko.json index 1a884d7b2d..6d03a8fb02 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.32.59", "Names": { "aa": "아파르어", "ab": "압카즈어", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ks.json b/src/Symfony/Component/Intl/Resources/data/languages/ks.json index 63a8efc8a0..0fb9d6c62b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "aa": "اَفار", "ab": "اَبخازِیان", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/kw.json b/src/Symfony/Component/Intl/Resources/data/languages/kw.json index 8609e7b909..5a21f76f32 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/kw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "kw": "kernewek" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ky.json b/src/Symfony/Component/Intl/Resources/data/languages/ky.json index 088335056d..3ceebcde0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "афарча", "ab": "абхазча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lb.json b/src/Symfony/Component/Intl/Resources/data/languages/lb.json index c4d69e05f5..c2921f1ad9 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abchasesch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lg.json b/src/Symfony/Component/Intl/Resources/data/languages/lg.json index a2eaa29254..4a15162970 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Lu-akaani", "am": "Lu-amhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ln.json b/src/Symfony/Component/Intl/Resources/data/languages/ln.json index fa76aafb4d..ea76e41087 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.74", "Names": { "ak": "akan", "am": "liamariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lo.json b/src/Symfony/Component/Intl/Resources/data/languages/lo.json index 2f04593244..7cc478c468 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "ອະຟາ", "ab": "ແອບຄາຊຽນ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lt.json b/src/Symfony/Component/Intl/Resources/data/languages/lt.json index 0f65d5c533..7843c7ddac 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarų", "ab": "abchazų", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lu.json b/src/Symfony/Component/Intl/Resources/data/languages/lu.json index e79b5d76b1..dc6bca1782 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Liakan", "am": "Liamhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/lv.json b/src/Symfony/Component/Intl/Resources/data/languages/lv.json index 2b164efa5d..95a9d133e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afāru", "ab": "abhāzu", @@ -204,7 +204,7 @@ "ilo": "iloku", "inh": "ingušu", "io": "ido", - "is": "īslandiešu", + "is": "islandiešu", "it": "itāļu", "iu": "inuītu", "ja": "japāņu", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/meta.json b/src/Symfony/Component/Intl/Resources/data/languages/meta.json index 3cba1f2dbd..5fa96ae47f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.58", + "Version": "2.1.32.59", "Languages": [ "aa", "ab", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mg.json b/src/Symfony/Component/Intl/Resources/data/languages/mg.json index 0b7544c733..5ec922ef5f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akan", "am": "Amharika", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mk.json b/src/Symfony/Component/Intl/Resources/data/languages/mk.json index 09907f9fc8..7d1cd8032d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "афарски", "ab": "апхаски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ml.json b/src/Symfony/Component/Intl/Resources/data/languages/ml.json index 4ee9b6b7f4..57d5e250c3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "അഫാർ", "ab": "അബ്‌ഖാസിയൻ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mn.json b/src/Symfony/Component/Intl/Resources/data/languages/mn.json index f7ce200ffe..75e86f0eb4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "афар", "ab": "абхаз", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mo.json b/src/Symfony/Component/Intl/Resources/data/languages/mo.json index 0d4636b584..5e9e66fe04 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "sw_CD": "swahili (R. D. Congo)", "wal": "wolaytta" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mr.json b/src/Symfony/Component/Intl/Resources/data/languages/mr.json index 56a003c30b..211568c3a3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "अफार", "ab": "अबखेजियन", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ms.json b/src/Symfony/Component/Intl/Resources/data/languages/ms.json index f0f98a73de..9a591b3550 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "aa", "ab": "Abkhazia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/mt.json b/src/Symfony/Component/Intl/Resources/data/languages/mt.json index 6cc0838692..121778ad2c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abkażjan", @@ -467,7 +467,7 @@ "uk": "Ukren", "umb": "Umbundu", "und": "Lingwa Mhix Magħrufa", - "ur": "ur", + "ur": "Urdu", "uz": "Uzbek", "vai": "Vai", "ve": "Venda", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/my.json b/src/Symfony/Component/Intl/Resources/data/languages/my.json index cfa1930542..ba92b59517 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/my.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.33.28", "Names": { "aa": "အာဖာ", "ab": "အဘ်ခါဇီရာ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nb.json b/src/Symfony/Component/Intl/Resources/data/languages/nb.json index c634ee84e3..a35dcc3f70 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nd.json b/src/Symfony/Component/Intl/Resources/data/languages/nd.json index 0231de649a..bd952b48c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.65", + "Version": "2.1.31.33", "Names": { "ak": "isi-Akhani", "am": "isi-Amaharikhi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ne.json b/src/Symfony/Component/Intl/Resources/data/languages/ne.json index 2ebb04a5f6..87f567ca6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "aa": "अफार", "ab": "अब्खाजियाली", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nl.json b/src/Symfony/Component/Intl/Resources/data/languages/nl.json index 742830f83b..2fc0c86130 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abchazisch", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/nn.json b/src/Symfony/Component/Intl/Resources/data/languages/nn.json index d33c2de1d4..3cf8d93914 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/no.json b/src/Symfony/Component/Intl/Resources/data/languages/no.json index c634ee84e3..a35dcc3f70 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/no.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abkhasisk", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/om.json b/src/Symfony/Component/Intl/Resources/data/languages/om.json index a2e7bea5d4..a3e99b7071 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/om.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "af": "Afrikoota", "am": "Afaan Sidaamaa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/or.json b/src/Symfony/Component/Intl/Resources/data/languages/or.json index 8ce434f750..ae839e43f3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/or.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "aa": "ଅଫାର୍", "ab": "ଆବ୍ଖାଜିଆନ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/os.json b/src/Symfony/Component/Intl/Resources/data/languages/os.json index a3332c1dce..aad819e420 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/os.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ab": "абхазаг", "ady": "адыгейаг", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pa.json b/src/Symfony/Component/Intl/Resources/data/languages/pa.json index 516095e57d..c404ba0dfb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "ਅਫ਼ਾਰ", "ab": "ਅਬਖਾਜ਼ੀਅਨ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json index 1d8593b3c9..ae9815ff7e 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pa_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "pa": "پنجابی" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pl.json b/src/Symfony/Component/Intl/Resources/data/languages/pl.json index 82fc08f140..2b28c05462 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abchaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ps.json b/src/Symfony/Component/Intl/Resources/data/languages/ps.json index 08197bb78a..d45cf6ddea 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "am": "امهاري", "ar": "عربي", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt.json b/src/Symfony/Component/Intl/Resources/data/languages/pt.json index cb35e181ce..8d83a8794a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abcázio", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json index 352d0f52dc..de8bcfee0c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.86", "Names": { "af": "africanês", "ang": "inglês antigo", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/qu.json b/src/Symfony/Component/Intl/Resources/data/languages/qu.json index 17b384463b..5ef4d43ea0 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "af": "Afrikaans Simi", "am": "Amarico Simi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rm.json b/src/Symfony/Component/Intl/Resources/data/languages/rm.json index 19e8366bab..cf11248880 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "afar", "ab": "abchasian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rn.json b/src/Symfony/Component/Intl/Resources/data/languages/rn.json index dbed02f966..268f8fae38 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Igikani", "am": "Ikimuhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro.json b/src/Symfony/Component/Intl/Resources/data/languages/ro.json index 2bd979f0ae..73c9bd7b6c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "aa": "afar", "ab": "abhază", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json index 0d4636b584..5e9e66fe04 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ro_MD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "sw_CD": "swahili (R. D. Congo)", "wal": "wolaytta" diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ru.json b/src/Symfony/Component/Intl/Resources/data/languages/ru.json index d4d64076a0..c36ad831b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "aa": "афарский", "ab": "абхазский", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/rw.json b/src/Symfony/Component/Intl/Resources/data/languages/rw.json index 2c6d75d06d..6b0b3fa0dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "af": "Ikinyafurikaneri", "am": "Inyamuhariki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se.json b/src/Symfony/Component/Intl/Resources/data/languages/se.json index 3b475b8541..c68daf92ac 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/se.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "ace": "acehgiella", "af": "afrikánsagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json b/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json index 6cd2a41f57..cd498de8ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/se_FI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "ace": "ačehgiella", "ar_001": "standárda arábagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sg.json b/src/Symfony/Component/Intl/Resources/data/languages/sg.json index a003e9c89b..746e275c96 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "ak": "Akâan", "am": "Amarîki", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh.json b/src/Symfony/Component/Intl/Resources/data/languages/sh.json index 7ee03cd919..bea1b28b6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json index 825f2b8434..394d47783c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sh_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/si.json b/src/Symfony/Component/Intl/Resources/data/languages/si.json index d533dbac3c..b093295e4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/si.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.28", "Names": { "aa": "අෆාර්", "ab": "ඇබ්කාසියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sk.json b/src/Symfony/Component/Intl/Resources/data/languages/sk.json index 928b241c0e..0f11fbeb50 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarčina", "ab": "abcházčina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sl.json b/src/Symfony/Component/Intl/Resources/data/languages/sl.json index e056e31541..014888e52d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarščina", "ab": "abhaščina", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sn.json b/src/Symfony/Component/Intl/Resources/data/languages/sn.json index f22310e3b1..656d3d1312 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "ak": "chiAkani", "am": "chiAmaric", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/so.json b/src/Symfony/Component/Intl/Resources/data/languages/so.json index 2649b046a0..c5166f963a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/so.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.33.76", "Names": { "ak": "Akan", "am": "Axmaari", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sq.json b/src/Symfony/Component/Intl/Resources/data/languages/sq.json index 3f938b335d..261a8f6be2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "afarisht", "ab": "abkazisht", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr.json b/src/Symfony/Component/Intl/Resources/data/languages/sr.json index 764d853d5c..ffd906d11a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.73", "Names": { "aa": "афарски", "ab": "абхаски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json index 8949e45179..6f3416b15a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json index 8949e45179..6f3416b15a 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json index 5519983d02..c4883442ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "arn": "мапудунгун", "be": "бјелоруски", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json index 62cc878970..f34685057f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Cyrl_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "bm": "бамананкан", "bn": "бангла", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json index 7ee03cd919..bea1b28b6d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "aa": "afarski", "ab": "abhaski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json index 825f2b8434..394d47783c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json index d31b2eed57..da8f6ebd4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json index 27a8d96517..c4bab0605d 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_Latn_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "bm": "bamanankan", "bn": "bangla", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json index d31b2eed57..da8f6ebd4c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "arn": "mapudungun", "be": "bjeloruski", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json b/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json index 62cc878970..f34685057f 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sr_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "bm": "бамананкан", "bn": "бангла", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv.json b/src/Symfony/Component/Intl/Resources/data/languages/sv.json index 87961720fa..34d9a36ec2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "aa": "afar", "ab": "abchaziska", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json index 8eab93efde..67aa9a3dfd 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sv_FI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ky": "kirgiziska" } diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw.json b/src/Symfony/Component/Intl/Resources/data/languages/sw.json index 1eed0dc1f6..65bcc190ce 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.73", "Names": { "aa": "Kiafar", "ab": "Kiabkhazi", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json index e11d34e5d1..359bace3ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_CD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ak": "Kiakan", "ar_001": "Kiarabu cha Dunia Kilichosanifishwa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json index 3a4912794a..8975ae912c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/sw_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "ain": "ain", "ar_001": "Kiarabu cha Sasa Kilichosanifishwa", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ta.json b/src/Symfony/Component/Intl/Resources/data/languages/ta.json index f2879d29f2..3e428d2f59 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.4", "Names": { "aa": "அஃபார்", "ab": "அப்காஜியான்", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/te.json b/src/Symfony/Component/Intl/Resources/data/languages/te.json index 2b6f7ff027..b72e22a784 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/te.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "అఫార్", "ab": "అబ్ఖాజియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/th.json b/src/Symfony/Component/Intl/Resources/data/languages/th.json index 605f511152..4167755d16 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/th.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "อะฟาร์", "ab": "อับคาซ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ti.json b/src/Symfony/Component/Intl/Resources/data/languages/ti.json index a731b83f19..952822520b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "af": "አፍሪቃንሰኛ", "am": "አምሐረኛ", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tl.json b/src/Symfony/Component/Intl/Resources/data/languages/tl.json index fb616654e5..4a47eb80f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "aa": "Afar", "ab": "Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/to.json b/src/Symfony/Component/Intl/Resources/data/languages/to.json index 6f25aee683..4cd9e92e39 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/to.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.74", "Names": { "aa": "lea fakaʻafāla", "ab": "lea fakaʻapakasia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/tr.json b/src/Symfony/Component/Intl/Resources/data/languages/tr.json index 27c4d3dfd8..90cbaf0506 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Afar", "ab": "Abhazca", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ug.json b/src/Symfony/Component/Intl/Resources/data/languages/ug.json index 2fe1313901..736c3f10cb 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "aa": "ئافارچە", "ab": "ئابخازچە", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uk.json b/src/Symfony/Component/Intl/Resources/data/languages/uk.json index 25f6fe6dc1..2733f4f966 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.38", + "Version": "2.1.32.60", "Names": { "aa": "афарська", "ab": "абхазька", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur.json b/src/Symfony/Component/Intl/Resources/data/languages/ur.json index 13c5a59f45..d04f1a79aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "افار", "ab": "ابقازیان", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json index 4eca2e13cf..22c95d160b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/ur_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.79", + "Version": "2.1.31.33", "Names": { "af": "افریقی", "ar_001": "جدید معیاری عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz.json b/src/Symfony/Component/Intl/Resources/data/languages/uz.json index ae94c1b105..dded4b3eba 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.60", "Names": { "ab": "abxaz", "ace": "achin", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json index 5cdb32c231..bf91ecabc3 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "fa": "دری", "ps": "پشتو", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json index d8e7999a5b..e6f44f99ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/uz_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.86", "Names": { "aa": "афарча", "ab": "абхазча", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/vi.json b/src/Symfony/Component/Intl/Resources/data/languages/vi.json index a00caa7d30..4606db303b 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "aa": "Tiếng Afar", "ab": "Tiếng Abkhazia", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yi.json b/src/Symfony/Component/Intl/Resources/data/languages/yi.json index 5d6ceb561d..24122929c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.97", + "Version": "2.1.31.33", "Names": { "aa": "אַפֿאַר", "af": "אַפֿריקאַנס", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo.json b/src/Symfony/Component/Intl/Resources/data/languages/yo.json index 56764681b2..95d5e1f640 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "af": "Èdè Afrikani", "ak": "Èdè Akani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json index 60eaa60565..ab5b6bcd53 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/yo_BJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "da": "Èdè Ilɛ̀ Denmark", "de": "Èdè Ilɛ̀ Gemani", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh.json b/src/Symfony/Component/Intl/Resources/data/languages/zh.json index 5c3c12bbf8..b5d13c0b7c 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.84", + "Version": "2.1.33.94", "Names": { "aa": "阿法尔文", "ab": "阿布哈西亚语", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json index d8074a1c5f..11039290dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json index de0da4fe85..c675d365d6 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.94", "Names": { "aa": "阿法文", "ab": "阿布哈茲文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json index d8074a1c5f..11039290dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zh_Hant_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "aa": "阿法爾文", "az": "阿塞拜疆文", diff --git a/src/Symfony/Component/Intl/Resources/data/languages/zu.json b/src/Symfony/Component/Intl/Resources/data/languages/zu.json index 3099d5f142..758eba6aa2 100644 --- a/src/Symfony/Component/Intl/Resources/data/languages/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/languages/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.31.74", "Names": { "aa": "isi-Afar", "ab": "isi-Abkhazian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/af.json b/src/Symfony/Component/Intl/Resources/data/locales/af.json index 770073ca4b..062f26c9ed 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/af.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/af.json @@ -71,7 +71,7 @@ "ce": "Tsjetsjen", "ce_RU": "Tsjetsjen (Rusland)", "cs": "Tsjeggies", - "cs_CZ": "Tsjeggies (Tjeggiese Republiek)", + "cs_CZ": "Tsjeggies (Tjeggië)", "cy": "Wallies", "cy_GB": "Wallies (Verenigde Koninkryk)", "da": "Deens", @@ -201,6 +201,7 @@ "es_AR": "Spaans (Argentinië)", "es_BO": "Spaans (Bolivië)", "es_BR": "Spaans (Brasilië)", + "es_BZ": "Spaans (Belize)", "es_CL": "Spaans (Chili)", "es_CO": "Spaans (Colombië)", "es_CR": "Spaans (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaans (Switserland)", "it_IT": "Italiaans (Italië)", "it_SM": "Italiaans (San Marino)", + "it_VA": "Italiaans (Vatikaanstad)", "ja": "Japannees", "ja_JP": "Japannees (Japan)", "ka": "Georgies", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ak.json b/src/Symfony/Component/Intl/Resources/data/locales/ak.json index 17b3e131f9..432958bb45 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ak.json @@ -146,6 +146,7 @@ "es_AR": "Spain kasa (Agyɛntina)", "es_BO": "Spain kasa (Bolivia)", "es_BR": "Spain kasa (Brazil)", + "es_BZ": "Spain kasa (Beliz)", "es_CL": "Spain kasa (Kyili)", "es_CO": "Spain kasa (Kolombia)", "es_CR": "Spain kasa (Kɔsta Rika)", @@ -231,6 +232,7 @@ "it_CH": "Italy kasa (Swetzaland)", "it_IT": "Italy kasa (Itali)", "it_SM": "Italy kasa (San Marino)", + "it_VA": "Italy kasa (Vatican Man)", "ja": "Gyapan kasa", "ja_JP": "Gyapan kasa (Gyapan)", "km": "Kambodia kasa", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/am.json b/src/Symfony/Component/Intl/Resources/data/locales/am.json index 08f00de6f6..cf6748575d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/am.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/am.json @@ -71,7 +71,7 @@ "ce": "ችችን", "ce_RU": "ችችን (ራሽያ)", "cs": "ቼክኛ", - "cs_CZ": "ቼክኛ (ቼክ ሪፑብሊክ)", + "cs_CZ": "ቼክኛ (ቼቺያ)", "cy": "ወልሽ", "cy_GB": "ወልሽ (እንግሊዝ)", "da": "ዴኒሽ", @@ -201,6 +201,7 @@ "es_AR": "ስፓንሽኛ (አርጀንቲና)", "es_BO": "ስፓንሽኛ (ቦሊቪያ)", "es_BR": "ስፓንሽኛ (ብራዚል)", + "es_BZ": "ስፓንሽኛ (ቤሊዘ)", "es_CL": "ስፓንሽኛ (ቺሊ)", "es_CO": "ስፓንሽኛ (ኮሎምቢያ)", "es_CR": "ስፓንሽኛ (ኮስታ ሪካ)", @@ -327,6 +328,7 @@ "it_CH": "ጣሊያንኛ (ስዊዘርላንድ)", "it_IT": "ጣሊያንኛ (ጣሊያን)", "it_SM": "ጣሊያንኛ (ሳን ማሪኖ)", + "it_VA": "ጣሊያንኛ (ቫቲካን ከተማ)", "ja": "ጃፓንኛ", "ja_JP": "ጃፓንኛ (ጃፓን)", "ka": "ጆርጂያን", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ar.json b/src/Symfony/Component/Intl/Resources/data/locales/ar.json index 7776b8c547..a3abce9de4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ar.json @@ -71,7 +71,7 @@ "ce": "الشيشانية", "ce_RU": "الشيشانية (روسيا)", "cs": "التشيكية", - "cs_CZ": "التشيكية (جمهورية التشيك)", + "cs_CZ": "التشيكية (التشيك)", "cy": "الويلزية", "cy_GB": "الويلزية (المملكة المتحدة)", "da": "الدانماركية", @@ -201,6 +201,7 @@ "es_AR": "الإسبانية (الأرجنتين)", "es_BO": "الإسبانية (بوليفيا)", "es_BR": "الإسبانية (البرازيل)", + "es_BZ": "الإسبانية (بليز)", "es_CL": "الإسبانية (تشيلي)", "es_CO": "الإسبانية (كولومبيا)", "es_CR": "الإسبانية (كوستاريكا)", @@ -327,6 +328,7 @@ "it_CH": "الإيطالية (سويسرا)", "it_IT": "الإيطالية (إيطاليا)", "it_SM": "الإيطالية (سان مارينو)", + "it_VA": "الإيطالية (الفاتيكان)", "ja": "اليابانية", "ja_JP": "اليابانية (اليابان)", "ka": "الجورجية", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az.json b/src/Symfony/Component/Intl/Resources/data/locales/az.json index 7545e12679..31113ff440 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az.json @@ -71,7 +71,7 @@ "ce": "çeçen", "ce_RU": "çeçen (Rusiya)", "cs": "çex", - "cs_CZ": "çex (Çex Respublikası)", + "cs_CZ": "çex (Çexiya)", "cy": "uels", "cy_GB": "uels (Birləşmiş Krallıq)", "da": "danimarka", @@ -201,6 +201,7 @@ "es_AR": "ispan (Argentina)", "es_BO": "ispan (Boliviya)", "es_BR": "ispan (Braziliya)", + "es_BZ": "ispan (Beliz)", "es_CL": "ispan (Çili)", "es_CO": "ispan (Kolumbiya)", "es_CR": "ispan (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italyan (İsveçrə)", "it_IT": "italyan (İtaliya)", "it_SM": "italyan (San-Marino)", + "it_VA": "italyan (Vatikan)", "ja": "yapon", "ja_JP": "yapon (Yaponiya)", "ka": "gürcü", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json index f66cd23b36..2519e5de3f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/az_Cyrl.json @@ -71,7 +71,7 @@ "ce": "чечен", "ce_RU": "чечен (Русија)", "cs": "чех", - "cs_CZ": "чех (Чех Республикасы)", + "cs_CZ": "чех (Чехија)", "cy": "уелс", "cy_GB": "уелс (Бирләшмиш Краллыг)", "da": "данимарка", @@ -201,6 +201,7 @@ "es_AR": "испан (Арҝентина)", "es_BO": "испан (Боливија)", "es_BR": "испан (Бразилија)", + "es_BZ": "испан (Белиз)", "es_CL": "испан (Чили)", "es_CO": "испан (Колумбија)", "es_CR": "испан (Коста Рика)", @@ -326,6 +327,7 @@ "it_CH": "италјан (Исвечрә)", "it_IT": "италјан (Италија)", "it_SM": "италјан (Сан-Марино)", + "it_VA": "италјан (Ватикан)", "ja": "јапон", "ja_JP": "јапон (Јапонија)", "ka": "ҝүрҹү", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/be.json b/src/Symfony/Component/Intl/Resources/data/locales/be.json index 547b830d53..fdb7430596 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/be.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/be.json @@ -201,6 +201,7 @@ "es_AR": "іспанская (Аргенціна)", "es_BO": "іспанская (Балівія)", "es_BR": "іспанская (Бразілія)", + "es_BZ": "іспанская (Беліз)", "es_CL": "іспанская (Чылі)", "es_CO": "іспанская (Калумбія)", "es_CR": "іспанская (Коста-Рыка)", @@ -327,6 +328,7 @@ "it_CH": "італьянская (Швейцарыя)", "it_IT": "італьянская (Італія)", "it_SM": "італьянская (Сан-Марына)", + "it_VA": "італьянская (Ватыкан)", "ja": "японская", "ja_JP": "японская (Японія)", "ka": "грузінская", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bg.json b/src/Symfony/Component/Intl/Resources/data/locales/bg.json index 77d00aac34..c5ad75a241 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bg.json @@ -71,7 +71,7 @@ "ce": "чеченски", "ce_RU": "чеченски (Русия)", "cs": "чешки", - "cs_CZ": "чешки (Чешка република)", + "cs_CZ": "чешки (Чехия)", "cy": "уелски", "cy_GB": "уелски (Обединеното кралство)", "da": "датски", @@ -201,6 +201,7 @@ "es_AR": "испански (Аржентина)", "es_BO": "испански (Боливия)", "es_BR": "испански (Бразилия)", + "es_BZ": "испански (Белиз)", "es_CL": "испански (Чили)", "es_CO": "испански (Колумбия)", "es_CR": "испански (Коста Рика)", @@ -327,6 +328,7 @@ "it_CH": "италиански (Швейцария)", "it_IT": "италиански (Италия)", "it_SM": "италиански (Сан Марино)", + "it_VA": "италиански (Ватикан)", "ja": "японски", "ja_JP": "японски (Япония)", "ka": "грузински", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bm.json b/src/Symfony/Component/Intl/Resources/data/locales/bm.json index 259198f81b..d96acf0512 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bm.json @@ -148,6 +148,7 @@ "es_AR": "esipaɲolkan (Arizantin)", "es_BO": "esipaɲolkan (Bolivi)", "es_BR": "esipaɲolkan (Berezili)", + "es_BZ": "esipaɲolkan (Belizi)", "es_CL": "esipaɲolkan (Sili)", "es_CO": "esipaɲolkan (Kolombi)", "es_CR": "esipaɲolkan (Kɔsitarika)", @@ -233,6 +234,7 @@ "it_CH": "italikan (Suwisi)", "it_IT": "italikan (Itali)", "it_SM": "italikan (Marini-Senu)", + "it_VA": "italikan (Vatikaŋ)", "ja": "zapɔnekan", "ja_JP": "zapɔnekan (Zapɔn)", "km": "kambojikan", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bn.json b/src/Symfony/Component/Intl/Resources/data/locales/bn.json index 9f5fdd4e73..c7575e8be7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bn.json @@ -71,7 +71,7 @@ "ce": "চেচেন", "ce_RU": "চেচেন (রাশিয়া)", "cs": "চেক", - "cs_CZ": "চেক (চেক প্রজাতন্ত্র)", + "cs_CZ": "চেক (চেচিয়া)", "cy": "ওয়েলশ", "cy_GB": "ওয়েলশ (যুক্তরাজ্য)", "da": "ডেনিশ", @@ -201,6 +201,7 @@ "es_AR": "স্প্যানিশ (আর্জেন্টিনা)", "es_BO": "স্প্যানিশ (বলিভিয়া)", "es_BR": "স্প্যানিশ (ব্রাজিল)", + "es_BZ": "স্প্যানিশ (বেলিজ)", "es_CL": "স্প্যানিশ (চিলি)", "es_CO": "স্প্যানিশ (কলম্বিয়া)", "es_CR": "স্প্যানিশ (কোস্টারিকা)", @@ -327,6 +328,7 @@ "it_CH": "ইতালিয় (সুইজারল্যান্ড)", "it_IT": "ইতালিয় (ইতালি)", "it_SM": "ইতালিয় (সান মারিনো)", + "it_VA": "ইতালিয় (ভ্যাটিকান সিটি)", "ja": "জাপানি", "ja_JP": "জাপানি (জাপান)", "ka": "জর্জিয়ান", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/br.json b/src/Symfony/Component/Intl/Resources/data/locales/br.json index a6acea20c2..6f27c17110 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/br.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/br.json @@ -201,6 +201,7 @@ "es_AR": "spagnoleg (Arcʼhantina)", "es_BO": "spagnoleg (Bolivia)", "es_BR": "spagnoleg (Brazil)", + "es_BZ": "spagnoleg (Belize)", "es_CL": "spagnoleg (Chile)", "es_CO": "spagnoleg (Kolombia)", "es_CR": "spagnoleg (Costa Rica)", @@ -322,6 +323,7 @@ "it_CH": "italianeg (Suis)", "it_IT": "italianeg (Italia)", "it_SM": "italianeg (San Marino)", + "it_VA": "italianeg (Vatikan)", "ja": "japaneg", "ja_JP": "japaneg (Japan)", "ka": "jorjianeg", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs.json b/src/Symfony/Component/Intl/Resources/data/locales/bs.json index e51d94b7a6..d4b8fc85f5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs.json @@ -71,7 +71,7 @@ "ce": "čečenski", "ce_RU": "čečenski (Rusija)", "cs": "češki", - "cs_CZ": "češki (Češka Republika)", + "cs_CZ": "češki (Češka)", "cy": "velški", "cy_GB": "velški (Velika Britanija)", "da": "danski", @@ -201,6 +201,7 @@ "es_AR": "španski (Argentina)", "es_BO": "španski (Bolivija)", "es_BR": "španski (Brazil)", + "es_BZ": "španski (Belize)", "es_CL": "španski (Čile)", "es_CO": "španski (Kolumbija)", "es_CR": "španski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "talijanski (Švicarska)", "it_IT": "talijanski (Italija)", "it_SM": "talijanski (San Marino)", + "it_VA": "talijanski (Vatikan)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json index 1f6527bc19..a240fe77bd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/bs_Cyrl.json @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарска)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапански", "ja_JP": "јапански (Јапан)", "ka": "грузијски", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ca.json b/src/Symfony/Component/Intl/Resources/data/locales/ca.json index 48c89ac262..28f4fa80a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ca.json @@ -71,7 +71,7 @@ "ce": "txetxè", "ce_RU": "txetxè (Rússia)", "cs": "txec", - "cs_CZ": "txec (República Txeca)", + "cs_CZ": "txec (Txèquia)", "cy": "gal·lès", "cy_GB": "gal·lès (Regne Unit)", "da": "danès", @@ -201,6 +201,7 @@ "es_AR": "espanyol (Argentina)", "es_BO": "espanyol (Bolívia)", "es_BR": "espanyol (Brasil)", + "es_BZ": "espanyol (Belize)", "es_CL": "espanyol (Xile)", "es_CO": "espanyol (Colòmbia)", "es_CR": "espanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italià (Suïssa)", "it_IT": "italià (Itàlia)", "it_SM": "italià (San Marino)", + "it_VA": "italià (Ciutat del Vaticà)", "ja": "japonès", "ja_JP": "japonès (Japó)", "ka": "georgià", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ce.json b/src/Symfony/Component/Intl/Resources/data/locales/ce.json index dcaf490a4f..19cf5626ce 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ce.json @@ -201,6 +201,7 @@ "es_AR": "испанхойн (Аргентина)", "es_BO": "испанхойн (Боливи)", "es_BR": "испанхойн (Бразили)", + "es_BZ": "испанхойн (Белиз)", "es_CL": "испанхойн (Чили)", "es_CO": "испанхойн (Колумби)", "es_CR": "испанхойн (Коста-Рика)", @@ -320,6 +321,7 @@ "it_CH": "итальянийн (Швейцари)", "it_IT": "итальянийн (Итали)", "it_SM": "итальянийн (Сан-Марино)", + "it_VA": "итальянийн (Ватикан)", "ja": "японийн", "ja_JP": "японийн (Япони)", "ka": "гуьржийн", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cs.json b/src/Symfony/Component/Intl/Resources/data/locales/cs.json index e067c33130..e67b6d54a6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cs.json @@ -71,7 +71,7 @@ "ce": "čečenština", "ce_RU": "čečenština (Rusko)", "cs": "čeština", - "cs_CZ": "čeština (Česká republika)", + "cs_CZ": "čeština (Česko)", "cy": "velština", "cy_GB": "velština (Spojené království)", "da": "dánština", @@ -201,6 +201,7 @@ "es_AR": "španělština (Argentina)", "es_BO": "španělština (Bolívie)", "es_BR": "španělština (Brazílie)", + "es_BZ": "španělština (Belize)", "es_CL": "španělština (Chile)", "es_CO": "španělština (Kolumbie)", "es_CR": "španělština (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italština (Švýcarsko)", "it_IT": "italština (Itálie)", "it_SM": "italština (San Marino)", + "it_VA": "italština (Vatikán)", "ja": "japonština", "ja_JP": "japonština (Japonsko)", "ka": "gruzínština", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/cy.json b/src/Symfony/Component/Intl/Resources/data/locales/cy.json index aee2d0676e..5970c5932d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/cy.json @@ -71,7 +71,7 @@ "ce": "Tsietsieneg", "ce_RU": "Tsietsieneg (Rwsia)", "cs": "Tsieceg", - "cs_CZ": "Tsieceg (Gweriniaeth Tsiec)", + "cs_CZ": "Tsieceg (Tsiecia)", "cy": "Cymraeg", "cy_GB": "Cymraeg (Y Deyrnas Unedig)", "da": "Daneg", @@ -201,6 +201,7 @@ "es_AR": "Sbaeneg (Yr Ariannin)", "es_BO": "Sbaeneg (Bolifia)", "es_BR": "Sbaeneg (Brasil)", + "es_BZ": "Sbaeneg (Belize)", "es_CL": "Sbaeneg (Chile)", "es_CO": "Sbaeneg (Colombia)", "es_CR": "Sbaeneg (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Eidaleg (Y Swistir)", "it_IT": "Eidaleg (Yr Eidal)", "it_SM": "Eidaleg (San Marino)", + "it_VA": "Eidaleg (Y Fatican)", "ja": "Japaneeg", "ja_JP": "Japaneeg (Japan)", "ka": "Georgeg", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/da.json b/src/Symfony/Component/Intl/Resources/data/locales/da.json index 67056cbbf0..93feab6ff7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/da.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/da.json @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasilien)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Schweiz)", "it_IT": "italiensk (Italien)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/de.json b/src/Symfony/Component/Intl/Resources/data/locales/de.json index 6c7f54faff..621bd8a0d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/de.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/de.json @@ -71,7 +71,7 @@ "ce": "Tschetschenisch", "ce_RU": "Tschetschenisch (Russland)", "cs": "Tschechisch", - "cs_CZ": "Tschechisch (Tschechische Republik)", + "cs_CZ": "Tschechisch (Tschechien)", "cy": "Walisisch", "cy_GB": "Walisisch (Vereinigtes Königreich)", "da": "Dänisch", @@ -201,6 +201,7 @@ "es_AR": "Spanisch (Argentinien)", "es_BO": "Spanisch (Bolivien)", "es_BR": "Spanisch (Brasilien)", + "es_BZ": "Spanisch (Belize)", "es_CL": "Spanisch (Chile)", "es_CO": "Spanisch (Kolumbien)", "es_CR": "Spanisch (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italienisch (Schweiz)", "it_IT": "Italienisch (Italien)", "it_SM": "Italienisch (San Marino)", + "it_VA": "Italienisch (Vatikanstadt)", "ja": "Japanisch", "ja_JP": "Japanisch (Japan)", "ka": "Georgisch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/dz.json b/src/Symfony/Component/Intl/Resources/data/locales/dz.json index 9c83d9f161..8a4fe9f95b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/dz.json @@ -190,6 +190,7 @@ "es_AR": "ཨིས་པེ་ནིཤ་ཁ (ཨར་ཇེན་ཊི་ན)", "es_BO": "ཨིས་པེ་ནིཤ་ཁ (བྷེ་ལི་བི་ཡ)", "es_BR": "ཨིས་པེ་ནིཤ་ཁ (བྲ་ཛིལ)", + "es_BZ": "ཨིས་པེ་ནིཤ་ཁ (བྷེ་ལིཛ)", "es_CL": "ཨིས་པེ་ནིཤ་ཁ (ཅི་ལི)", "es_CO": "ཨིས་པེ་ནིཤ་ཁ (ཀོ་ལོམ་བྷི་ཡ)", "es_CR": "ཨིས་པེ་ནིཤ་ཁ (ཀོས་ཊ་རི་ཀ)", @@ -305,6 +306,7 @@ "it_CH": "ཨི་ཊ་ལི་ཡཱན་ཁ (སུ་ཝིཊ་ཛར་ལེནཌ)", "it_IT": "ཨི་ཊ་ལི་ཡཱན་ཁ (ཨི་ཊ་ལི)", "it_SM": "ཨི་ཊ་ལི་ཡཱན་ཁ (སཱན་མ་རི་ནོ)", + "it_VA": "ཨི་ཊ་ལི་ཡཱན་ཁ (བ་ཊི་ཀཱན་ སི་ཊི)", "ja": "ཇཱ་པཱ་ནིས་ཁ", "ja_JP": "ཇཱ་པཱ་ནིས་ཁ (ཇ་པཱན)", "ka": "ཇཽ་ཇི་ཡཱན་ཁ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ee.json b/src/Symfony/Component/Intl/Resources/data/locales/ee.json index 4e9f337209..9c54da8b92 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ee.json @@ -196,6 +196,7 @@ "es_AR": "Spanishgbe (Argentina nutome)", "es_BO": "Spanishgbe (Bolivia nutome)", "es_BR": "Spanishgbe (Brazil nutome)", + "es_BZ": "Spanishgbe (Belize nutome)", "es_CL": "Spanishgbe (Tsile nutome)", "es_CO": "Spanishgbe (Kolombia nutome)", "es_CR": "Spanishgbe (Kosta Rika nutome)", @@ -306,6 +307,7 @@ "it_CH": "Italiagbe (Switzerland nutome)", "it_IT": "Italiagbe (Italia nutome)", "it_SM": "Italiagbe (San Marino nutome)", + "it_VA": "Italiagbe (Vatikandu nutome)", "ja": "Japangbe", "ja_JP": "Japangbe (Dzapan nutome)", "ka": "gɔgiagbe", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/el.json b/src/Symfony/Component/Intl/Resources/data/locales/el.json index 7beb36ed99..a250bb1160 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/el.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/el.json @@ -71,7 +71,7 @@ "ce": "Τσετσενικά", "ce_RU": "Τσετσενικά (Ρωσία)", "cs": "Τσεχικά", - "cs_CZ": "Τσεχικά (Τσεχική Δημοκρατία)", + "cs_CZ": "Τσεχικά (Τσεχία)", "cy": "Ουαλικά", "cy_GB": "Ουαλικά (Ηνωμένο Βασίλειο)", "da": "Δανικά", @@ -201,6 +201,7 @@ "es_AR": "Ισπανικά (Αργεντινή)", "es_BO": "Ισπανικά (Βολιβία)", "es_BR": "Ισπανικά (Βραζιλία)", + "es_BZ": "Ισπανικά (Μπελίζ)", "es_CL": "Ισπανικά (Χιλή)", "es_CO": "Ισπανικά (Κολομβία)", "es_CR": "Ισπανικά (Κόστα Ρίκα)", @@ -327,6 +328,7 @@ "it_CH": "Ιταλικά (Ελβετία)", "it_IT": "Ιταλικά (Ιταλία)", "it_SM": "Ιταλικά (Άγιος Μαρίνος)", + "it_VA": "Ιταλικά (Βατικανό)", "ja": "Ιαπωνικά", "ja_JP": "Ιαπωνικά (Ιαπωνία)", "ka": "Γεωργιανά", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/en.json b/src/Symfony/Component/Intl/Resources/data/locales/en.json index 61e91a4321..514021253b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/en.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/en.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Russia)", "cs": "Czech", - "cs_CZ": "Czech (Czech Republic)", + "cs_CZ": "Czech (Czechia)", "cy": "Welsh", "cy_GB": "Welsh (United Kingdom)", "da": "Danish", @@ -201,6 +201,7 @@ "es_AR": "Spanish (Argentina)", "es_BO": "Spanish (Bolivia)", "es_BR": "Spanish (Brazil)", + "es_BZ": "Spanish (Belize)", "es_CL": "Spanish (Chile)", "es_CO": "Spanish (Colombia)", "es_CR": "Spanish (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italian (Switzerland)", "it_IT": "Italian (Italy)", "it_SM": "Italian (San Marino)", + "it_VA": "Italian (Vatican City)", "ja": "Japanese", "ja_JP": "Japanese (Japan)", "ka": "Georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eo.json b/src/Symfony/Component/Intl/Resources/data/locales/eo.json index 5b5e1acc48..04930bd31c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eo.json @@ -167,6 +167,7 @@ "es_AR": "hispana (Argentino)", "es_BO": "hispana (Bolivio)", "es_BR": "hispana (Brazilo)", + "es_BZ": "hispana (Belizo)", "es_CL": "hispana (Ĉilio)", "es_CO": "hispana (Kolombio)", "es_CR": "hispana (Kostariko)", @@ -277,6 +278,7 @@ "it_CH": "itala (Svisujo)", "it_IT": "itala (Italujo)", "it_SM": "itala (San-Marino)", + "it_VA": "itala (Vatikano)", "ja": "japana", "ja_JP": "japana (Japanujo)", "ka": "kartvela", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/es.json b/src/Symfony/Component/Intl/Resources/data/locales/es.json index fd1adb8841..49f4e5524f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/es.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/es.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rusia)", "cs": "checo", - "cs_CZ": "checo (República Checa)", + "cs_CZ": "checo (Chequia)", "cy": "galés", "cy_GB": "galés (Reino Unido)", "da": "danés", @@ -201,6 +201,7 @@ "es_AR": "español (Argentina)", "es_BO": "español (Bolivia)", "es_BR": "español (Brasil)", + "es_BZ": "español (Belice)", "es_CL": "español (Chile)", "es_CO": "español (Colombia)", "es_CR": "español (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suiza)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Ciudad del Vaticano)", "ja": "japonés", "ja_JP": "japonés (Japón)", "ka": "georgiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/et.json b/src/Symfony/Component/Intl/Resources/data/locales/et.json index 7d691b6fa0..aaccbce6db 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/et.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/et.json @@ -71,7 +71,7 @@ "ce": "tšetšeeni", "ce_RU": "tšetšeeni (Venemaa)", "cs": "tšehhi", - "cs_CZ": "tšehhi (Tšehhi)", + "cs_CZ": "tšehhi (Tšehhia)", "cy": "kõmri", "cy_GB": "kõmri (Suurbritannia)", "da": "taani", @@ -201,6 +201,7 @@ "es_AR": "hispaania (Argentina)", "es_BO": "hispaania (Boliivia)", "es_BR": "hispaania (Brasiilia)", + "es_BZ": "hispaania (Belize)", "es_CL": "hispaania (Tšiili)", "es_CO": "hispaania (Colombia)", "es_CR": "hispaania (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "itaalia (Šveits)", "it_IT": "itaalia (Itaalia)", "it_SM": "itaalia (San Marino)", + "it_VA": "itaalia (Vatikan)", "ja": "jaapani", "ja_JP": "jaapani (Jaapan)", "ka": "gruusia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/eu.json b/src/Symfony/Component/Intl/Resources/data/locales/eu.json index 595e479513..b563146fe5 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/eu.json @@ -71,7 +71,7 @@ "ce": "txetxeniera", "ce_RU": "txetxeniera (Errusia)", "cs": "txekiera", - "cs_CZ": "txekiera (Txekiar Errepublika)", + "cs_CZ": "txekiera (Txekia)", "cy": "galesera", "cy_GB": "galesera (Erresuma Batua)", "da": "daniera", @@ -201,6 +201,7 @@ "es_AR": "espainiera (Argentina)", "es_BO": "espainiera (Bolivia)", "es_BR": "espainiera (Brasil)", + "es_BZ": "espainiera (Belize)", "es_CL": "espainiera (Txile)", "es_CO": "espainiera (Kolonbia)", "es_CR": "espainiera (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiera (Suitza)", "it_IT": "italiera (Italia)", "it_SM": "italiera (San Marino)", + "it_VA": "italiera (Vatikano Hiria)", "ja": "japoniera", "ja_JP": "japoniera (Japonia)", "ka": "georgiera", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa.json b/src/Symfony/Component/Intl/Resources/data/locales/fa.json index 13cf37b569..f6c61e1b36 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa.json @@ -201,6 +201,7 @@ "es_AR": "اسپانیایی (آرژانتین)", "es_BO": "اسپانیایی (بولیوی)", "es_BR": "اسپانیایی (برزیل)", + "es_BZ": "اسپانیایی (بلیز)", "es_CL": "اسپانیایی (شیلی)", "es_CO": "اسپانیایی (کلمبیا)", "es_CR": "اسپانیایی (کاستاریکا)", @@ -327,6 +328,7 @@ "it_CH": "ایتالیایی (سوئیس)", "it_IT": "ایتالیایی (ایتالیا)", "it_SM": "ایتالیایی (سان‌مارینو)", + "it_VA": "ایتالیایی (واتیکان)", "ja": "ژاپنی", "ja_JP": "ژاپنی (ژاپن)", "ka": "گرجی", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json index 3895deed89..d0018552a4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fa_AF.json @@ -60,6 +60,7 @@ "es_AR": "هسپانوی (ارجنتاین)", "es_BO": "هسپانوی (بولیویا)", "es_BR": "هسپانوی (برازیل)", + "es_BZ": "هسپانوی (بلیز)", "es_CL": "هسپانوی (چلی)", "es_CO": "هسپانوی (کولمبیا)", "es_CR": "هسپانوی (کاستریکا)", @@ -122,6 +123,7 @@ "it_CH": "ایتالوی (سویس)", "it_IT": "ایتالوی (ایتالیا)", "it_SM": "ایتالوی (سان‌مارینو)", + "it_VA": "ایتالوی (واتیکان)", "ja": "جاپانی", "ja_JP": "جاپانی (جاپان)", "ki_KE": "کیکویویی (کینیا)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ff.json b/src/Symfony/Component/Intl/Resources/data/locales/ff.json index f9a1507ce1..3fa5ac5985 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ff.json @@ -146,6 +146,7 @@ "es_AR": "Español (Arjantiin)", "es_BO": "Español (Boliwii)", "es_BR": "Español (Beresiil)", + "es_BZ": "Español (Beliise)", "es_CL": "Español (Cilii)", "es_CO": "Español (Kolombiya)", "es_CR": "Español (Kosta Rikaa)", @@ -236,6 +237,7 @@ "it_CH": "Italiyeere (Suwiis)", "it_IT": "Italiyeere (Itali)", "it_SM": "Italiyeere (See Maree)", + "it_VA": "Italiyeere (Dowla Waticaan)", "ja": "Saponeere", "ja_JP": "Saponeere (Sapoo)", "km": "Kemeere", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fi.json b/src/Symfony/Component/Intl/Resources/data/locales/fi.json index 4f78e3d7a9..2d604a3a50 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fi.json @@ -71,7 +71,7 @@ "ce": "tšetšeeni", "ce_RU": "tšetšeeni (Venäjä)", "cs": "tšekki", - "cs_CZ": "tšekki (Tšekki)", + "cs_CZ": "tšekki (Tšekinmaa)", "cy": "kymri", "cy_GB": "kymri (Iso-Britannia)", "da": "tanska", @@ -201,6 +201,7 @@ "es_AR": "espanja (Argentiina)", "es_BO": "espanja (Bolivia)", "es_BR": "espanja (Brasilia)", + "es_BZ": "espanja (Belize)", "es_CL": "espanja (Chile)", "es_CO": "espanja (Kolumbia)", "es_CR": "espanja (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italia (Sveitsi)", "it_IT": "italia (Italia)", "it_SM": "italia (San Marino)", + "it_VA": "italia (Vatikaani)", "ja": "japani", "ja_JP": "japani (Japani)", "ka": "georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fo.json b/src/Symfony/Component/Intl/Resources/data/locales/fo.json index bf30d9e832..f954221289 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fo.json @@ -201,6 +201,7 @@ "es_AR": "spanskt (Argentina)", "es_BO": "spanskt (Bolivia)", "es_BR": "spanskt (Brasil)", + "es_BZ": "spanskt (Belis)", "es_CL": "spanskt (Kili)", "es_CO": "spanskt (Kolombia)", "es_CR": "spanskt (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italskt (Sveis)", "it_IT": "italskt (Italia)", "it_SM": "italskt (San Marino)", + "it_VA": "italskt (Vatikanbýur)", "ja": "japanskt", "ja_JP": "japanskt (Japan)", "ka": "georgiskt", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr.json b/src/Symfony/Component/Intl/Resources/data/locales/fr.json index 9dd7d01349..3fa02ed001 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr.json @@ -71,7 +71,7 @@ "ce": "tchétchène", "ce_RU": "tchétchène (Russie)", "cs": "tchèque", - "cs_CZ": "tchèque (République tchèque)", + "cs_CZ": "tchèque (Tchéquie)", "cy": "gallois", "cy_GB": "gallois (Royaume-Uni)", "da": "danois", @@ -201,6 +201,7 @@ "es_AR": "espagnol (Argentine)", "es_BO": "espagnol (Bolivie)", "es_BR": "espagnol (Brésil)", + "es_BZ": "espagnol (Belize)", "es_CL": "espagnol (Chili)", "es_CO": "espagnol (Colombie)", "es_CR": "espagnol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italien (Suisse)", "it_IT": "italien (Italie)", "it_SM": "italien (Saint-Marin)", + "it_VA": "italien (État de la Cité du Vatican)", "ja": "japonais", "ja_JP": "japonais (Japon)", "ka": "géorgien", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json index 34d27e3897..5d3e85cb62 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fr_CA.json @@ -29,6 +29,7 @@ "gu": "gujarati", "gu_IN": "gujarati (Inde)", "gv_IM": "mannois (île de Man)", + "it_VA": "italien (Cité du Vatican)", "kl": "kalaallisut", "kl_GL": "kalaallisut (Groenland)", "ms_BN": "malais (Brunei)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/fy.json b/src/Symfony/Component/Intl/Resources/data/locales/fy.json index 9bec67e25c..0ee0bdd79b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/fy.json @@ -201,6 +201,7 @@ "es_AR": "Spaansk (Argentinië)", "es_BO": "Spaansk (Bolivia)", "es_BR": "Spaansk (Brazilië)", + "es_BZ": "Spaansk (Belize)", "es_CL": "Spaansk (Chili)", "es_CO": "Spaansk (Kolombia)", "es_CR": "Spaansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaansk (Switserlân)", "it_IT": "Italiaansk (Italië)", "it_SM": "Italiaansk (San Marino)", + "it_VA": "Italiaansk (Vaticaanstêd)", "ja": "Japans", "ja_JP": "Japans (Japan)", "ka": "Georgysk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ga.json b/src/Symfony/Component/Intl/Resources/data/locales/ga.json index a550977b21..f413a576a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ga.json @@ -196,6 +196,7 @@ "es_AR": "Spáinnis (An Airgintín)", "es_BO": "Spáinnis (An Bholaiv)", "es_BR": "Spáinnis (An Bhrasaíl)", + "es_BZ": "Spáinnis (An Bheilís)", "es_CL": "Spáinnis (An tSile)", "es_CO": "Spáinnis (An Cholóim)", "es_CR": "Spáinnis (Cósta Ríce)", @@ -320,6 +321,7 @@ "it_CH": "Iodáilis (An Eilvéis)", "it_IT": "Iodáilis (An Iodáil)", "it_SM": "Iodáilis (San Mairíne)", + "it_VA": "Iodáilis (An Vatacáin)", "ja": "Seapáinis", "ja_JP": "Seapáinis (An tSeapáin)", "ka": "Seoirsis", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gd.json b/src/Symfony/Component/Intl/Resources/data/locales/gd.json index 4b77e05a2e..df57196084 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gd.json @@ -71,7 +71,7 @@ "ce": "Deideanais", "ce_RU": "Deideanais (An Ruis)", "cs": "Seicis", - "cs_CZ": "Seicis (Poblachd na Seice)", + "cs_CZ": "Seicis (An t-Seic)", "cy": "Cuimris", "cy_GB": "Cuimris (An Rìoghachd Aonaichte)", "da": "Danmhairgis", @@ -201,6 +201,7 @@ "es_AR": "Spàinntis (An Argantain)", "es_BO": "Spàinntis (Boilibhia)", "es_BR": "Spàinntis (Braisil)", + "es_BZ": "Spàinntis (A’ Bheilìs)", "es_CL": "Spàinntis (An t-Sile)", "es_CO": "Spàinntis (Coloimbia)", "es_CR": "Spàinntis (Costa Rìcea)", @@ -327,6 +328,7 @@ "it_CH": "Eadailtis (An Eilbheis)", "it_IT": "Eadailtis (An Eadailt)", "it_SM": "Eadailtis (San Marino)", + "it_VA": "Eadailtis (Cathair na Bhatacain)", "ja": "Seapanais", "ja_JP": "Seapanais (An t-Seapan)", "ka": "Cairtbheilis", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gl.json b/src/Symfony/Component/Intl/Resources/data/locales/gl.json index 5bc41ff9ad..74261fb298 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gl.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rusia)", "cs": "checo", - "cs_CZ": "checo (República Checa)", + "cs_CZ": "checo (Chequia)", "cy": "galés", "cy_GB": "galés (Reino Unido)", "da": "dinamarqués", @@ -201,6 +201,7 @@ "es_AR": "español (Arxentina)", "es_BO": "español (Bolivia)", "es_BR": "español (Brasil)", + "es_BZ": "español (Belice)", "es_CL": "español (Chile)", "es_CO": "español (Colombia)", "es_CR": "español (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suíza)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Cidade do Vaticano)", "ja": "xaponés", "ja_JP": "xaponés (O Xapón)", "ka": "xeorxiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/gu.json b/src/Symfony/Component/Intl/Resources/data/locales/gu.json index bd4a500d03..7a1166b6c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/gu.json @@ -71,7 +71,7 @@ "ce": "ચેચન", "ce_RU": "ચેચન (રશિયા)", "cs": "ચેક", - "cs_CZ": "ચેક (ચેક રીપબ્લિક)", + "cs_CZ": "ચેક (ચેકીયા)", "cy": "વેલ્શ", "cy_GB": "વેલ્શ (યુનાઇટેડ કિંગડમ)", "da": "ડેનિશ", @@ -201,6 +201,7 @@ "es_AR": "સ્પેનિશ (આર્જેન્ટીના)", "es_BO": "સ્પેનિશ (બોલિવિયા)", "es_BR": "સ્પેનિશ (બ્રાઝિલ)", + "es_BZ": "સ્પેનિશ (બેલીઝ)", "es_CL": "સ્પેનિશ (ચિલી)", "es_CO": "સ્પેનિશ (કોલમ્બિયા)", "es_CR": "સ્પેનિશ (કોસ્ટા રિકા)", @@ -327,6 +328,7 @@ "it_CH": "ઇટાલિયન (સ્વિટ્ઝર્લૅન્ડ)", "it_IT": "ઇટાલિયન (ઇટાલી)", "it_SM": "ઇટાલિયન (સૅન મેરિનો)", + "it_VA": "ઇટાલિયન (વેટિકન સિટી)", "ja": "જાપાનીઝ", "ja_JP": "જાપાનીઝ (જાપાન)", "ka": "જ્યોર્જિઅન", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ha.json b/src/Symfony/Component/Intl/Resources/data/locales/ha.json index 4b3378057e..88549916c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ha.json @@ -146,6 +146,7 @@ "es_AR": "Ispaniyanci (Arjantiniya)", "es_BO": "Ispaniyanci (Bolibiya)", "es_BR": "Ispaniyanci (Birazil)", + "es_BZ": "Ispaniyanci (Beliz)", "es_CL": "Ispaniyanci (Cayile)", "es_CO": "Ispaniyanci (Kolambiya)", "es_CR": "Ispaniyanci (Kwasta Rika)", @@ -231,6 +232,7 @@ "it_CH": "Italiyanci (Suwizalan)", "it_IT": "Italiyanci (Italiya)", "it_SM": "Italiyanci (San Marino)", + "it_VA": "Italiyanci (Batikan)", "ja": "Japananci", "ja_JP": "Japananci (Japan)", "km": "Harshen Kimar", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/he.json b/src/Symfony/Component/Intl/Resources/data/locales/he.json index e867e3a4a7..ebb41db80a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/he.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/he.json @@ -71,7 +71,7 @@ "ce": "צ׳צ׳נית", "ce_RU": "צ׳צ׳נית (רוסיה)", "cs": "צ׳כית", - "cs_CZ": "צ׳כית (הרפובליקה הצ׳כית)", + "cs_CZ": "צ׳כית (צ׳כיה)", "cy": "וולשית", "cy_GB": "וולשית (הממלכה המאוחדת)", "da": "דנית", @@ -201,6 +201,7 @@ "es_AR": "ספרדית (ארגנטינה)", "es_BO": "ספרדית (בוליביה)", "es_BR": "ספרדית (ברזיל)", + "es_BZ": "ספרדית (בליז)", "es_CL": "ספרדית (צ׳ילה)", "es_CO": "ספרדית (קולומביה)", "es_CR": "ספרדית (קוסטה ריקה)", @@ -327,6 +328,7 @@ "it_CH": "איטלקית (שווייץ)", "it_IT": "איטלקית (איטליה)", "it_SM": "איטלקית (סן מרינו)", + "it_VA": "איטלקית (הוותיקן)", "ja": "יפנית", "ja_JP": "יפנית (יפן)", "ka": "גאורגית", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hi.json b/src/Symfony/Component/Intl/Resources/data/locales/hi.json index c6bd20be09..a7989ec705 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hi.json @@ -71,7 +71,7 @@ "ce": "चेचन", "ce_RU": "चेचन (रूस)", "cs": "चेक", - "cs_CZ": "चेक (चेक गणराज्य)", + "cs_CZ": "चेक (चेकिया)", "cy": "वेल्श", "cy_GB": "वेल्श (यूनाइटेड किंगडम)", "da": "डेनिश", @@ -201,6 +201,7 @@ "es_AR": "स्पेनी (अर्जेंटीना)", "es_BO": "स्पेनी (बोलीविया)", "es_BR": "स्पेनी (ब्राज़ील)", + "es_BZ": "स्पेनी (बेलीज़)", "es_CL": "स्पेनी (चिली)", "es_CO": "स्पेनी (कोलंबिया)", "es_CR": "स्पेनी (कोस्टारिका)", @@ -327,6 +328,7 @@ "it_CH": "इतालवी (स्विट्ज़रलैंड)", "it_IT": "इतालवी (इटली)", "it_SM": "इतालवी (सैन मेरीनो)", + "it_VA": "इतालवी (वेटिकन सिटी)", "ja": "जापानी", "ja_JP": "जापानी (जापान)", "ka": "जॉर्जियाई", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hr.json b/src/Symfony/Component/Intl/Resources/data/locales/hr.json index 9c4ea9d734..59efe39e25 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hr.json @@ -71,7 +71,7 @@ "ce": "čečenski", "ce_RU": "čečenski (Rusija)", "cs": "češki", - "cs_CZ": "češki (Češka Republika)", + "cs_CZ": "češki (Češka)", "cy": "velški", "cy_GB": "velški (Ujedinjeno Kraljevstvo)", "da": "danski", @@ -201,6 +201,7 @@ "es_AR": "španjolski (Argentina)", "es_BO": "španjolski (Bolivija)", "es_BR": "španjolski (Brazil)", + "es_BZ": "španjolski (Belize)", "es_CL": "španjolski (Čile)", "es_CO": "španjolski (Kolumbija)", "es_CR": "španjolski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "talijanski (Švicarska)", "it_IT": "talijanski (Italija)", "it_SM": "talijanski (San Marino)", + "it_VA": "talijanski (Vatikanski Grad)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hu.json b/src/Symfony/Component/Intl/Resources/data/locales/hu.json index b6eb047cf9..af6b40929d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hu.json @@ -201,6 +201,7 @@ "es_AR": "spanyol (Argentína)", "es_BO": "spanyol (Bolívia)", "es_BR": "spanyol (Brazília)", + "es_BZ": "spanyol (Belize)", "es_CL": "spanyol (Chile)", "es_CO": "spanyol (Kolumbia)", "es_CR": "spanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "olasz (Svájc)", "it_IT": "olasz (Olaszország)", "it_SM": "olasz (San Marino)", + "it_VA": "olasz (Vatikán)", "ja": "japán", "ja_JP": "japán (Japán)", "ka": "grúz", @@ -385,7 +387,7 @@ "mt_MT": "máltai (Málta)", "my": "burmai", "my_MM": "burmai (Mianmar (Burma))", - "nb": "norvég (bokmál)", + "nb": "norvég (bokmål)", "nb_NO": "norvég (Norvégia)", "nb_SJ": "norvég (Svalbard és Jan Mayen)", "nd": "északi ndebele", @@ -401,7 +403,7 @@ "nl_NL": "holland (Hollandia)", "nl_SR": "holland (Suriname)", "nl_SX": "holland (Sint Maarten)", - "nn": "norvég (nynrosk)", + "nn": "norvég (nynorsk)", "nn_NO": "norvég (Norvégia)", "no": "norvég", "no_NO": "norvég (Norvégia)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/hy.json b/src/Symfony/Component/Intl/Resources/data/locales/hy.json index 8466eae792..d42b5e1620 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/hy.json @@ -201,6 +201,7 @@ "es_AR": "իսպաներեն (Արգենտինա)", "es_BO": "իսպաներեն (Բոլիվիա)", "es_BR": "իսպաներեն (Բրազիլիա)", + "es_BZ": "իսպաներեն (Բելիզ)", "es_CL": "իսպաներեն (Չիլի)", "es_CO": "իսպաներեն (Կոլումբիա)", "es_CR": "իսպաներեն (Կոստա Ռիկա)", @@ -327,6 +328,7 @@ "it_CH": "իտալերեն (Շվեյցարիա)", "it_IT": "իտալերեն (Իտալիա)", "it_SM": "իտալերեն (Սան Մարինո)", + "it_VA": "իտալերեն (Վատիկան)", "ja": "ճապոներեն", "ja_JP": "ճապոներեն (Ճապոնիա)", "ka": "վրացերեն", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/id.json b/src/Symfony/Component/Intl/Resources/data/locales/id.json index 363a022b42..91c1ea0e08 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/id.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/id.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Rusia)", "cs": "Cheska", - "cs_CZ": "Cheska (Republik Cheska)", + "cs_CZ": "Cheska (Cheska)", "cy": "Welsh", "cy_GB": "Welsh (Inggris Raya)", "da": "Dansk", @@ -201,6 +201,7 @@ "es_AR": "Spanyol (Argentina)", "es_BO": "Spanyol (Bolivia)", "es_BR": "Spanyol (Brasil)", + "es_BZ": "Spanyol (Belize)", "es_CL": "Spanyol (Cile)", "es_CO": "Spanyol (Kolombia)", "es_CR": "Spanyol (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "Italia (Swiss)", "it_IT": "Italia (Italia)", "it_SM": "Italia (San Marino)", + "it_VA": "Italia (Vatikan)", "ja": "Jepang", "ja_JP": "Jepang (Jepang)", "ka": "Georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/is.json b/src/Symfony/Component/Intl/Resources/data/locales/is.json index 222290aeec..e258b38afe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/is.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/is.json @@ -201,6 +201,7 @@ "es_AR": "spænska (Argentína)", "es_BO": "spænska (Bólivía)", "es_BR": "spænska (Brasilía)", + "es_BZ": "spænska (Belís)", "es_CL": "spænska (Síle)", "es_CO": "spænska (Kólumbía)", "es_CR": "spænska (Kostaríka)", @@ -327,6 +328,7 @@ "it_CH": "ítalska (Sviss)", "it_IT": "ítalska (Ítalía)", "it_SM": "ítalska (San Marínó)", + "it_VA": "ítalska (Vatíkanið)", "ja": "japanska", "ja_JP": "japanska (Japan)", "ka": "georgíska", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/it.json b/src/Symfony/Component/Intl/Resources/data/locales/it.json index 983f189d65..eac3b51d12 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/it.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/it.json @@ -71,7 +71,7 @@ "ce": "ceceno", "ce_RU": "ceceno (Russia)", "cs": "ceco", - "cs_CZ": "ceco (Repubblica Ceca)", + "cs_CZ": "ceco (Cèchia)", "cy": "gallese", "cy_GB": "gallese (Regno Unito)", "da": "danese", @@ -201,6 +201,7 @@ "es_AR": "spagnolo (Argentina)", "es_BO": "spagnolo (Bolivia)", "es_BR": "spagnolo (Brasile)", + "es_BZ": "spagnolo (Belize)", "es_CL": "spagnolo (Cile)", "es_CO": "spagnolo (Colombia)", "es_CR": "spagnolo (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Svizzera)", "it_IT": "italiano (Italia)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Città del Vaticano)", "ja": "giapponese", "ja_JP": "giapponese (Giappone)", "ka": "georgiano", @@ -436,7 +438,7 @@ "pt_MZ": "portoghese (Mozambico)", "pt_PT": "portoghese (Portogallo)", "pt_ST": "portoghese (São Tomé e Príncipe)", - "pt_TL": "portoghese (Timor Leste)", + "pt_TL": "portoghese (Timor Est)", "qu": "quechua", "qu_BO": "quechua (Bolivia)", "qu_EC": "quechua (Ecuador)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ja.json b/src/Symfony/Component/Intl/Resources/data/locales/ja.json index ba15c61418..51aa1024c6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ja.json @@ -71,7 +71,7 @@ "ce": "チェチェン語", "ce_RU": "チェチェン語 (ロシア)", "cs": "チェコ語", - "cs_CZ": "チェコ語 (チェコ共和国)", + "cs_CZ": "チェコ語 (チェコ)", "cy": "ウェールズ語", "cy_GB": "ウェールズ語 (イギリス)", "da": "デンマーク語", @@ -201,6 +201,7 @@ "es_AR": "スペイン語 (アルゼンチン)", "es_BO": "スペイン語 (ボリビア)", "es_BR": "スペイン語 (ブラジル)", + "es_BZ": "スペイン語 (ベリーズ)", "es_CL": "スペイン語 (チリ)", "es_CO": "スペイン語 (コロンビア)", "es_CR": "スペイン語 (コスタリカ)", @@ -327,6 +328,7 @@ "it_CH": "イタリア語 (スイス)", "it_IT": "イタリア語 (イタリア)", "it_SM": "イタリア語 (サンマリノ)", + "it_VA": "イタリア語 (バチカン市国)", "ja": "日本語", "ja_JP": "日本語 (日本)", "ka": "ジョージア語", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ka.json b/src/Symfony/Component/Intl/Resources/data/locales/ka.json index 782db63adb..bdf8a66e81 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ka.json @@ -71,7 +71,7 @@ "ce": "ჩეჩნური", "ce_RU": "ჩეჩნური (რუსეთი)", "cs": "ჩეხური", - "cs_CZ": "ჩეხური (ჩეხეთის რესპუბლიკა)", + "cs_CZ": "ჩეხური (ჩეხეთი)", "cy": "უელსური", "cy_GB": "უელსური (გაერთიანებული სამეფო)", "da": "დანიური", @@ -201,6 +201,7 @@ "es_AR": "ესპანური (არგენტინა)", "es_BO": "ესპანური (ბოლივია)", "es_BR": "ესპანური (ბრაზილია)", + "es_BZ": "ესპანური (ბელიზი)", "es_CL": "ესპანური (ჩილე)", "es_CO": "ესპანური (კოლუმბია)", "es_CR": "ესპანური (კოსტა-რიკა)", @@ -327,6 +328,7 @@ "it_CH": "იტალიური (შვეიცარია)", "it_IT": "იტალიური (იტალია)", "it_SM": "იტალიური (სან-მარინო)", + "it_VA": "იტალიური (ქალაქი ვატიკანი)", "ja": "იაპონური", "ja_JP": "იაპონური (იაპონია)", "ka": "ქართული", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ki.json b/src/Symfony/Component/Intl/Resources/data/locales/ki.json index 2fee439dd1..414eed372a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ki.json @@ -146,6 +146,7 @@ "es_AR": "Kihispania (Ajentina)", "es_BO": "Kihispania (Bolivia)", "es_BR": "Kihispania (Brazili)", + "es_BZ": "Kihispania (Belize)", "es_CL": "Kihispania (Chile)", "es_CO": "Kihispania (Kolombia)", "es_CR": "Kihispania (Kostarika)", @@ -231,6 +232,7 @@ "it_CH": "Kĩtaliano (Uswisi)", "it_IT": "Kĩtaliano (Italia)", "it_SM": "Kĩtaliano (Samarino)", + "it_VA": "Kĩtaliano (Vatikani)", "ja": "Kĩnjabani", "ja_JP": "Kĩnjabani (Njabani)", "ki": "Gikuyu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kk.json b/src/Symfony/Component/Intl/Resources/data/locales/kk.json index 5f4ccec6b8..9bcb6b3034 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kk.json @@ -71,7 +71,7 @@ "ce": "шешен тілі", "ce_RU": "шешен тілі (Ресей)", "cs": "чех тілі", - "cs_CZ": "чех тілі (Чех Республикасы)", + "cs_CZ": "чех тілі (Чехия)", "cy": "валлий тілі", "cy_GB": "валлий тілі (Ұлыбритания)", "da": "дат тілі", @@ -201,6 +201,7 @@ "es_AR": "испан тілі (Аргентина)", "es_BO": "испан тілі (Боливия)", "es_BR": "испан тілі (Бразилия)", + "es_BZ": "испан тілі (Белиз)", "es_CL": "испан тілі (Чили)", "es_CO": "испан тілі (Колумбия)", "es_CR": "испан тілі (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "итальян тілі (Швейцария)", "it_IT": "итальян тілі (Италия)", "it_SM": "итальян тілі (Сан-Марино)", + "it_VA": "итальян тілі (Ватикан)", "ja": "жапон тілі", "ja_JP": "жапон тілі (Жапония)", "ka": "грузин тілі", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/km.json b/src/Symfony/Component/Intl/Resources/data/locales/km.json index 31a1572898..7b1a18d1d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/km.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/km.json @@ -71,7 +71,7 @@ "ce": "ឈីឆេន", "ce_RU": "ឈីឆេន (រុស្ស៊ី)", "cs": "ឆេក", - "cs_CZ": "ឆេក (សាធារណរដ្ឋឆេក)", + "cs_CZ": "ឆេក (ឆេគា)", "cy": "វេល", "cy_GB": "វេល (ចក្រភព​អង់គ្លេស)", "da": "ដាណឺម៉ាក", @@ -201,6 +201,7 @@ "es_AR": "អេស្ប៉ាញ (អាហ្សង់ទីន)", "es_BO": "អេស្ប៉ាញ (បូលីវី)", "es_BR": "អេស្ប៉ាញ (ប្រេស៊ីល)", + "es_BZ": "អេស្ប៉ាញ (បេលីហ្ស)", "es_CL": "អេស្ប៉ាញ (ស៊ីលី)", "es_CO": "អេស្ប៉ាញ (កូឡុំប៊ី)", "es_CR": "អេស្ប៉ាញ (កូស្តារីកា)", @@ -327,6 +328,7 @@ "it_CH": "អ៊ីតាលី (ស្វីស)", "it_IT": "អ៊ីតាលី (អ៊ីតាលី)", "it_SM": "អ៊ីតាលី (សាន​ម៉ារីណូ)", + "it_VA": "អ៊ីតាលី (បុរី​វ៉ាទីកង់)", "ja": "ជប៉ុន", "ja_JP": "ជប៉ុន (ជប៉ុន)", "ka": "ហ្សក​ហ្ស៊ី", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/kn.json b/src/Symfony/Component/Intl/Resources/data/locales/kn.json index 4bd1a6281c..1f47360551 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/kn.json @@ -71,7 +71,7 @@ "ce": "ಚೆಚನ್", "ce_RU": "ಚೆಚನ್ (ರಷ್ಯಾ)", "cs": "ಜೆಕ್", - "cs_CZ": "ಜೆಕ್ (ಝೆಕ್ ರಿಪಬ್ಲಿಕ್)", + "cs_CZ": "ಜೆಕ್ (ಝೆಕಿಯಾ)", "cy": "ವೆಲ್ಶ್", "cy_GB": "ವೆಲ್ಶ್ (ಬ್ರಿಟನ್\/ಇಂಗ್ಲೆಂಡ್)", "da": "ಡ್ಯಾನಿಶ್", @@ -201,6 +201,7 @@ "es_AR": "ಸ್ಪ್ಯಾನಿಷ್ (ಅರ್ಜೆಂಟಿನಾ)", "es_BO": "ಸ್ಪ್ಯಾನಿಷ್ (ಬೊಲಿವಿಯಾ)", "es_BR": "ಸ್ಪ್ಯಾನಿಷ್ (ಬ್ರೆಜಿಲ್)", + "es_BZ": "ಸ್ಪ್ಯಾನಿಷ್ (ಬೆಲಿಜ್)", "es_CL": "ಸ್ಪ್ಯಾನಿಷ್ (ಚಿಲಿ)", "es_CO": "ಸ್ಪ್ಯಾನಿಷ್ (ಕೊಲಂಬಿಯಾ)", "es_CR": "ಸ್ಪ್ಯಾನಿಷ್ (ಕೊಸ್ಟಾ ರಿಕಾ)", @@ -327,6 +328,7 @@ "it_CH": "ಇಟಾಲಿಯನ್ (ಸ್ವಿಟ್ಜರ್ಲ್ಯಾಂಡ್)", "it_IT": "ಇಟಾಲಿಯನ್ (ಇಟಲಿ)", "it_SM": "ಇಟಾಲಿಯನ್ (ಸ್ಯಾನ್ ಮೆರಿನೋ)", + "it_VA": "ಇಟಾಲಿಯನ್ (ವ್ಯಾಟಿಕನ್)", "ja": "ಜಾಪನೀಸ್", "ja_JP": "ಜಾಪನೀಸ್ (ಜಪಾನ್)", "ka": "ಜಾರ್ಜಿಯನ್", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ko.json b/src/Symfony/Component/Intl/Resources/data/locales/ko.json index ea526c0488..b1898f7fe7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ko.json @@ -201,6 +201,7 @@ "es_AR": "스페인어 (아르헨티나)", "es_BO": "스페인어 (볼리비아)", "es_BR": "스페인어 (브라질)", + "es_BZ": "스페인어 (벨리즈)", "es_CL": "스페인어 (칠레)", "es_CO": "스페인어 (콜롬비아)", "es_CR": "스페인어 (코스타리카)", @@ -327,6 +328,7 @@ "it_CH": "이탈리아어 (스위스)", "it_IT": "이탈리아어 (이탈리아)", "it_SM": "이탈리아어 (산마리노)", + "it_VA": "이탈리아어 (바티칸 시국)", "ja": "일본어", "ja_JP": "일본어 (일본)", "ka": "조지아어", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ks.json b/src/Symfony/Component/Intl/Resources/data/locales/ks.json index cd1f45a69f..f898c93a27 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ks.json @@ -195,6 +195,7 @@ "es_AR": "سپینِش (أرجَنٹینا)", "es_BO": "سپینِش (بولِوِیا)", "es_BR": "سپینِش (برٛازِل)", + "es_BZ": "سپینِش (بیلِج)", "es_CL": "سپینِش (چِلی)", "es_CO": "سپینِش (کولَمبِیا)", "es_CR": "سپینِش (کوسٹا رِکا)", @@ -318,6 +319,7 @@ "it_CH": "اِٹیلیَن (سُوِزَرلینٛڑ)", "it_IT": "اِٹیلیَن (اِٹلی)", "it_SM": "اِٹیلیَن (سین میرِنو)", + "it_VA": "اِٹیلیَن (ویٹِکَن سِٹی)", "ja": "جاپٲنۍ", "ja_JP": "جاپٲنۍ (جاپان)", "ka": "جارجِیَن", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ky.json b/src/Symfony/Component/Intl/Resources/data/locales/ky.json index a2ae156d8c..b88c66c4fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ky.json @@ -71,7 +71,7 @@ "ce": "чеченче", "ce_RU": "чеченче (Россия)", "cs": "чехче", - "cs_CZ": "чехче (Чех Республикасы)", + "cs_CZ": "чехче (Чехия)", "cy": "уелшче", "cy_GB": "уелшче (Улуу Британия)", "da": "датча", @@ -201,6 +201,7 @@ "es_AR": "испанча (Аргентина)", "es_BO": "испанча (Боливия)", "es_BR": "испанча (Бразилия)", + "es_BZ": "испанча (Белиз)", "es_CL": "испанча (Чили)", "es_CO": "испанча (Колумбия)", "es_CR": "испанча (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "италиянча (Швейцария)", "it_IT": "италиянча (Италия)", "it_SM": "италиянча (Сан Марино)", + "it_VA": "италиянча (Ватикан)", "ja": "жапончо", "ja_JP": "жапончо (Япония)", "ka": "грузинче", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lb.json b/src/Symfony/Component/Intl/Resources/data/locales/lb.json index 3a949952a8..129cd06e47 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lb.json @@ -201,6 +201,7 @@ "es_AR": "Spuenesch (Argentinien)", "es_BO": "Spuenesch (Bolivien)", "es_BR": "Spuenesch (Brasilien)", + "es_BZ": "Spuenesch (Belize)", "es_CL": "Spuenesch (Chile)", "es_CO": "Spuenesch (Kolumbien)", "es_CR": "Spuenesch (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italienesch (Schwäiz)", "it_IT": "Italienesch (Italien)", "it_SM": "Italienesch (San Marino)", + "it_VA": "Italienesch (Vatikanstad)", "ja": "Japanesch", "ja_JP": "Japanesch (Japan)", "ka": "Georgesch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lg.json b/src/Symfony/Component/Intl/Resources/data/locales/lg.json index 87ecc9da43..caba3f0c06 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lg.json @@ -146,6 +146,7 @@ "es_AR": "Lusipanya (Arigentina)", "es_BO": "Lusipanya (Boliviya)", "es_BR": "Lusipanya (Buraziiri)", + "es_BZ": "Lusipanya (Belize)", "es_CL": "Lusipanya (Cile)", "es_CO": "Lusipanya (Kolombya)", "es_CR": "Lusipanya (Kosita Rika)", @@ -231,6 +232,7 @@ "it_CH": "Luyitale (Switizirandi)", "it_IT": "Luyitale (Yitale)", "it_SM": "Luyitale (Sanimarino)", + "it_VA": "Luyitale (Vatikaani)", "ja": "Lujapani", "ja_JP": "Lujapani (Japani)", "km": "Lukme", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ln.json b/src/Symfony/Component/Intl/Resources/data/locales/ln.json index 0270b6b88f..97f7da07c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ln.json @@ -38,7 +38,7 @@ "bn_BD": "libengali (Bengalidɛsi)", "bn_IN": "libengali (Índɛ)", "cs": "litshekɛ", - "cs_CZ": "litshekɛ (Repibiki Tsekɛ)", + "cs_CZ": "litshekɛ (Shekia)", "de": "lialemá", "de_AT": "lialemá (Otilisi)", "de_BE": "lialemá (Beleziki)", @@ -147,6 +147,7 @@ "es_AR": "lisipanye (Arizantinɛ)", "es_BO": "lisipanye (Bolivi)", "es_BR": "lisipanye (Brezílɛ)", + "es_BZ": "lisipanye (Belizɛ)", "es_CL": "lisipanye (Síli)", "es_CO": "lisipanye (Kolombi)", "es_CR": "lisipanye (Kositarika)", @@ -232,6 +233,7 @@ "it_CH": "litaliano (Swisɛ)", "it_IT": "litaliano (Itali)", "it_SM": "litaliano (Sántu Marinɛ)", + "it_VA": "litaliano (Vatiká)", "ja": "lizapɔ", "ja_JP": "lizapɔ (Zapɔ)", "km": "likambodza", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lo.json b/src/Symfony/Component/Intl/Resources/data/locales/lo.json index 50131c413f..b2d57369ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lo.json @@ -71,7 +71,7 @@ "ce": "ຊີເຄນ", "ce_RU": "ຊີເຄນ (ຣັດເຊຍ)", "cs": "ເຊກ", - "cs_CZ": "ເຊກ (ສາທາລະນະລັດເຊັກ)", + "cs_CZ": "ເຊກ (ເຊັກເຊຍ)", "cy": "ເວວ", "cy_GB": "ເວວ (ສະຫະລາດຊະອະນາຈັກ)", "da": "ແດນິຊ", @@ -201,6 +201,7 @@ "es_AR": "ສະແປນນິຊ (ອາເຈນທິນາ)", "es_BO": "ສະແປນນິຊ (ໂບລິເວຍ)", "es_BR": "ສະແປນນິຊ (ບະເລຊີນ)", + "es_BZ": "ສະແປນນິຊ (ເບລີຊ)", "es_CL": "ສະແປນນິຊ (ຈີເລ)", "es_CO": "ສະແປນນິຊ (ໂຄລົມເບຍ)", "es_CR": "ສະແປນນິຊ (ໂຄສຕາ ຣິກາ)", @@ -327,6 +328,7 @@ "it_CH": "ອິຕາລຽນ (ສະວິດເຊີແລນ)", "it_IT": "ອິຕາລຽນ (ອິຕາລີ)", "it_SM": "ອິຕາລຽນ (ແຊນ ມາຣິໂນ)", + "it_VA": "ອິຕາລຽນ (ນະຄອນ ວາຕິກັນ)", "ja": "ຍີ່ປຸ່ນ", "ja_JP": "ຍີ່ປຸ່ນ (ຍີ່ປຸ່ນ)", "ka": "ຈໍຈຽນ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lt.json b/src/Symfony/Component/Intl/Resources/data/locales/lt.json index d254752429..349020a019 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lt.json @@ -201,6 +201,7 @@ "es_AR": "ispanų (Argentina)", "es_BO": "ispanų (Bolivija)", "es_BR": "ispanų (Brazilija)", + "es_BZ": "ispanų (Belizas)", "es_CL": "ispanų (Čilė)", "es_CO": "ispanų (Kolumbija)", "es_CR": "ispanų (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "italų (Šveicarija)", "it_IT": "italų (Italija)", "it_SM": "italų (San Marinas)", + "it_VA": "italų (Vatikano Miesto Valstybė)", "ja": "japonų", "ja_JP": "japonų (Japonija)", "ka": "gruzinų", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lu.json b/src/Symfony/Component/Intl/Resources/data/locales/lu.json index 2551c1d61a..2afd8516d9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lu.json @@ -146,6 +146,7 @@ "es_AR": "Lihispania (Alijantine)", "es_BO": "Lihispania (Mbolivi)", "es_BR": "Lihispania (Mnulezile)", + "es_BZ": "Lihispania (Belize)", "es_CL": "Lihispania (Shili)", "es_CO": "Lihispania (Kolombi)", "es_CR": "Lihispania (Kositarika)", @@ -231,6 +232,7 @@ "it_CH": "Litali (Swise)", "it_IT": "Litali (Itali)", "it_SM": "Litali (Santu Marine)", + "it_VA": "Litali (Nvatika)", "ja": "Liyapani", "ja_JP": "Liyapani (Japu)", "ko": "Likoreya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/lv.json b/src/Symfony/Component/Intl/Resources/data/locales/lv.json index 35d1907a26..41c468a119 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/lv.json @@ -71,7 +71,7 @@ "ce": "čečenu", "ce_RU": "čečenu (Krievija)", "cs": "čehu", - "cs_CZ": "čehu (Čehijas Republika)", + "cs_CZ": "čehu (Čehija)", "cy": "velsiešu", "cy_GB": "velsiešu (Lielbritānija)", "da": "dāņu", @@ -201,6 +201,7 @@ "es_AR": "spāņu (Argentīna)", "es_BO": "spāņu (Bolīvija)", "es_BR": "spāņu (Brazīlija)", + "es_BZ": "spāņu (Beliza)", "es_CL": "spāņu (Čīle)", "es_CO": "spāņu (Kolumbija)", "es_CR": "spāņu (Kostarika)", @@ -321,12 +322,13 @@ "ig_NG": "igbo (Nigērija)", "ii": "Sičuaņas ji", "ii_CN": "Sičuaņas ji (Ķīna)", - "is": "īslandiešu", - "is_IS": "īslandiešu (Īslande)", + "is": "islandiešu", + "is_IS": "islandiešu (Islande)", "it": "itāļu", "it_CH": "itāļu (Šveice)", "it_IT": "itāļu (Itālija)", "it_SM": "itāļu (Sanmarīno)", + "it_VA": "itāļu (Vatikāns)", "ja": "japāņu", "ja_JP": "japāņu (Japāna)", "ka": "gruzīnu", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/meta.json b/src/Symfony/Component/Intl/Resources/data/locales/meta.json index ee24b32fc8..f76e2d4270 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/meta.json @@ -208,6 +208,7 @@ "es_AR", "es_BO", "es_BR", + "es_BZ", "es_CL", "es_CO", "es_CR", @@ -336,6 +337,7 @@ "it_CH", "it_IT", "it_SM", + "it_VA", "iw", "iw_IL", "ja", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mg.json b/src/Symfony/Component/Intl/Resources/data/locales/mg.json index a6e5d64512..278f9ee58a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mg.json @@ -146,6 +146,7 @@ "es_AR": "Espaniola (Arzantina)", "es_BO": "Espaniola (Bolivia)", "es_BR": "Espaniola (Brezila)", + "es_BZ": "Espaniola (Belize)", "es_CL": "Espaniola (Shili)", "es_CO": "Espaniola (Kôlômbia)", "es_CR": "Espaniola (Kosta Rikà)", @@ -231,6 +232,7 @@ "it_CH": "Italianina (Soisa)", "it_IT": "Italianina (Italia)", "it_SM": "Italianina (Saint-Marin)", + "it_VA": "Italianina (Firenen’i Vatikana)", "ja": "Japoney", "ja_JP": "Japoney (Japana)", "km": "khmer", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mk.json b/src/Symfony/Component/Intl/Resources/data/locales/mk.json index 1fb0e03b5b..8919fcaac6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mk.json @@ -71,7 +71,7 @@ "ce": "чеченски", "ce_RU": "чеченски (Русија)", "cs": "чешки", - "cs_CZ": "чешки (Република Чешка)", + "cs_CZ": "чешки (Чешка)", "cy": "велшки", "cy_GB": "велшки (Обединето Кралство)", "da": "дански", @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарија)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапонски", "ja_JP": "јапонски (Јапонија)", "ka": "грузиски", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ml.json b/src/Symfony/Component/Intl/Resources/data/locales/ml.json index 6e4b6520ea..8301b3d484 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ml.json @@ -71,7 +71,7 @@ "ce": "ചെചൻ", "ce_RU": "ചെചൻ (റഷ്യ)", "cs": "ചെക്ക്", - "cs_CZ": "ചെക്ക് (ചെക്ക് റിപ്പബ്ലിക്)", + "cs_CZ": "ചെക്ക് (ചെക്കിയ)", "cy": "വെൽഷ്", "cy_GB": "വെൽഷ് (യുണൈറ്റഡ് കിംഗ്ഡം)", "da": "ഡാനിഷ്", @@ -201,6 +201,7 @@ "es_AR": "സ്‌പാനിഷ് (അർജൻറീന)", "es_BO": "സ്‌പാനിഷ് (ബൊളീവിയ)", "es_BR": "സ്‌പാനിഷ് (ബ്രസീൽ)", + "es_BZ": "സ്‌പാനിഷ് (ബെലീസ്)", "es_CL": "സ്‌പാനിഷ് (ചിലി)", "es_CO": "സ്‌പാനിഷ് (കൊളംബിയ)", "es_CR": "സ്‌പാനിഷ് (കോസ്റ്ററിക്ക)", @@ -327,6 +328,7 @@ "it_CH": "ഇറ്റാലിയൻ (സ്വിറ്റ്സർലാൻഡ്)", "it_IT": "ഇറ്റാലിയൻ (ഇറ്റലി)", "it_SM": "ഇറ്റാലിയൻ (സാൻ മറിനോ)", + "it_VA": "ഇറ്റാലിയൻ (വത്തിക്കാൻ)", "ja": "ജാപ്പനീസ്", "ja_JP": "ജാപ്പനീസ് (ജപ്പാൻ)", "ka": "ജോർജിയൻ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mn.json b/src/Symfony/Component/Intl/Resources/data/locales/mn.json index 16347aca44..cc9ce540aa 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mn.json @@ -71,7 +71,7 @@ "ce": "чечень", "ce_RU": "чечень (Орос)", "cs": "чех", - "cs_CZ": "чех (Бүгд Найрамдах Чех Улс)", + "cs_CZ": "чех (Чех)", "cy": "уэльс", "cy_GB": "уэльс (Их Британи)", "da": "дани", @@ -201,6 +201,7 @@ "es_AR": "испани (Аргентин)", "es_BO": "испани (Боливи)", "es_BR": "испани (Бразил)", + "es_BZ": "испани (Белиз)", "es_CL": "испани (Чили)", "es_CO": "испани (Колумб)", "es_CR": "испани (Коста Рика)", @@ -327,6 +328,7 @@ "it_CH": "итали (Швейцари)", "it_IT": "итали (Итали)", "it_SM": "итали (Сан-Марино)", + "it_VA": "итали (Ватикан хот улс)", "ja": "япон", "ja_JP": "япон (Япон)", "ka": "гүрж", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mr.json b/src/Symfony/Component/Intl/Resources/data/locales/mr.json index 96f54794c5..b051587194 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mr.json @@ -71,7 +71,7 @@ "ce": "चेचेन", "ce_RU": "चेचेन (रशिया)", "cs": "झेक", - "cs_CZ": "झेक (झेक प्रजासत्ताक)", + "cs_CZ": "झेक (झेकिया)", "cy": "वेल्श", "cy_GB": "वेल्श (युनायटेड किंगडम)", "da": "डॅनिश", @@ -201,6 +201,7 @@ "es_AR": "स्पॅनिश (अर्जेंटिना)", "es_BO": "स्पॅनिश (बोलिव्हिया)", "es_BR": "स्पॅनिश (ब्राझिल)", + "es_BZ": "स्पॅनिश (बलिझ)", "es_CL": "स्पॅनिश (चिली)", "es_CO": "स्पॅनिश (कोलम्बिया)", "es_CR": "स्पॅनिश (कोस्टा रिका)", @@ -327,6 +328,7 @@ "it_CH": "इटालियन (स्वित्झर्लंड)", "it_IT": "इटालियन (इटली)", "it_SM": "इटालियन (सॅन मरीनो)", + "it_VA": "इटालियन (व्हॅटिकन सिटी)", "ja": "जपानी", "ja_JP": "जपानी (जपान)", "ka": "जॉर्जियन", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ms.json b/src/Symfony/Component/Intl/Resources/data/locales/ms.json index 7f44d89d94..4c3649ebe6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ms.json @@ -71,7 +71,7 @@ "ce": "Chechen", "ce_RU": "Chechen (Rusia)", "cs": "Czech", - "cs_CZ": "Czech (Republik Czech)", + "cs_CZ": "Czech (Czechia)", "cy": "Wales", "cy_GB": "Wales (United Kingdom)", "da": "Denmark", @@ -201,6 +201,7 @@ "es_AR": "Sepanyol (Argentina)", "es_BO": "Sepanyol (Bolivia)", "es_BR": "Sepanyol (Brazil)", + "es_BZ": "Sepanyol (Belize)", "es_CL": "Sepanyol (Chile)", "es_CO": "Sepanyol (Colombia)", "es_CR": "Sepanyol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Itali (Switzerland)", "it_IT": "Itali (Itali)", "it_SM": "Itali (San Marino)", + "it_VA": "Itali (Kota Vatican)", "ja": "Jepun", "ja_JP": "Jepun (Jepun)", "ka": "Georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/mt.json b/src/Symfony/Component/Intl/Resources/data/locales/mt.json index 77cff282f7..c369633d99 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/mt.json @@ -201,6 +201,7 @@ "es_AR": "Spanjol (l-Arġentina)", "es_BO": "Spanjol (il-Bolivja)", "es_BR": "Spanjol (Il-Brażil)", + "es_BZ": "Spanjol (il-Belize)", "es_CL": "Spanjol (iċ-Ċili)", "es_CO": "Spanjol (il-Kolombja)", "es_CR": "Spanjol (il-Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Taljan (Żvizzera)", "it_IT": "Taljan (l-Italja)", "it_SM": "Taljan (San Marino)", + "it_VA": "Taljan (l-Istat tal-Belt tal-Vatikan)", "ja": "Ġappuniż", "ja_JP": "Ġappuniż (il-Ġappun)", "ka": "Ġorġjan", @@ -527,9 +529,9 @@ "ug_CN": "Uyghur (CN)", "uk": "Ukren", "uk_UA": "Ukren (l-Ukrajna)", - "ur": "ur", - "ur_IN": "ur (l-Indja)", - "ur_PK": "ur (il-Pakistan)", + "ur": "Urdu", + "ur_IN": "Urdu (l-Indja)", + "ur_PK": "Urdu (il-Pakistan)", "uz": "Uzbek", "uz_AF": "Uzbek (l-Afganistan)", "uz_Arab": "Uzbek (Għarbi)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/my.json b/src/Symfony/Component/Intl/Resources/data/locales/my.json index 27ffcc9236..9121dc3c58 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/my.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/my.json @@ -71,7 +71,7 @@ "ce": "ချက်ချန်း", "ce_RU": "ချက်ချန်း (ရုရှ)", "cs": "ချက်", - "cs_CZ": "ချက် (ချက် ပြည်ထောင်စု)", + "cs_CZ": "ချက် (ချက်ကီယား)", "cy": "ဝေလ", "cy_GB": "ဝေလ (ယူနိုက်တက်ကင်းဒမ်း)", "da": "ဒိန်းမတ်", @@ -201,6 +201,7 @@ "es_AR": "စပိန် (အာဂျင်တီးနား)", "es_BO": "စပိန် (ဘိုလီးဗီးယား)", "es_BR": "စပိန် (ဘရာဇီး)", + "es_BZ": "စပိန် (ဘလိဇ်)", "es_CL": "စပိန် (ချီလီ)", "es_CO": "စပိန် (ကိုလံဘီယာ)", "es_CR": "စပိန် (ကို့စ်တာရီကာ)", @@ -327,6 +328,7 @@ "it_CH": "အီတလီ (ဆွစ်ဇာလန်)", "it_IT": "အီတလီ (အီတလီ)", "it_SM": "အီတလီ (ဆန်မာရီနို)", + "it_VA": "အီတလီ (ဗာတီကန်စီတီး)", "ja": "ဂျပန်", "ja_JP": "ဂျပန် (ဂျပန်)", "ka": "ဂျော်ဂျီယာ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nb.json b/src/Symfony/Component/Intl/Resources/data/locales/nb.json index 7ecf289d73..eea9468d33 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nb.json @@ -71,7 +71,7 @@ "ce": "tsjetsjensk", "ce_RU": "tsjetsjensk (Russland)", "cs": "tsjekkisk", - "cs_CZ": "tsjekkisk (Den tsjekkiske republikk)", + "cs_CZ": "tsjekkisk (Tsjekkia)", "cy": "walisisk", "cy_GB": "walisisk (Storbritannia)", "da": "dansk", @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasil)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Sveits)", "it_IT": "italiensk (Italia)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nd.json b/src/Symfony/Component/Intl/Resources/data/locales/nd.json index e0860f0c2c..26dc972487 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nd.json @@ -146,6 +146,7 @@ "es_AR": "isi-Sipeyini (Ajentina)", "es_BO": "isi-Sipeyini (Bholiviya)", "es_BR": "isi-Sipeyini (Brazili)", + "es_BZ": "isi-Sipeyini (Bhelize)", "es_CL": "isi-Sipeyini (Chile)", "es_CO": "isi-Sipeyini (Kholombiya)", "es_CR": "isi-Sipeyini (Khosta Rikha)", @@ -231,6 +232,7 @@ "it_CH": "isi-Italiano (Switzerland)", "it_IT": "isi-Italiano (Itali)", "it_SM": "isi-Italiano (San Marino)", + "it_VA": "isi-Italiano (Vatican State)", "ja": "isi-Japhani", "ja_JP": "isi-Japhani (Japan)", "km": "isi-Khambodiya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ne.json b/src/Symfony/Component/Intl/Resources/data/locales/ne.json index 84a66be45c..a1d1015c0d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ne.json @@ -71,7 +71,7 @@ "ce": "चेचेन", "ce_RU": "चेचेन (रूस)", "cs": "चेक", - "cs_CZ": "चेक (चेक गणतन्त्र)", + "cs_CZ": "चेक (चेचिया)", "cy": "वेल्श", "cy_GB": "वेल्श (बेलायत)", "da": "डेनिस", @@ -201,6 +201,7 @@ "es_AR": "स्पेनी (अर्जेन्टिना)", "es_BO": "स्पेनी (बोलिभिया)", "es_BR": "स्पेनी (ब्राजिल)", + "es_BZ": "स्पेनी (बेलिज)", "es_CL": "स्पेनी (चिली)", "es_CO": "स्पेनी (कोलोम्बिया)", "es_CR": "स्पेनी (कोष्टारिका)", @@ -327,6 +328,7 @@ "it_CH": "इटालेली (स्विजरल्याण्ड)", "it_IT": "इटालेली (इटाली)", "it_SM": "इटालेली (सान् मारिनो)", + "it_VA": "इटालेली (भेटिकन सिटी)", "ja": "जापानी", "ja_JP": "जापानी (जापान)", "ka": "जर्जियाली", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nl.json b/src/Symfony/Component/Intl/Resources/data/locales/nl.json index 17d9dee7c9..7fcfc6f382 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nl.json @@ -71,7 +71,7 @@ "ce": "Tsjetsjeens", "ce_RU": "Tsjetsjeens (Rusland)", "cs": "Tsjechisch", - "cs_CZ": "Tsjechisch (Tsjechië)", + "cs_CZ": "Tsjechisch (Tsjechische Republiek)", "cy": "Welsh", "cy_GB": "Welsh (Verenigd Koninkrijk)", "da": "Deens", @@ -201,6 +201,7 @@ "es_AR": "Spaans (Argentinië)", "es_BO": "Spaans (Bolivia)", "es_BR": "Spaans (Brazilië)", + "es_BZ": "Spaans (Belize)", "es_CL": "Spaans (Chili)", "es_CO": "Spaans (Colombia)", "es_CR": "Spaans (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Italiaans (Zwitserland)", "it_IT": "Italiaans (Italië)", "it_SM": "Italiaans (San Marino)", + "it_VA": "Italiaans (Vaticaanstad)", "ja": "Japans", "ja_JP": "Japans (Japan)", "ka": "Georgisch", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/nn.json b/src/Symfony/Component/Intl/Resources/data/locales/nn.json index db33ea2729..f576126051 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/nn.json @@ -201,6 +201,7 @@ "es_AR": "spansk (Argentina)", "es_BO": "spansk (Bolivia)", "es_BR": "spansk (Brasil)", + "es_BZ": "spansk (Belize)", "es_CL": "spansk (Chile)", "es_CO": "spansk (Colombia)", "es_CR": "spansk (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiensk (Sveits)", "it_IT": "italiensk (Italia)", "it_SM": "italiensk (San Marino)", + "it_VA": "italiensk (Vatikanstaten)", "ja": "japansk", "ja_JP": "japansk (Japan)", "ka": "georgisk", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/or.json b/src/Symfony/Component/Intl/Resources/data/locales/or.json index dac32932b2..73f1b75a35 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/or.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/or.json @@ -197,6 +197,7 @@ "es_AR": "ସ୍ପାନିସ୍ (ଆର୍ଜେଣ୍ଟିନା)", "es_BO": "ସ୍ପାନିସ୍ (ବୋଲଭିଆ)", "es_BR": "ସ୍ପାନିସ୍ (ବ୍ରାଜିଲ୍)", + "es_BZ": "ସ୍ପାନିସ୍ (ବେଲିଜ୍)", "es_CL": "ସ୍ପାନିସ୍ (ଚିଲ୍ଲୀ)", "es_CO": "ସ୍ପାନିସ୍ (କୋଲମ୍ବିଆ)", "es_CR": "ସ୍ପାନିସ୍ (କୋଷ୍ଟା ରିକା)", @@ -321,6 +322,7 @@ "it_CH": "ଇଟାଲିଆନ୍ (ସ୍ବିଜରଲ୍ୟାଣ୍ଡ)", "it_IT": "ଇଟାଲିଆନ୍ (ଇଟାଲୀ)", "it_SM": "ଇଟାଲିଆନ୍ (ସାନ୍ ମାରିନୋ)", + "it_VA": "ଇଟାଲିଆନ୍ (ଭାଟିକାନ୍)", "ja": "ଜାପାନୀଜ୍", "ja_JP": "ଜାପାନୀଜ୍ (ଜାପାନ୍)", "ka": "ଜର୍ଜିଆନ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pa.json b/src/Symfony/Component/Intl/Resources/data/locales/pa.json index 7ffa0ec2d1..e4e55cba07 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pa.json @@ -71,7 +71,7 @@ "ce": "ਚੇਚਨ", "ce_RU": "ਚੇਚਨ (ਰੂਸ)", "cs": "ਚੈੱਕ", - "cs_CZ": "ਚੈੱਕ (ਚੈੱਕ ਗਣਰਾਜ)", + "cs_CZ": "ਚੈੱਕ (ਚੈਕੀਆ)", "cy": "ਵੈਲਸ਼", "cy_GB": "ਵੈਲਸ਼ (ਯੂਨਾਈਟਡ ਕਿੰਗਡਮ)", "da": "ਡੈਨਿਸ਼", @@ -201,6 +201,7 @@ "es_AR": "ਸਪੇਨੀ (ਅਰਜਨਟੀਨਾ)", "es_BO": "ਸਪੇਨੀ (ਬੋਲੀਵੀਆ)", "es_BR": "ਸਪੇਨੀ (ਬ੍ਰਾਜ਼ੀਲ)", + "es_BZ": "ਸਪੇਨੀ (ਬੇਲੀਜ਼)", "es_CL": "ਸਪੇਨੀ (ਚਿਲੀ)", "es_CO": "ਸਪੇਨੀ (ਕੋਲੰਬੀਆ)", "es_CR": "ਸਪੇਨੀ (ਕੋਸਟਾ ਰੀਕਾ)", @@ -327,6 +328,7 @@ "it_CH": "ਇਤਾਲਵੀ (ਸਵਿਟਜ਼ਰਲੈਂਡ)", "it_IT": "ਇਤਾਲਵੀ (ਇਟਲੀ)", "it_SM": "ਇਤਾਲਵੀ (ਸੈਨ ਮਰੀਨੋ)", + "it_VA": "ਇਤਾਲਵੀ (ਵੈਟੀਕਨ ਸਿਟੀ)", "ja": "ਜਪਾਨੀ", "ja_JP": "ਜਪਾਨੀ (ਜਪਾਨ)", "ka": "ਜਾਰਜੀਆਈ", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pl.json b/src/Symfony/Component/Intl/Resources/data/locales/pl.json index 2b2772ce55..20261e9cbe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pl.json @@ -201,6 +201,7 @@ "es_AR": "hiszpański (Argentyna)", "es_BO": "hiszpański (Boliwia)", "es_BR": "hiszpański (Brazylia)", + "es_BZ": "hiszpański (Belize)", "es_CL": "hiszpański (Chile)", "es_CO": "hiszpański (Kolumbia)", "es_CR": "hiszpański (Kostaryka)", @@ -327,6 +328,7 @@ "it_CH": "włoski (Szwajcaria)", "it_IT": "włoski (Włochy)", "it_SM": "włoski (San Marino)", + "it_VA": "włoski (Watykan)", "ja": "japoński", "ja_JP": "japoński (Japonia)", "ka": "gruziński", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/pt.json b/src/Symfony/Component/Intl/Resources/data/locales/pt.json index 6a10998045..f1993fe1f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/pt.json @@ -71,7 +71,7 @@ "ce": "checheno", "ce_RU": "checheno (Rússia)", "cs": "tcheco", - "cs_CZ": "tcheco (República Tcheca)", + "cs_CZ": "tcheco (Tchéquia)", "cy": "galês", "cy_GB": "galês (Reino Unido)", "da": "dinamarquês", @@ -201,6 +201,7 @@ "es_AR": "espanhol (Argentina)", "es_BO": "espanhol (Bolívia)", "es_BR": "espanhol (Brasil)", + "es_BZ": "espanhol (Belize)", "es_CL": "espanhol (Chile)", "es_CO": "espanhol (Colômbia)", "es_CR": "espanhol (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiano (Suíça)", "it_IT": "italiano (Itália)", "it_SM": "italiano (San Marino)", + "it_VA": "italiano (Cidade do Vaticano)", "ja": "japonês", "ja_JP": "japonês (Japão)", "ka": "georgiano", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/qu.json b/src/Symfony/Component/Intl/Resources/data/locales/qu.json index 614de530d2..2280534bfd 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/qu.json @@ -255,6 +255,7 @@ "it_CH": "Italiano Simi (Suiza)", "it_IT": "Italiano Simi (Italia)", "it_SM": "Italiano Simi (San Marino)", + "it_VA": "Italiano Simi (Santa Sede (Ciudad del Vaticano))", "ja": "Japones Simi", "ka": "Georgiano Simi", "kk": "Kazajo Simi", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rm.json b/src/Symfony/Component/Intl/Resources/data/locales/rm.json index 2f842405ac..389fe9c9b8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rm.json @@ -197,6 +197,7 @@ "es_AR": "spagnol (Argentinia)", "es_BO": "spagnol (Bolivia)", "es_BR": "spagnol (Brasila)", + "es_BZ": "spagnol (Belize)", "es_CL": "spagnol (Chile)", "es_CO": "spagnol (Columbia)", "es_CR": "spagnol (Costa Rica)", @@ -321,6 +322,7 @@ "it_CH": "talian (Svizra)", "it_IT": "talian (Italia)", "it_SM": "talian (San Marino)", + "it_VA": "talian (Citad dal Vatican)", "ja": "giapunais", "ja_JP": "giapunais (Giapun)", "ka": "georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/rn.json b/src/Symfony/Component/Intl/Resources/data/locales/rn.json index fe43fc3866..5da97bee5c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/rn.json @@ -146,6 +146,7 @@ "es_AR": "Icesipanyolo (Arijantine)", "es_BO": "Icesipanyolo (Boliviya)", "es_BR": "Icesipanyolo (Burezili)", + "es_BZ": "Icesipanyolo (Belize)", "es_CL": "Icesipanyolo (Shili)", "es_CO": "Icesipanyolo (Kolombiya)", "es_CR": "Icesipanyolo (Kositarika)", @@ -231,6 +232,7 @@ "it_CH": "Igitaliyani (Ubusuwisi)", "it_IT": "Igitaliyani (Ubutaliyani)", "it_SM": "Igitaliyani (Sanimarino)", + "it_VA": "Igitaliyani (Umurwa wa Vatikani)", "ja": "Ikiyapani", "ja_JP": "Ikiyapani (Ubuyapani)", "km": "Igikambodiya", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ro.json b/src/Symfony/Component/Intl/Resources/data/locales/ro.json index 2372763071..46ab314826 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ro.json @@ -71,7 +71,7 @@ "ce": "cecenă", "ce_RU": "cecenă (Rusia)", "cs": "cehă", - "cs_CZ": "cehă (Republica Cehă)", + "cs_CZ": "cehă (Cehia)", "cy": "galeză", "cy_GB": "galeză (Regatul Unit)", "da": "daneză", @@ -201,6 +201,7 @@ "es_AR": "spaniolă (Argentina)", "es_BO": "spaniolă (Bolivia)", "es_BR": "spaniolă (Brazilia)", + "es_BZ": "spaniolă (Belize)", "es_CL": "spaniolă (Chile)", "es_CO": "spaniolă (Columbia)", "es_CR": "spaniolă (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italiană (Elveția)", "it_IT": "italiană (Italia)", "it_SM": "italiană (San Marino)", + "it_VA": "italiană (Statul Cetății Vaticanului)", "ja": "japoneză", "ja_JP": "japoneză (Japonia)", "ka": "georgiană", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ru.json b/src/Symfony/Component/Intl/Resources/data/locales/ru.json index 36c7a4de54..0b2b796827 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ru.json @@ -201,6 +201,7 @@ "es_AR": "испанский (Аргентина)", "es_BO": "испанский (Боливия)", "es_BR": "испанский (Бразилия)", + "es_BZ": "испанский (Белиз)", "es_CL": "испанский (Чили)", "es_CO": "испанский (Колумбия)", "es_CR": "испанский (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "итальянский (Швейцария)", "it_IT": "итальянский (Италия)", "it_SM": "итальянский (Сан-Марино)", + "it_VA": "итальянский (Ватикан)", "ja": "японский", "ja_JP": "японский (Япония)", "ka": "грузинский", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/se.json b/src/Symfony/Component/Intl/Resources/data/locales/se.json index 4647d0bcba..cb678264cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/se.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/se.json @@ -179,6 +179,7 @@ "es_AR": "spánskkagiella (Argentina)", "es_BO": "spánskkagiella (Bolivia)", "es_BR": "spánskkagiella (Brasil)", + "es_BZ": "spánskkagiella (Belize)", "es_CL": "spánskkagiella (Čiile)", "es_CO": "spánskkagiella (Kolombia)", "es_CR": "spánskkagiella (Costa Rica)", @@ -288,6 +289,7 @@ "it_CH": "itáliagiella (Šveica)", "it_IT": "itáliagiella (Itália)", "it_SM": "itáliagiella (San Marino)", + "it_VA": "itáliagiella (Vatikána)", "ja": "japánagiella", "ja_JP": "japánagiella (Japána)", "ka": "georgiagiella", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sg.json b/src/Symfony/Component/Intl/Resources/data/locales/sg.json index 3d1d1d6e85..cb6901b1c9 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sg.json @@ -146,6 +146,7 @@ "es_AR": "Espanyöl (Arzantîna)", "es_BO": "Espanyöl (Bolivïi)", "es_BR": "Espanyöl (Brezîli)", + "es_BZ": "Espanyöl (Belîzi)", "es_CL": "Espanyöl (Shilïi)", "es_CO": "Espanyöl (Kolombïi)", "es_CR": "Espanyöl (Kôsta Rîka)", @@ -231,6 +232,7 @@ "it_CH": "Ênnde (Sûîsi)", "it_IT": "Ênnde (Italùii)", "it_SM": "Ênnde (Sên-Marëen)", + "it_VA": "Ênnde (Letëe tî Vatikäan)", "ja": "Zaponëe", "ja_JP": "Zaponëe (Zapöon)", "km": "Kmêre", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/si.json b/src/Symfony/Component/Intl/Resources/data/locales/si.json index 8cdb24318f..3a882255a2 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/si.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/si.json @@ -71,7 +71,7 @@ "ce": "චෙච්නියානු", "ce_RU": "චෙච්නියානු (රුසියාව)", "cs": "චෙත්", - "cs_CZ": "චෙත් (චෙක් ජනරජය)", + "cs_CZ": "චෙත් (චෙක්)", "cy": "වේල්ස්", "cy_GB": "වේල්ස් (එක්සත් රාජධානිය)", "da": "ඩැනිශ්", @@ -201,6 +201,7 @@ "es_AR": "ස්පාඤ්ඤ (ආර්ජෙන්ටිනාව)", "es_BO": "ස්පාඤ්ඤ (බොලීවියාව)", "es_BR": "ස්පාඤ්ඤ (බ්‍රසීලය)", + "es_BZ": "ස්පාඤ්ඤ (බෙලීස්)", "es_CL": "ස්පාඤ්ඤ (චිලී)", "es_CO": "ස්පාඤ්ඤ (කොළොම්බියාව)", "es_CR": "ස්පාඤ්ඤ (කොස්ටරිකාව)", @@ -327,6 +328,7 @@ "it_CH": "ඉතාලි (ස්විස්ටර්ලන්තය)", "it_IT": "ඉතාලි (ඉතාලිය)", "it_SM": "ඉතාලි (සැන් මැරිනෝ)", + "it_VA": "ඉතාලි (වතිකානු නගරය)", "ja": "ජපන්", "ja_JP": "ජපන් (ජපානය)", "ka": "ජෝර්ජියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sk.json b/src/Symfony/Component/Intl/Resources/data/locales/sk.json index 75af02d317..7493c1e2d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sk.json @@ -71,7 +71,7 @@ "ce": "čečenčina", "ce_RU": "čečenčina (Rusko)", "cs": "čeština", - "cs_CZ": "čeština (Česká republika)", + "cs_CZ": "čeština (Česko)", "cy": "waleština", "cy_GB": "waleština (Spojené kráľovstvo)", "da": "dánčina", @@ -201,6 +201,7 @@ "es_AR": "španielčina (Argentína)", "es_BO": "španielčina (Bolívia)", "es_BR": "španielčina (Brazília)", + "es_BZ": "španielčina (Belize)", "es_CL": "španielčina (Čile)", "es_CO": "španielčina (Kolumbia)", "es_CR": "španielčina (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "taliančina (Švajčiarsko)", "it_IT": "taliančina (Taliansko)", "it_SM": "taliančina (San Maríno)", + "it_VA": "taliančina (Vatikán)", "ja": "japončina", "ja_JP": "japončina (Japonsko)", "ka": "gruzínčina", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sl.json b/src/Symfony/Component/Intl/Resources/data/locales/sl.json index f5355db295..8f8ac53a45 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sl.json @@ -201,6 +201,7 @@ "es_AR": "španščina (Argentina)", "es_BO": "španščina (Bolivija)", "es_BR": "španščina (Brazilija)", + "es_BZ": "španščina (Belize)", "es_CL": "španščina (Čile)", "es_CO": "španščina (Kolumbija)", "es_CR": "španščina (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italijanščina (Švica)", "it_IT": "italijanščina (Italija)", "it_SM": "italijanščina (San Marino)", + "it_VA": "italijanščina (Vatikan)", "ja": "japonščina", "ja_JP": "japonščina (Japonska)", "ka": "gruzijščina", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sn.json b/src/Symfony/Component/Intl/Resources/data/locales/sn.json index 1be618e2a8..1d7d365852 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sn.json @@ -145,6 +145,7 @@ "es_AR": "chiSpanish (Ajentina)", "es_BO": "chiSpanish (Bolivia)", "es_BR": "chiSpanish (Brazil)", + "es_BZ": "chiSpanish (Belize)", "es_CL": "chiSpanish (Chile)", "es_CO": "chiSpanish (Kolombia)", "es_CR": "chiSpanish (Kostarika)", @@ -230,6 +231,7 @@ "it_CH": "chiTariana (Switzerland)", "it_IT": "chiTariana (Italy)", "it_SM": "chiTariana (San Marino)", + "it_VA": "chiTariana (Vatican State)", "ja": "chiJapani", "ja_JP": "chiJapani (Japan)", "km": "chiKhema", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/so.json b/src/Symfony/Component/Intl/Resources/data/locales/so.json index f541e1ca11..8a0f2f5995 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/so.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/so.json @@ -146,6 +146,7 @@ "es_AR": "Isbaanish (Arjantiin)", "es_BO": "Isbaanish (Boliifiya)", "es_BR": "Isbaanish (Braasiil)", + "es_BZ": "Isbaanish (Belize)", "es_CL": "Isbaanish (Jili)", "es_CO": "Isbaanish (Kolombiya)", "es_CR": "Isbaanish (Kosta Riika)", @@ -233,6 +234,7 @@ "it_CH": "Talyaani (Swiiserlaand)", "it_IT": "Talyaani (Talyaani)", "it_SM": "Talyaani (San Marino)", + "it_VA": "Talyaani (Faatikaan)", "ja": "Jabbaaniis", "ja_JP": "Jabbaaniis (Jabaan)", "km": "Kamboodhian", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sq.json b/src/Symfony/Component/Intl/Resources/data/locales/sq.json index e705478775..0bf259705f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sq.json @@ -71,7 +71,7 @@ "ce": "çeçenisht", "ce_RU": "çeçenisht (Rusi)", "cs": "çekisht", - "cs_CZ": "çekisht (Republika Çeke)", + "cs_CZ": "çekisht (Çeki)", "cy": "uellsisht", "cy_GB": "uellsisht (Mbretëria e Bashkuar)", "da": "danisht", @@ -201,6 +201,7 @@ "es_AR": "spanjisht (Argjentinë)", "es_BO": "spanjisht (Bolivi)", "es_BR": "spanjisht (Brazil)", + "es_BZ": "spanjisht (Belizë)", "es_CL": "spanjisht (Kili)", "es_CO": "spanjisht (Kolumbi)", "es_CR": "spanjisht (Kosta-Rikë)", @@ -327,6 +328,7 @@ "it_CH": "italisht (Zvicër)", "it_IT": "italisht (Itali)", "it_SM": "italisht (San-Marino)", + "it_VA": "italisht (Vatikan)", "ja": "japonisht", "ja_JP": "japonisht (Japoni)", "ka": "gjeorgjisht", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr.json b/src/Symfony/Component/Intl/Resources/data/locales/sr.json index a5f6cce48c..443a82537f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr.json @@ -201,6 +201,7 @@ "es_AR": "шпански (Аргентина)", "es_BO": "шпански (Боливија)", "es_BR": "шпански (Бразил)", + "es_BZ": "шпански (Белизе)", "es_CL": "шпански (Чиле)", "es_CO": "шпански (Колумбија)", "es_CR": "шпански (Костарика)", @@ -327,6 +328,7 @@ "it_CH": "италијански (Швајцарска)", "it_IT": "италијански (Италија)", "it_SM": "италијански (Сан Марино)", + "it_VA": "италијански (Ватикан)", "ja": "јапански", "ja_JP": "јапански (Јапан)", "ka": "грузијски", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json index e5bb38c65f..a97cc61185 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sr_Latn.json @@ -201,6 +201,7 @@ "es_AR": "španski (Argentina)", "es_BO": "španski (Bolivija)", "es_BR": "španski (Brazil)", + "es_BZ": "španski (Belize)", "es_CL": "španski (Čile)", "es_CO": "španski (Kolumbija)", "es_CR": "španski (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "italijanski (Švajcarska)", "it_IT": "italijanski (Italija)", "it_SM": "italijanski (San Marino)", + "it_VA": "italijanski (Vatikan)", "ja": "japanski", "ja_JP": "japanski (Japan)", "ka": "gruzijski", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sv.json b/src/Symfony/Component/Intl/Resources/data/locales/sv.json index 03e19b6fea..7dabf849a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sv.json @@ -201,6 +201,7 @@ "es_AR": "spanska (Argentina)", "es_BO": "spanska (Bolivia)", "es_BR": "spanska (Brasilien)", + "es_BZ": "spanska (Belize)", "es_CL": "spanska (Chile)", "es_CO": "spanska (Colombia)", "es_CR": "spanska (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "italienska (Schweiz)", "it_IT": "italienska (Italien)", "it_SM": "italienska (San Marino)", + "it_VA": "italienska (Vatikanstaten)", "ja": "japanska", "ja_JP": "japanska (Japan)", "ka": "georgiska", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/sw.json b/src/Symfony/Component/Intl/Resources/data/locales/sw.json index 52afa89d49..077a96006b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/sw.json @@ -71,7 +71,7 @@ "ce": "Kichechenia", "ce_RU": "Kichechenia (Urusi)", "cs": "Kicheki", - "cs_CZ": "Kicheki (Jamhuri ya Cheki)", + "cs_CZ": "Kicheki (Chechia)", "cy": "Kiwelisi", "cy_GB": "Kiwelisi (Uingereza)", "da": "Kidenmaki", @@ -201,6 +201,7 @@ "es_AR": "Kihispania (Ajentina)", "es_BO": "Kihispania (Bolivia)", "es_BR": "Kihispania (Brazili)", + "es_BZ": "Kihispania (Belize)", "es_CL": "Kihispania (Chile)", "es_CO": "Kihispania (Kolombia)", "es_CR": "Kihispania (Kostarika)", @@ -327,6 +328,7 @@ "it_CH": "Kiitaliano (Uswisi)", "it_IT": "Kiitaliano (Italia)", "it_SM": "Kiitaliano (San Marino)", + "it_VA": "Kiitaliano (Vatikani)", "ja": "Kijapani", "ja_JP": "Kijapani (Japani)", "ka": "Kijojia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ta.json b/src/Symfony/Component/Intl/Resources/data/locales/ta.json index e8d173ace4..a74911d44a 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ta.json @@ -71,7 +71,7 @@ "ce": "செச்சென்", "ce_RU": "செச்சென் (ரஷ்யா)", "cs": "செக்", - "cs_CZ": "செக் (செக் குடியரசு)", + "cs_CZ": "செக் (செசியா)", "cy": "வேல்ஷ்", "cy_GB": "வேல்ஷ் (யுனைடெட் கிங்டம்)", "da": "டேனிஷ்", @@ -201,6 +201,7 @@ "es_AR": "ஸ்பானிஷ் (அர்ஜென்டினா)", "es_BO": "ஸ்பானிஷ் (பொலிவியா)", "es_BR": "ஸ்பானிஷ் (பிரேசில்)", + "es_BZ": "ஸ்பானிஷ் (பெலிஸ்)", "es_CL": "ஸ்பானிஷ் (சிலி)", "es_CO": "ஸ்பானிஷ் (கொலம்பியா)", "es_CR": "ஸ்பானிஷ் (கோஸ்டாரிகா)", @@ -327,6 +328,7 @@ "it_CH": "இத்தாலியன் (ஸ்விட்சர்லாந்து)", "it_IT": "இத்தாலியன் (இத்தாலி)", "it_SM": "இத்தாலியன் (சான் மரினோ)", + "it_VA": "இத்தாலியன் (வாடிகன் நகரம்)", "ja": "ஜப்பானியம்", "ja_JP": "ஜப்பானியம் (ஜப்பான்)", "ka": "ஜார்ஜியன்", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/te.json b/src/Symfony/Component/Intl/Resources/data/locales/te.json index da22f5c52d..80f2d2d21b 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/te.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/te.json @@ -71,7 +71,7 @@ "ce": "చెచెన్", "ce_RU": "చెచెన్ (రష్యా)", "cs": "చెక్", - "cs_CZ": "చెక్ (చెక్ రిపబ్లిక్)", + "cs_CZ": "చెక్ (చెక్‌చియ)", "cy": "వెల్ష్", "cy_GB": "వెల్ష్ (యునైటెడ్ కింగ్‌డమ్)", "da": "డానిష్", @@ -201,6 +201,7 @@ "es_AR": "స్పానిష్ (అర్జెంటీనా)", "es_BO": "స్పానిష్ (బొలీవియా)", "es_BR": "స్పానిష్ (బ్రెజిల్)", + "es_BZ": "స్పానిష్ (బెలిజ్)", "es_CL": "స్పానిష్ (చిలీ)", "es_CO": "స్పానిష్ (కొలంబియా)", "es_CR": "స్పానిష్ (కోస్టా రికా)", @@ -327,6 +328,7 @@ "it_CH": "ఇటాలియన్ (స్విట్జర్లాండ్)", "it_IT": "ఇటాలియన్ (ఇటలీ)", "it_SM": "ఇటాలియన్ (సాన్ మారినో)", + "it_VA": "ఇటాలియన్ (వాటికన్ నగరం)", "ja": "జపనీస్", "ja_JP": "జపనీస్ (జపాన్)", "ka": "జార్జియన్", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/th.json b/src/Symfony/Component/Intl/Resources/data/locales/th.json index 2538f8d0eb..4593d101c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/th.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/th.json @@ -71,7 +71,7 @@ "ce": "เชเชน", "ce_RU": "เชเชน (รัสเซีย)", "cs": "เช็ก", - "cs_CZ": "เช็ก (สาธารณรัฐเช็ก)", + "cs_CZ": "เช็ก (เช็ก)", "cy": "เวลส์", "cy_GB": "เวลส์ (สหราชอาณาจักร)", "da": "เดนมาร์ก", @@ -201,6 +201,7 @@ "es_AR": "สเปน (อาร์เจนตินา)", "es_BO": "สเปน (โบลิเวีย)", "es_BR": "สเปน (บราซิล)", + "es_BZ": "สเปน (เบลีซ)", "es_CL": "สเปน (ชิลี)", "es_CO": "สเปน (โคลอมเบีย)", "es_CR": "สเปน (คอสตาริกา)", @@ -327,6 +328,7 @@ "it_CH": "อิตาลี (สวิตเซอร์แลนด์)", "it_IT": "อิตาลี (อิตาลี)", "it_SM": "อิตาลี (ซานมารีโน)", + "it_VA": "อิตาลี (นครวาติกัน)", "ja": "ญี่ปุ่น", "ja_JP": "ญี่ปุ่น (ญี่ปุ่น)", "ka": "จอร์เจีย", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/to.json b/src/Symfony/Component/Intl/Resources/data/locales/to.json index 2361d83719..d30c06bc91 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/to.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/to.json @@ -71,7 +71,7 @@ "ce": "lea fakasese", "ce_RU": "lea fakasese (Lūsia)", "cs": "lea fakaseki", - "cs_CZ": "lea fakaseki (Lipapilika Seki)", + "cs_CZ": "lea fakaseki (Sēkia)", "cy": "lea fakauēlesi", "cy_GB": "lea fakauēlesi (Pilitānia)", "da": "lea fakatenimaʻake", @@ -201,6 +201,7 @@ "es_AR": "lea fakasipēnisi (ʻAsenitina)", "es_BO": "lea fakasipēnisi (Polīvia)", "es_BR": "lea fakasipēnisi (Palāsili)", + "es_BZ": "lea fakasipēnisi (Pelise)", "es_CL": "lea fakasipēnisi (Sili)", "es_CO": "lea fakasipēnisi (Kolomipia)", "es_CR": "lea fakasipēnisi (Kosita Lika)", @@ -327,6 +328,7 @@ "it_CH": "lea fakaʻītali (Suisilani)", "it_IT": "lea fakaʻītali (ʻĪtali)", "it_SM": "lea fakaʻītali (Sā Malino)", + "it_VA": "lea fakaʻītali (Kolo Vatikani)", "ja": "lea fakasiapani", "ja_JP": "lea fakasiapani (Siapani)", "ka": "lea fakaseōsia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/tr.json b/src/Symfony/Component/Intl/Resources/data/locales/tr.json index b70fa9427d..8219f6247f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/tr.json @@ -71,7 +71,7 @@ "ce": "Çeçence", "ce_RU": "Çeçence (Rusya)", "cs": "Çekçe", - "cs_CZ": "Çekçe (Çek Cumhuriyeti)", + "cs_CZ": "Çekçe (Çekya)", "cy": "Galce", "cy_GB": "Galce (Birleşik Krallık)", "da": "Danca", @@ -201,6 +201,7 @@ "es_AR": "İspanyolca (Arjantin)", "es_BO": "İspanyolca (Bolivya)", "es_BR": "İspanyolca (Brezilya)", + "es_BZ": "İspanyolca (Belize)", "es_CL": "İspanyolca (Şili)", "es_CO": "İspanyolca (Kolombiya)", "es_CR": "İspanyolca (Kosta Rika)", @@ -327,6 +328,7 @@ "it_CH": "İtalyanca (İsviçre)", "it_IT": "İtalyanca (İtalya)", "it_SM": "İtalyanca (San Marino)", + "it_VA": "İtalyanca (Vatikan)", "ja": "Japonca", "ja_JP": "Japonca (Japonya)", "ka": "Gürcüce", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ug.json b/src/Symfony/Component/Intl/Resources/data/locales/ug.json index 41c8248f6f..7f7baf1da4 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ug.json @@ -201,6 +201,7 @@ "es_AR": "ئىسپانچە (ئارگېنتىنا)", "es_BO": "ئىسپانچە (بولىۋىيە)", "es_BR": "ئىسپانچە (بىرازىلىيە)", + "es_BZ": "ئىسپانچە (بېلىز)", "es_CL": "ئىسپانچە (چىلى)", "es_CO": "ئىسپانچە (كولومبىيە)", "es_CR": "ئىسپانچە (كوستارىكا)", @@ -327,6 +328,7 @@ "it_CH": "ئىتالىيانچە (شىۋېتسارىيە)", "it_IT": "ئىتالىيانچە (ئىتالىيە)", "it_SM": "ئىتالىيانچە (سان مارىنو)", + "it_VA": "ئىتالىيانچە (ۋاتىكان)", "ja": "ياپونچە", "ja_JP": "ياپونچە (ياپونىيە)", "ka": "گىرۇزچە", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uk.json b/src/Symfony/Component/Intl/Resources/data/locales/uk.json index fee54b353b..077f218497 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uk.json @@ -71,7 +71,7 @@ "ce": "чеченська", "ce_RU": "чеченська (Росія)", "cs": "чеська", - "cs_CZ": "чеська (Чеська Республіка)", + "cs_CZ": "чеська (Чехія)", "cy": "валлійська", "cy_GB": "валлійська (Велика Британія)", "da": "данська", @@ -201,6 +201,7 @@ "es_AR": "іспанська (Аргентина)", "es_BO": "іспанська (Болівія)", "es_BR": "іспанська (Бразилія)", + "es_BZ": "іспанська (Беліз)", "es_CL": "іспанська (Чилі)", "es_CO": "іспанська (Колумбія)", "es_CR": "іспанська (Коста-Рика)", @@ -327,6 +328,7 @@ "it_CH": "італійська (Швейцарія)", "it_IT": "італійська (Італія)", "it_SM": "італійська (Сан-Марино)", + "it_VA": "італійська (Ватикан)", "ja": "японська", "ja_JP": "японська (Японія)", "ka": "грузинська", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/ur.json b/src/Symfony/Component/Intl/Resources/data/locales/ur.json index b4a58fb17d..ecc40ad756 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/ur.json @@ -71,7 +71,7 @@ "ce": "چیچن", "ce_RU": "چیچن (روس)", "cs": "چیک", - "cs_CZ": "چیک (چیک جمہوریہ)", + "cs_CZ": "چیک (زکھیا)", "cy": "ویلش", "cy_GB": "ویلش (سلطنت متحدہ)", "da": "ڈینش", @@ -201,6 +201,7 @@ "es_AR": "ہسپانوی (ارجنٹینا)", "es_BO": "ہسپانوی (بولیویا)", "es_BR": "ہسپانوی (برازیل)", + "es_BZ": "ہسپانوی (بیلائز)", "es_CL": "ہسپانوی (چلی)", "es_CO": "ہسپانوی (کولمبیا)", "es_CR": "ہسپانوی (کوسٹا ریکا)", @@ -327,6 +328,7 @@ "it_CH": "اطالوی (سوئٹزر لینڈ)", "it_IT": "اطالوی (اٹلی)", "it_SM": "اطالوی (سان مارینو)", + "it_VA": "اطالوی (واٹیکن سٹی)", "ja": "جاپانی", "ja_JP": "جاپانی (جاپان)", "ka": "جارجی", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz.json b/src/Symfony/Component/Intl/Resources/data/locales/uz.json index 7ea7565532..4ef836ad0f 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz.json @@ -71,7 +71,7 @@ "ce": "chechen", "ce_RU": "chechen (Rossiya)", "cs": "chex", - "cs_CZ": "chex (Chexiya Respublikasi)", + "cs_CZ": "chex (Chexiya)", "cy": "valliy", "cy_GB": "valliy (Buyuk Britaniya)", "da": "dat", @@ -201,6 +201,7 @@ "es_AR": "ispancha (Argentina)", "es_BO": "ispancha (Boliviya)", "es_BR": "ispancha (Braziliya)", + "es_BZ": "ispancha (Beliz)", "es_CL": "ispancha (Chili)", "es_CO": "ispancha (Kolumbiya)", "es_CR": "ispancha (Kosta-Rika)", @@ -320,6 +321,7 @@ "it_CH": "italyan (Shveytsariya)", "it_IT": "italyan (Italiya)", "it_SM": "italyan (San-Marino)", + "it_VA": "italyan (Vatikan)", "ja": "yapon", "ja_JP": "yapon (Yaponiya)", "ka": "gruzincha", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json index 7bca83877a..8ec15c077c 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/uz_Cyrl.json @@ -71,7 +71,7 @@ "ce": "чечен тили", "ce_RU": "чечен тили (Россия)", "cs": "чехча", - "cs_CZ": "чехча (Чехия Республикаси)", + "cs_CZ": "чехча (Чехия)", "cy": "уэлсча", "cy_GB": "уэлсча (Буюк Британия)", "da": "датча", @@ -201,6 +201,7 @@ "es_AR": "испанча (Аргентина)", "es_BO": "испанча (Боливия)", "es_BR": "испанча (Бразилия)", + "es_BZ": "испанча (Белиз)", "es_CL": "испанча (Чили)", "es_CO": "испанча (Колумбия)", "es_CR": "испанча (Коста-Рика)", @@ -326,6 +327,7 @@ "it_CH": "италянча (Швейцария)", "it_IT": "италянча (Италия)", "it_SM": "италянча (Сан-Марино)", + "it_VA": "италянча (Ватикан)", "ja": "японча", "ja_JP": "японча (Япония)", "ka": "грузинча", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/vi.json b/src/Symfony/Component/Intl/Resources/data/locales/vi.json index ec1cf7e30e..a80a105f00 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/vi.json @@ -71,7 +71,7 @@ "ce": "Tiếng Chechen", "ce_RU": "Tiếng Chechen (Nga)", "cs": "Tiếng Séc", - "cs_CZ": "Tiếng Séc (Cộng hòa Séc)", + "cs_CZ": "Tiếng Séc (Czechia)", "cy": "Tiếng Wales", "cy_GB": "Tiếng Wales (Vương quốc Anh)", "da": "Tiếng Đan Mạch", @@ -201,6 +201,7 @@ "es_AR": "Tiếng Tây Ban Nha (Argentina)", "es_BO": "Tiếng Tây Ban Nha (Bolivia)", "es_BR": "Tiếng Tây Ban Nha (Brazil)", + "es_BZ": "Tiếng Tây Ban Nha (Belize)", "es_CL": "Tiếng Tây Ban Nha (Chile)", "es_CO": "Tiếng Tây Ban Nha (Colombia)", "es_CR": "Tiếng Tây Ban Nha (Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "Tiếng Ý (Thụy Sĩ)", "it_IT": "Tiếng Ý (Ý)", "it_SM": "Tiếng Ý (San Marino)", + "it_VA": "Tiếng Ý (Thành Vatican)", "ja": "Tiếng Nhật", "ja_JP": "Tiếng Nhật (Nhật Bản)", "ka": "Tiếng Gruzia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yi.json b/src/Symfony/Component/Intl/Resources/data/locales/yi.json index 3cf806d91b..1dcabef33d 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yi.json @@ -153,6 +153,7 @@ "es_AR": "שפּאַניש (אַרגענטינע)", "es_BO": "שפּאַניש (באליוויע)", "es_BR": "שפּאַניש (בראַזיל)", + "es_BZ": "שפּאַניש (בעליז)", "es_CL": "שפּאַניש (טשילע)", "es_CO": "שפּאַניש (קאלאמביע)", "es_CR": "שפּאַניש (קאסטאַ ריקאַ)", @@ -260,6 +261,7 @@ "it_CH": "איטאַליעניש (שווייץ)", "it_IT": "איטאַליעניש (איטאַליע)", "it_SM": "איטאַליעניש (סאַן מאַרינא)", + "it_VA": "איטאַליעניש (וואַטיקאַן שטאָט)", "ja": "יאַפּאַניש", "ja_JP": "יאַפּאַניש (יאַפּאַן)", "ka": "גרוזיניש", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo.json b/src/Symfony/Component/Intl/Resources/data/locales/yo.json index ca7ae1a415..8cea4809fe 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo.json @@ -168,6 +168,7 @@ "es_AR": "Èdè Sipanisi (Orílẹ́ède Agentínà)", "es_BO": "Èdè Sipanisi (Orílẹ́ède Bọ̀lífíyà)", "es_BR": "Èdè Sipanisi (Orílẹ́ède Bàràsílì)", + "es_BZ": "Èdè Sipanisi (Orílẹ́ède Bèlísẹ̀)", "es_CL": "Èdè Sipanisi (Orílẹ́ède ṣílè)", "es_CO": "Èdè Sipanisi (Orílẹ́ède Kòlómíbìa)", "es_CR": "Èdè Sipanisi (Orílẹ́ède Kuusita Ríkà)", @@ -280,6 +281,7 @@ "it_CH": "Èdè Italiani (Orílẹ́ède switiṣilandi)", "it_IT": "Èdè Italiani (Orílẹ́ède Italiyi)", "it_SM": "Èdè Italiani (Orílẹ́ède Sani Marino)", + "it_VA": "Èdè Italiani (Orílẹ́ède Fatikani)", "ja": "Èdè Japanisi", "ja_JP": "Èdè Japanisi (Orílẹ́ède Japani)", "ka": "Èdè Georgia", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json index 9288ebc9ef..a22de21302 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/yo_BJ.json @@ -151,6 +151,7 @@ "es_AR": "Èdè Sipanisi (Orílɛ́ède Agentínà)", "es_BO": "Èdè Sipanisi (Orílɛ́ède Bɔ̀lífíyà)", "es_BR": "Èdè Sipanisi (Orílɛ́ède Bàràsílì)", + "es_BZ": "Èdè Sipanisi (Orílɛ́ède Bèlísɛ̀)", "es_CL": "Èdè Sipanisi (Orílɛ́ède shílè)", "es_CO": "Èdè Sipanisi (Orílɛ́ède Kòlómíbìa)", "es_CR": "Èdè Sipanisi (Orílɛ́ède Kuusita Ríkà)", @@ -242,6 +243,7 @@ "it_CH": "Èdè Italiani (Orílɛ́ède switishilandi)", "it_IT": "Èdè Italiani (Orílɛ́ède Italiyi)", "it_SM": "Èdè Italiani (Orílɛ́ède Sani Marino)", + "it_VA": "Èdè Italiani (Orílɛ́ède Fatikani)", "ja_JP": "Èdè Japanisi (Orílɛ́ède Japani)", "ka_GE": "Èdè Georgia (Orílɛ́ède Gɔgia)", "km_KH": "Èdè kameri (Orílɛ́ède Kàmùbódíà)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh.json b/src/Symfony/Component/Intl/Resources/data/locales/zh.json index 2742722ced..691311c878 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh.json @@ -71,7 +71,7 @@ "ce": "车臣文", "ce_RU": "车臣文 (俄罗斯)", "cs": "捷克语", - "cs_CZ": "捷克语 (捷克共和国)", + "cs_CZ": "捷克语 (捷克)", "cy": "威尔士语", "cy_GB": "威尔士语 (英国)", "da": "丹麦语", @@ -201,6 +201,7 @@ "es_AR": "西班牙文 (阿根廷)", "es_BO": "西班牙文 (玻利维亚)", "es_BR": "西班牙文 (巴西)", + "es_BZ": "西班牙文 (伯利兹)", "es_CL": "西班牙文 (智利)", "es_CO": "西班牙文 (哥伦比亚)", "es_CR": "西班牙文 (哥斯达黎加)", @@ -327,6 +328,7 @@ "it_CH": "意大利语 (瑞士)", "it_IT": "意大利语 (意大利)", "it_SM": "意大利语 (圣马力诺)", + "it_VA": "意大利语 (梵蒂冈)", "ja": "日语", "ja_JP": "日语 (日本)", "ka": "格鲁吉亚语", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json index 7ca92c053b..391f2ea3ec 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant.json @@ -68,7 +68,7 @@ "ce": "車臣文", "ce_RU": "車臣文 (俄羅斯)", "cs": "捷克文", - "cs_CZ": "捷克文 (捷克共和國)", + "cs_CZ": "捷克文 (捷克)", "cy": "威爾斯文", "cy_GB": "威爾斯文 (英國)", "da": "丹麥文", @@ -191,6 +191,7 @@ "en_ZW": "英文 (辛巴威)", "eo": "世界文", "es_BO": "西班牙文 (玻利維亞)", + "es_BZ": "西班牙文 (貝里斯)", "es_CO": "西班牙文 (哥倫比亞)", "es_CR": "西班牙文 (哥斯大黎加)", "es_DO": "西班牙文 (多明尼加共和國)", @@ -302,6 +303,7 @@ "it_CH": "義大利文 (瑞士)", "it_IT": "義大利文 (義大利)", "it_SM": "義大利文 (聖馬利諾)", + "it_VA": "義大利文 (梵蒂岡)", "ja": "日文", "ja_JP": "日文 (日本)", "ka": "喬治亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json index c362396775..beab6c7ad6 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zh_Hant_HK.json @@ -82,6 +82,7 @@ "en_ZM": "英文 (贊比亞)", "en_ZW": "英文 (津巴布韋)", "eo": "世界語", + "es_BZ": "西班牙文 (伯利茲)", "es_CR": "西班牙文 (哥斯達黎加)", "es_EC": "西班牙文 (厄瓜多爾)", "es_GT": "西班牙文 (危地馬拉)", @@ -121,6 +122,7 @@ "it_CH": "意大利文 (瑞士)", "it_IT": "意大利文 (意大利)", "it_SM": "意大利文 (聖馬利諾)", + "it_VA": "意大利文 (梵蒂岡)", "ka": "格魯吉亞文", "ka_GE": "格魯吉亞文 (格魯吉亞)", "ki_KE": "吉庫尤文 (肯雅)", diff --git a/src/Symfony/Component/Intl/Resources/data/locales/zu.json b/src/Symfony/Component/Intl/Resources/data/locales/zu.json index 72b339e377..115c0c7000 100644 --- a/src/Symfony/Component/Intl/Resources/data/locales/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/locales/zu.json @@ -71,7 +71,7 @@ "ce": "isi-Chechen", "ce_RU": "isi-Chechen (i-Russia)", "cs": "isi-Czech", - "cs_CZ": "isi-Czech (i-Czech Republic)", + "cs_CZ": "isi-Czech (i-Czechia)", "cy": "isi-Welsh", "cy_GB": "isi-Welsh (i-United Kingdom)", "da": "isi-Danish", @@ -201,6 +201,7 @@ "es_AR": "isi-Spanish (i-Argentina)", "es_BO": "isi-Spanish (i-Bolivia)", "es_BR": "isi-Spanish (i-Brazil)", + "es_BZ": "isi-Spanish (i-Belize)", "es_CL": "isi-Spanish (i-Chile)", "es_CO": "isi-Spanish (i-Colombia)", "es_CR": "isi-Spanish (i-Costa Rica)", @@ -327,6 +328,7 @@ "it_CH": "isi-Italian (i-Switzerland)", "it_IT": "isi-Italian (i-Italy)", "it_SM": "isi-Italian (i-San Marino)", + "it_VA": "isi-Italian (i-Vatican City)", "ja": "isi-Japanese", "ja_JP": "isi-Japanese (i-Japan)", "ka": "isi-Georgian", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/af.json b/src/Symfony/Component/Intl/Resources/data/regions/af.json index d6c5367063..65e4ee519b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/af.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "AC": "Ascensioneiland", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Kerseiland", "CY": "Siprus", - "CZ": "Tjeggiese Republiek", + "CZ": "Tjeggië", "DE": "Duitsland", "DG": "Diego Garcia", "DJ": "Djiboeti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ak.json b/src/Symfony/Component/Intl/Resources/data/regions/ak.json index 1ed3b2a89a..1980f47591 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ak.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ak.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/am.json b/src/Symfony/Component/Intl/Resources/data/regions/am.json index 087aa8e454..0cd6a08ef3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/am.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "አሴንሽን ደሴት", "AD": "አንዶራ", @@ -56,7 +56,7 @@ "CW": "ኩራሳዎ", "CX": "የገና ደሴት", "CY": "ሳይፕረስ", - "CZ": "ቼክ ሪፑብሊክ", + "CZ": "ቼቺያ", "DE": "ጀርመን", "DG": "ዲዬጎ ጋርሺያ", "DJ": "ጂቡቲ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar.json b/src/Symfony/Component/Intl/Resources/data/regions/ar.json index 6f678699f8..a9a60ec7db 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.86", "Names": { "AC": "جزيرة أسينشيون", "AD": "أندورا", @@ -56,7 +56,7 @@ "CW": "كوراساو", "CX": "جزيرة الكريسماس", "CY": "قبرص", - "CZ": "جمهورية التشيك", + "CZ": "التشيك", "DE": "ألمانيا", "DG": "دييغو غارسيا", "DJ": "جيبوتي", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json b/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json index b98f76dac1..6ca29a02a1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_LY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "EA": "سبتة ومليلية", "MS": "مونتيسيرات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json index 9caf578d2f..d68c96c4d8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ar_SA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BS": "جزر البهاما", "EA": "سبتة ومليلية", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/as.json b/src/Symfony/Component/Intl/Resources/data/regions/as.json index 9c03a53080..e49e783887 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/as.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AQ": "এন্টাৰ্টিকা", "BR": "ব্ৰাজিল", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az.json b/src/Symfony/Component/Intl/Resources/data/regions/az.json index 4089664628..a26e925997 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/az.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Askenson adası", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Kurasao", "CX": "Milad adası", "CY": "Kipr", - "CZ": "Çex Respublikası", + "CZ": "Çexiya", "DE": "Almaniya", "DG": "Dieqo Qarsiya", "DJ": "Cibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json index 4db155af09..4047de4711 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/az_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.74", "Names": { "AC": "Аскенсон адасы", "AD": "Андорра", @@ -55,7 +55,7 @@ "CW": "Курасао", "CX": "Милад адасы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехија", "DE": "Алманија", "DG": "Диего Гарсија", "DJ": "Ҹибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/be.json b/src/Symfony/Component/Intl/Resources/data/regions/be.json index 2cafd246db..1ffa370127 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/be.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.66", + "Version": "2.1.31.86", "Names": { "AC": "Востраў Узнясення", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bg.json b/src/Symfony/Component/Intl/Resources/data/regions/bg.json index 44fcf646b6..67b96dfb74 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.33.75", "Names": { "AC": "остров Възнесение", "AD": "Андора", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "остров Рождество", "CY": "Кипър", - "CZ": "Чешка република", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bm.json b/src/Symfony/Component/Intl/Resources/data/regions/bm.json index 664f519445..afd862110d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andɔr", "AE": "Arabu mara kafoli", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn.json b/src/Symfony/Component/Intl/Resources/data/regions/bn.json index bc0a90ce3f..3e1bdb5566 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "AC": "অ্যাসসেনশন আইল্যান্ড", "AD": "আন্ডোরা", @@ -56,7 +56,7 @@ "CW": "কিউরাসাও", "CX": "ক্রিসমাস দ্বীপ", "CY": "সাইপ্রাস", - "CZ": "চেক প্রজাতন্ত্র", + "CZ": "চেচিয়া", "DE": "জার্মানি", "DG": "দিয়েগো গার্সিয়া", "DJ": "জিবুতি", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json index 147988e602..7bc82295c2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bn_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "HN": "হন্ডুরাস", "MD": "মলডোভা", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo.json b/src/Symfony/Component/Intl/Resources/data/regions/bo.json index f704c5c0d0..efc678e79e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "CN": "རྒྱ་ནག", "DE": "འཇར་མན་", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json index d2a4e7b1ed..1e75344f33 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bo_IN.json @@ -1,4 +1,4 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": [] } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/br.json b/src/Symfony/Component/Intl/Resources/data/regions/br.json index 628f124b4f..32ba725064 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/br.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Enez Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs.json b/src/Symfony/Component/Intl/Resources/data/regions/bs.json index 9d267224b7..5dde47f5d4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kurasao", "CX": "Božićna Ostrva", "CY": "Kipar", - "CZ": "Češka Republika", + "CZ": "Češka", "DE": "Njemačka", "DG": "Dijego Garsija", "DJ": "Džibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json index 50d1f34b41..727605329c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/bs_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.72", "Names": { "AC": "Острво Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ca.json b/src/Symfony/Component/Intl/Resources/data/regions/ca.json index f1cb070384..f275ba7259 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Illa de l’Ascensió", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Illa Christmas", "CY": "Xipre", - "CZ": "República Txeca", + "CZ": "Txèquia", "DE": "Alemanya", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ce.json b/src/Symfony/Component/Intl/Resources/data/regions/ce.json index afcb2732c8..5865865986 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Айъадаларан гӀайре", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cs.json b/src/Symfony/Component/Intl/Resources/data/regions/cs.json index 737067e32c..b6bd6d4d1a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Vánoční ostrov", "CY": "Kypr", - "CZ": "Česká republika", + "CZ": "Česko", "DE": "Německo", "DG": "Diego García", "DJ": "Džibutsko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/cy.json b/src/Symfony/Component/Intl/Resources/data/regions/cy.json index dc718c0f02..950fc63741 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "AC": "Ynys Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Ynys y Nadolig", "CY": "Cyprus", - "CZ": "Gweriniaeth Tsiec", + "CZ": "Tsiecia", "DE": "Yr Almaen", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/da.json b/src/Symfony/Component/Intl/Resources/data/regions/da.json index 331ba5a711..e8410de19a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/da.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascensionøen", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de.json b/src/Symfony/Component/Intl/Resources/data/regions/de.json index ad760aa13d..0a650e172b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Weihnachtsinsel", "CY": "Zypern", - "CZ": "Tschechische Republik", + "CZ": "Tschechien", "DE": "Deutschland", "DG": "Diego Garcia", "DJ": "Dschibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json b/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json index 9f5f0e793b..e31f92122e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de_AT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.73", + "Version": "2.1.31.33", "Names": { "SJ": "Svalbard und Jan Mayen" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json b/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json index 84cc5bd0c2..78311bbb50 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/de_CH.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BN": "Brunei", "BW": "Botswana", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/dz.json b/src/Symfony/Component/Intl/Resources/data/regions/dz.json index 05af2671f9..ba4238b5b1 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.61", + "Version": "2.1.31.34", "Names": { "AC": "ཨེ་སེན་ཤུན་ཚོ་གླིང༌", "AD": "ཨཱན་དོ་ར", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ee.json b/src/Symfony/Component/Intl/Resources/data/regions/ee.json index 7b303bfb29..3de1291784 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension ƒudomekpo nutome", "AD": "Andorra nutome", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/el.json b/src/Symfony/Component/Intl/Resources/data/regions/el.json index b3cd323075..9b8c215540 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/el.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Νήσος Ασενσιόν", "AD": "Ανδόρα", @@ -56,7 +56,7 @@ "CW": "Κουρασάο", "CX": "Νήσος των Χριστουγέννων", "CY": "Κύπρος", - "CZ": "Τσεχική Δημοκρατία", + "CZ": "Τσεχία", "DE": "Γερμανία", "DG": "Ντιέγκο Γκαρσία", "DJ": "Τζιμπουτί", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/en.json b/src/Symfony/Component/Intl/Resources/data/regions/en.json index 2891739789..8022a32452 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/en.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.59", "Names": { "AC": "Ascension Island", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Island", "CY": "Cyprus", - "CZ": "Czech Republic", + "CZ": "Czechia", "DE": "Germany", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eo.json b/src/Symfony/Component/Intl/Resources/data/regions/eo.json index 13d080581d..e663780218 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andoro", "AE": "Unuiĝintaj Arabaj Emirlandoj", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es.json b/src/Symfony/Component/Intl/Resources/data/regions/es.json index 233c28eeea..e0f0243852 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.80", + "Version": "2.1.32.59", "Names": { "AC": "Isla de la Ascensión", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curazao", "CX": "Isla de Navidad", "CY": "Chipre", - "CZ": "República Checa", + "CZ": "Chequia", "DE": "Alemania", "DG": "Diego García", "DJ": "Yibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json index d236097f56..5cb2d6e0a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CI": "Costa de Marfil", "IC": "Islas Canarias", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_AR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_BO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json index 27fb03a5c3..6844e238ea 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CL.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "EH": "Sahara Occidental", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_CR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_DO.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_EC.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_GT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_HN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json index e37b805683..d50b6873a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_NI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json index b823decfa6..d8b05a140c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PR.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "UM": "Islas menores alejadas de EE. UU." } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_PY.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json index b823decfa6..d8b05a140c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_SV.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "UM": "Islas menores alejadas de EE. UU." } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json index b823decfa6..43b45c77fd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_US.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_US.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.74", "Names": { "UM": "Islas menores alejadas de EE. UU." } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json index 17716fdebb..b93165bfc7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/es_VE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia y Herzegovina", "TA": "Tristán de Acuña", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/et.json b/src/Symfony/Component/Intl/Resources/data/regions/et.json index c9405001ef..51d5e858fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/et.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascensioni saar", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Jõulusaar", "CY": "Küpros", - "CZ": "Tšehhi", + "CZ": "Tšehhia", "DE": "Saksamaa", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/eu.json b/src/Symfony/Component/Intl/Resources/data/regions/eu.json index 739bba8b49..41471bdda7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AC": "Ascension uhartea", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas uhartea", "CY": "Zipre", - "CZ": "Txekiar Errepublika", + "CZ": "Txekia", "DE": "Alemania", "DG": "Diego Garcia", "DJ": "Djibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa.json b/src/Symfony/Component/Intl/Resources/data/regions/fa.json index bc712c3319..9d64e201b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "AC": "جزایر آسنسیون", "AD": "آندورا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json index adec06492d..d12d3fed71 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fa_AF.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.33", "Names": { "AD": "اندورا", "AG": "انتیگوا و باربودا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ff.json b/src/Symfony/Component/Intl/Resources/data/regions/ff.json index 04b8bf09f4..529d16dcec 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ff.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ff.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Anndoora", "AE": "Emiraat Araab Denntuɗe", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fi.json b/src/Symfony/Component/Intl/Resources/data/regions/fi.json index f4ab82a423..cdb560563d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.88", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-saari", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Joulusaari", "CY": "Kypros", - "CZ": "Tšekki", + "CZ": "Tšekinmaa", "DE": "Saksa", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fo.json b/src/Symfony/Component/Intl/Resources/data/regions/fo.json index d9dffbbc8c..cf7f34dd29 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr.json b/src/Symfony/Component/Intl/Resources/data/regions/fr.json index 3e65a57c29..d2902597b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Île de l’Ascension", "AD": "Andorre", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Île Christmas", "CY": "Chypre", - "CZ": "République tchèque", + "CZ": "Tchéquie", "DE": "Allemagne", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json b/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json index d7c69ca809..f0587d8290 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr_BE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BN": "Brunei", "GS": "Îles Géorgie du Sud et Sandwich du Sud" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json index 31e831e14c..cf004b0e66 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AC": "île de l’Ascension", "AX": "îles d’Åland", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/fy.json b/src/Symfony/Component/Intl/Resources/data/regions/fy.json index bd62e890ac..ae18163a1e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ga.json b/src/Symfony/Component/Intl/Resources/data/regions/ga.json index e4beb7f6e2..8f50f007ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Oileán na Deascabhála", "AD": "Andóra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gd.json b/src/Symfony/Component/Intl/Resources/data/regions/gd.json index 11d7001222..ca1a0d11c8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Eilean na Deasgabhalach", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Eilean na Nollaig", "CY": "Cìopras", - "CZ": "Poblachd na Seice", + "CZ": "An t-Seic", "DE": "A’ Ghearmailt", "DG": "Diego Garcia", "DJ": "Diobùtaidh", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gl.json b/src/Symfony/Component/Intl/Resources/data/regions/gl.json index 56af5ed6a8..cf617ce750 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Illa de Ascensión", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Illa de Nadal", "CY": "Chipre", - "CZ": "República Checa", + "CZ": "Chequia", "DE": "Alemaña", "DG": "Diego García", "DJ": "Djibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gu.json b/src/Symfony/Component/Intl/Resources/data/regions/gu.json index e1d8cee967..955728d82c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "એસેન્શન આઇલેન્ડ", "AD": "ઍંડોરા", @@ -56,7 +56,7 @@ "CW": "ક્યુરાસાઓ", "CX": "ક્રિસમસ આઇલેન્ડ", "CY": "સાયપ્રસ", - "CZ": "ચેક રીપબ્લિક", + "CZ": "ચેકીયા", "DE": "જર્મની", "DG": "ડિએગો ગારસિઆ", "DJ": "જીબૌટી", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/gv.json b/src/Symfony/Component/Intl/Resources/data/regions/gv.json index c52e8a07ef..112150a842 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/gv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/gv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.34", "Names": { "GB": "Rywvaneth Unys", "IM": "Ellan Vannin" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ha.json b/src/Symfony/Component/Intl/Resources/data/regions/ha.json index 57a29038e7..a709be13ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ha.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ha.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Haɗaɗɗiyar Daular Larabawa", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/he.json b/src/Symfony/Component/Intl/Resources/data/regions/he.json index 5828bb31ad..1655ba93a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/he.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -56,7 +56,7 @@ "CW": "קוראסאו", "CX": "האי כריסטמס", "CY": "קפריסין", - "CZ": "הרפובליקה הצ׳כית", + "CZ": "צ׳כיה", "DE": "גרמניה", "DG": "דייגו גרסיה", "DJ": "ג׳יבוטי", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hi.json b/src/Symfony/Component/Intl/Resources/data/regions/hi.json index 7c25e6d163..416600d451 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "असेंशन द्वीप", "AD": "एंडोरा", @@ -56,7 +56,7 @@ "CW": "क्यूरासाओ", "CX": "क्रिसमस द्वीप", "CY": "साइप्रस", - "CZ": "चेक गणराज्य", + "CZ": "चेकिया", "DE": "जर्मनी", "DG": "डिएगो गार्सिया", "DJ": "जिबूती", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hr.json b/src/Symfony/Component/Intl/Resources/data/regions/hr.json index 6df243b748..96c854bf19 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Otok Ascension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Božićni otok", "CY": "Cipar", - "CZ": "Češka Republika", + "CZ": "Češka", "DE": "Njemačka", "DG": "Diego Garcia", "DJ": "Džibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hu.json b/src/Symfony/Component/Intl/Resources/data/regions/hu.json index 2f06364165..fd2f36ea1b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-sziget", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/hy.json b/src/Symfony/Component/Intl/Resources/data/regions/hy.json index f761506170..7a0d170582 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Համբարձման կղզի", "AD": "Անդորրա", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/id.json b/src/Symfony/Component/Intl/Resources/data/regions/id.json index 4d54933cc8..163a780290 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/id.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Pulau Christmas", "CY": "Siprus", - "CZ": "Republik Cheska", + "CZ": "Cheska", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ig.json b/src/Symfony/Component/Intl/Resources/data/regions/ig.json index 1c8d76a7bc..2f4b031ab9 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ig.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ig.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.84", + "Version": "2.1.31.33", "Names": { "BJ": "Binin", "BM": "Bemuda", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ii.json b/src/Symfony/Component/Intl/Resources/data/regions/ii.json index cc409962c8..be6a66e82c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BR": "ꀠꑭ", "CN": "ꍏꇩ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/in.json b/src/Symfony/Component/Intl/Resources/data/regions/in.json index 4d54933cc8..163a780290 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/in.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Pulau Christmas", "CY": "Siprus", - "CZ": "Republik Cheska", + "CZ": "Cheska", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/is.json b/src/Symfony/Component/Intl/Resources/data/regions/is.json index 5970e4afa4..499a364c85 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/is.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.65", + "Version": "2.1.32.59", "Names": { "AC": "Ascension-eyja", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/it.json b/src/Symfony/Component/Intl/Resources/data/regions/it.json index f4e71a8fe8..006aba5fdc 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/it.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "AC": "Isola Ascensione", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Isola Christmas", "CY": "Cipro", - "CZ": "Repubblica Ceca", + "CZ": "Cèchia", "DE": "Germania", "DG": "Diego Garcia", "DJ": "Gibuti", @@ -224,7 +224,7 @@ "TH": "Thailandia", "TJ": "Tagikistan", "TK": "Tokelau", - "TL": "Timor Leste", + "TL": "Timor Est", "TM": "Turkmenistan", "TN": "Tunisia", "TO": "Tonga", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/iw.json b/src/Symfony/Component/Intl/Resources/data/regions/iw.json index 5828bb31ad..1655ba93a8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "AC": "האי אסנשן", "AD": "אנדורה", @@ -56,7 +56,7 @@ "CW": "קוראסאו", "CX": "האי כריסטמס", "CY": "קפריסין", - "CZ": "הרפובליקה הצ׳כית", + "CZ": "צ׳כיה", "DE": "גרמניה", "DG": "דייגו גרסיה", "DJ": "ג׳יבוטי", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ja.json b/src/Symfony/Component/Intl/Resources/data/regions/ja.json index 7798d20a7a..4ea4e06103 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "アセンション島", "AD": "アンドラ", @@ -56,7 +56,7 @@ "CW": "キュラソー", "CX": "クリスマス島", "CY": "キプロス", - "CZ": "チェコ共和国", + "CZ": "チェコ", "DE": "ドイツ", "DG": "ディエゴガルシア島", "DJ": "ジブチ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ka.json b/src/Symfony/Component/Intl/Resources/data/regions/ka.json index cc02581eb9..346b65ff5c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AC": "ამაღლების კუნძული", "AD": "ანდორა", @@ -56,7 +56,7 @@ "CW": "კიურასაო", "CX": "შობის კუნძული", "CY": "კვიპროსი", - "CZ": "ჩეხეთის რესპუბლიკა", + "CZ": "ჩეხეთი", "DE": "გერმანია", "DG": "დიეგო-გარსია", "DJ": "ჯიბუტი", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ki.json b/src/Symfony/Component/Intl/Resources/data/regions/ki.json index 5d9ac740df..0fb79a2809 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ki.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ki.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Falme za Kiarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kk.json b/src/Symfony/Component/Intl/Resources/data/regions/kk.json index 28a3bd8292..5de8337e4b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Әскенжін аралы", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Рождество аралы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего-Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kl.json b/src/Symfony/Component/Intl/Resources/data/regions/kl.json index 5cba91fbb5..73588fba5c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.34", "Names": { "GL": "Kalaallit Nunaat" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/km.json b/src/Symfony/Component/Intl/Resources/data/regions/km.json index b1560f1e42..e0798a66e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/km.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.74", "Names": { "AC": "កោះ​អាសេនសិន", "AD": "អង់ដូរ៉ា", @@ -56,7 +56,7 @@ "CW": "កូរ៉ាកៅ", "CX": "កោះ​គ្រីស្មាស", "CY": "ស៊ីប", - "CZ": "សាធារណរដ្ឋឆេក", + "CZ": "ឆេគា", "DE": "អាល្លឺម៉ង់", "DG": "ឌៀហ្គោហ្គាស៊ី", "DJ": "ជីប៊ូទី", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kn.json b/src/Symfony/Component/Intl/Resources/data/regions/kn.json index 9e48a10694..9ea647dd44 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ಅಸೆನ್ಶನ್ ದ್ವೀಪ", "AD": "ಅಂಡೋರಾ", @@ -56,7 +56,7 @@ "CW": "ಕುರಾಕಾವ್", "CX": "ಕ್ರಿಸ್ಮಸ್ ದ್ವೀಪ", "CY": "ಸೈಪ್ರಸ್", - "CZ": "ಝೆಕ್ ರಿಪಬ್ಲಿಕ್", + "CZ": "ಝೆಕಿಯಾ", "DE": "ಜರ್ಮನಿ", "DG": "ಡೈಗೋ ಗಾರ್ಸಿಯ", "DJ": "ಜಿಬೋಟಿ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko.json b/src/Symfony/Component/Intl/Resources/data/regions/ko.json index 98cf3380c9..3da118946e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.32.59", "Names": { "AC": "어센션 섬", "AD": "안도라", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json b/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json index c9188ad466..a9004cd204 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ko_KP.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "KP": "조선민주주의인민공화국" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ks.json b/src/Symfony/Component/Intl/Resources/data/regions/ks.json index 77daec5ec9..14cd09307b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "AD": "اٮ۪نڑورا", "AE": "مُتحدہ عرَب امارات", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/kw.json b/src/Symfony/Component/Intl/Resources/data/regions/kw.json index 27581e9038..152644b980 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/kw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/kw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "GB": "Rywvaneth Unys" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ky.json b/src/Symfony/Component/Intl/Resources/data/regions/ky.json index 5b39903957..0b0469119a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Ассеншин аралы", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Крисмас аралы", "CY": "Кипр", - "CZ": "Чех Республикасы", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего Гарсия", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lb.json b/src/Symfony/Component/Intl/Resources/data/regions/lb.json index 806242bae7..3187f8e605 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lg.json b/src/Symfony/Component/Intl/Resources/data/regions/lg.json index b5035b952a..3afaf3185a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Emireeti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ln.json b/src/Symfony/Component/Intl/Resources/data/regions/ln.json index 0328c1a2d4..e4ba796e1c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ln.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ln.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.74", "Names": { "AD": "Andorɛ", "AE": "Lɛmila alabo", @@ -49,7 +49,7 @@ "CU": "Kiba", "CV": "Bisanga bya Kapevɛrɛ", "CY": "Sípɛlɛ", - "CZ": "Repibiki Tsekɛ", + "CZ": "Shekia", "DE": "Alemani", "DJ": "Dzibuti", "DK": "Danɛmarike", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lo.json b/src/Symfony/Component/Intl/Resources/data/regions/lo.json index 421abaad9a..42bcd14617 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ເກາະອາເຊນຊັນ", "AD": "ອັນດໍຣາ", @@ -56,7 +56,7 @@ "CW": "ຄູຣາຊາວ", "CX": "ເກາະຄຣິສມາດ", "CY": "ໄຊປຣັສ", - "CZ": "ສາທາລະນະລັດເຊັກ", + "CZ": "ເຊັກເຊຍ", "DE": "ເຢຍລະມັນ", "DG": "ດິເອໂກ ກາເຊຍ", "DJ": "ຈິບູຕິ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lt.json b/src/Symfony/Component/Intl/Resources/data/regions/lt.json index 7db358bc8a..1921273194 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Dangun Žengimo sala", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lu.json b/src/Symfony/Component/Intl/Resources/data/regions/lu.json index 5bde582834..efde08d27e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andore", "AE": "Lemila alabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/lv.json b/src/Symfony/Component/Intl/Resources/data/regions/lv.json index b64c7098ba..36732db994 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Debesbraukšanas sala", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kirasao", "CX": "Ziemsvētku sala", "CY": "Kipra", - "CZ": "Čehijas Republika", + "CZ": "Čehija", "DE": "Vācija", "DG": "Djego Garsijas atols", "DJ": "Džibutija", @@ -111,7 +111,7 @@ "IO": "Indijas okeāna Britu teritorija", "IQ": "Irāka", "IR": "Irāna", - "IS": "Īslande", + "IS": "Islande", "IT": "Itālija", "JE": "Džērsija", "JM": "Jamaika", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/meta.json b/src/Symfony/Component/Intl/Resources/data/regions/meta.json index c95ca7761c..fc85492bde 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.58", + "Version": "2.1.32.59", "Regions": [ "AC", "AD", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mg.json b/src/Symfony/Component/Intl/Resources/data/regions/mg.json index a8359f8ae8..b06d69ded3 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andorra", "AE": "Emirà Arabo mitambatra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mk.json b/src/Symfony/Component/Intl/Resources/data/regions/mk.json index b7761a7e8f..3cb49d5158 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Остров Асенсион", "AD": "Андора", @@ -56,7 +56,7 @@ "CW": "Курасао", "CX": "Божиќен Остров", "CY": "Кипар", - "CZ": "Република Чешка", + "CZ": "Чешка", "DE": "Германија", "DG": "Диего Гарсија", "DJ": "Џибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ml.json b/src/Symfony/Component/Intl/Resources/data/regions/ml.json index 8ba622b609..4fd365af06 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "അസൻഷൻ ദ്വീപ്", "AD": "അന്റോറ", @@ -56,7 +56,7 @@ "CW": "കുറാകാവോ", "CX": "ക്രിസ്മസ് ദ്വീപ്", "CY": "സൈപ്രസ്", - "CZ": "ചെക്ക് റിപ്പബ്ലിക്", + "CZ": "ചെക്കിയ", "DE": "ജർമനി", "DG": "ഡീഗോ ഗ്രാഷ്യ", "DJ": "ദിജിബൗട്ടി", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mn.json b/src/Symfony/Component/Intl/Resources/data/regions/mn.json index a8dc1f396e..2428256cd4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Аскенсион арал", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Куракао", "CX": "Зул сарын арал", "CY": "Кипр", - "CZ": "Бүгд Найрамдах Чех Улс", + "CZ": "Чех", "DE": "Герман", "DG": "Диего Гарсиа", "DJ": "Джибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mo.json b/src/Symfony/Component/Intl/Resources/data/regions/mo.json index 785e0274a9..c338a7619b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "MM": "Myanmar" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mr.json b/src/Symfony/Component/Intl/Resources/data/regions/mr.json index acd7202fde..0071ebd6ad 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "अ‍ॅसेन्शियन बेट", "AD": "अँडोरा", @@ -56,7 +56,7 @@ "CW": "क्युरासाओ", "CX": "ख्रिसमस बेट", "CY": "सायप्रस", - "CZ": "झेक प्रजासत्ताक", + "CZ": "झेकिया", "DE": "जर्मनी", "DG": "दिएगो गार्सिया", "DJ": "जिबौटी", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ms.json b/src/Symfony/Component/Intl/Resources/data/regions/ms.json index e21e619ea0..c919b375de 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Pulau Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curacao", "CX": "Pulau Krismas", "CY": "Cyprus", - "CZ": "Republik Czech", + "CZ": "Czechia", "DE": "Jerman", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/mt.json b/src/Symfony/Component/Intl/Resources/data/regions/mt.json index 0835be6c9a..856198de52 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.59", "Names": { "AC": "Ascension Island", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/my.json b/src/Symfony/Component/Intl/Resources/data/regions/my.json index ca1aa7110c..b07d2f36b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/my.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.33.28", "Names": { "AC": "တက်တော်မူကျွန်း", "AD": "အင်ဒိုရာ", @@ -56,7 +56,7 @@ "CW": "ကျူရေးကိုးစ်", "CX": "ခရစ်စမတ် ကျွန်း", "CY": "ဆိုက်ပရပ်စ်", - "CZ": "ချက် ပြည်ထောင်စု", + "CZ": "ချက်ကီယား", "DE": "ဂျာမဏီ", "DG": "ဒီအဲဂိုဂါစီရာ", "DJ": "ဂျီဘူတီ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nb.json b/src/Symfony/Component/Intl/Resources/data/regions/nb.json index f9659eec79..606d66603d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmasøya", "CY": "Kypros", - "CZ": "Den tsjekkiske republikk", + "CZ": "Tsjekkia", "DE": "Tyskland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nd.json b/src/Symfony/Component/Intl/Resources/data/regions/nd.json index ba86ab853d..f051dc3ea8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nd.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.65", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ne.json b/src/Symfony/Component/Intl/Resources/data/regions/ne.json index aacf3d7f38..8cf9dc181d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AC": "एस्केन्सन टापु", "AD": "अन्डोर्रा", @@ -56,7 +56,7 @@ "CW": "कुराकाओ", "CX": "क्रिष्टमस टापु", "CY": "साइप्रस", - "CZ": "चेक गणतन्त्र", + "CZ": "चेचिया", "DE": "जर्मनी", "DG": "डियगो गार्सिया", "DJ": "डिजिबुटी", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nl.json b/src/Symfony/Component/Intl/Resources/data/regions/nl.json index 8d22f961f4..9e376b22dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmaseiland", "CY": "Cyprus", - "CZ": "Tsjechië", + "CZ": "Tsjechische Republiek", "DE": "Duitsland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/nn.json b/src/Symfony/Component/Intl/Resources/data/regions/nn.json index 1df91ca99f..2979820e10 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/no.json b/src/Symfony/Component/Intl/Resources/data/regions/no.json index f9659eec79..606d66603d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/no.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmasøya", "CY": "Kypros", - "CZ": "Den tsjekkiske republikk", + "CZ": "Tsjekkia", "DE": "Tyskland", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/om.json b/src/Symfony/Component/Intl/Resources/data/regions/om.json index 90892d434b..87f0928999 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/om.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "BR": "Brazil", "CN": "China", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/or.json b/src/Symfony/Component/Intl/Resources/data/regions/or.json index e0caf934f6..bd78b24389 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/or.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "AD": "ଆଣ୍ଡୋରା", "AE": "ସଂଯୁକ୍ତ ଆରବ ଏମିରେଟସ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/os.json b/src/Symfony/Component/Intl/Resources/data/regions/os.json index c0166cde55..0da5a22c51 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/os.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "BR": "Бразили", "CN": "Китай", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pa.json b/src/Symfony/Component/Intl/Resources/data/regions/pa.json index de3bb02470..aab26e977c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ਅਸੈਂਸ਼ਨ ਟਾਪੂ", "AD": "ਅੰਡੋਰਾ", @@ -56,7 +56,7 @@ "CW": "ਕੁਰਾਕਾਓ", "CX": "ਕ੍ਰਿਸਮਿਸ ਟਾਪੂ", "CY": "ਸਾਇਪ੍ਰਸ", - "CZ": "ਚੈੱਕ ਗਣਰਾਜ", + "CZ": "ਚੈਕੀਆ", "DE": "ਜਰਮਨੀ", "DG": "ਡੀਇਗੋ ਗਾਰਸੀਆ", "DJ": "ਜ਼ੀਬੂਤੀ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json index ab65e07277..97e23dd3bf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pa_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "PK": "پاکستان" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pl.json b/src/Symfony/Component/Intl/Resources/data/regions/pl.json index 97bef7e83c..2f115a28b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Wyspa Wniebowstąpienia", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ps.json b/src/Symfony/Component/Intl/Resources/data/regions/ps.json index ec8481b1ad..7b06b7e76a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AF": "افغانستان", "AL": "البانیه", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt.json b/src/Symfony/Component/Intl/Resources/data/regions/pt.json index 0da2b90f9b..2a3a0f90e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ilha de Ascensão", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Ilha Christmas", "CY": "Chipre", - "CZ": "República Tcheca", + "CZ": "Tchéquia", "DE": "Alemanha", "DG": "Diego Garcia", "DJ": "Djibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json index c96cb8a96d..5bb5494a05 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.86", "Names": { "AI": "Anguila", "AM": "Arménia", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/qu.json b/src/Symfony/Component/Intl/Resources/data/regions/qu.json index f11d5c788a..1b740ad58f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/qu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/qu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "AD": "Andorra", "AF": "Afganistán", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rm.json b/src/Symfony/Component/Intl/Resources/data/regions/rm.json index f0cc0394ab..54c312b31a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AD": "Andorra", "AE": "Emirats Arabs Unids", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rn.json b/src/Symfony/Component/Intl/Resources/data/regions/rn.json index 9161777b1e..a6197ed95f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "Leta Zunze Ubumwe z’Abarabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro.json b/src/Symfony/Component/Intl/Resources/data/regions/ro.json index 705835b679..238c88d1c5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "AC": "Insula Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Insula Christmas", "CY": "Cipru", - "CZ": "Republica Cehă", + "CZ": "Cehia", "DE": "Germania", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json b/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json index 785e0274a9..c338a7619b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ro_MD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "MM": "Myanmar" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ru.json b/src/Symfony/Component/Intl/Resources/data/regions/ru.json index 9a1887d3c9..1703a4013e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "AC": "о-в Вознесения", "AD": "Андорра", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json b/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json index c0944266b8..48d88c016a 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ru_UA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AC": "О-в Вознесения", "AE": "Объединенные Арабские Эмираты", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/rw.json b/src/Symfony/Component/Intl/Resources/data/regions/rw.json index 35bd099adc..5bab5f0628 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/rw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/rw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "RW": "Rwanda", "TO": "Igitonga" diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se.json b/src/Symfony/Component/Intl/Resources/data/regions/se.json index b3c4724d83..7f25dac582 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/se.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json b/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json index 7d772dc329..444ae97f72 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/se_FI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "BA": "Bosnia ja Hercegovina", "KH": "Kamboža", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sg.json b/src/Symfony/Component/Intl/Resources/data/regions/sg.json index 61caf07603..6c46a0a17d 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sg.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Andôro", "AE": "Arâbo Emirâti Ôko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh.json b/src/Symfony/Component/Intl/Resources/data/regions/sh.json index cbc505d7c2..32fcabae9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json index 863ccb3fba..7b60d6cf3c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sh_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/si.json b/src/Symfony/Component/Intl/Resources/data/regions/si.json index ddef8a3241..35acde0a15 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/si.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.28", "Names": { "AC": "ඇසෙන්ෂන් දිවයින", "AD": "ඇන්ඩෝරාව", @@ -56,7 +56,7 @@ "CW": "කුරකාවෝ", "CX": "ක්‍රිස්මස් දූපත", "CY": "සයිප්‍රසය", - "CZ": "චෙක් ජනරජය", + "CZ": "චෙක්", "DE": "ජර්මනිය", "DG": "දියාගෝ ගාර්සියා", "DJ": "ජිබුටි", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sk.json b/src/Symfony/Component/Intl/Resources/data/regions/sk.json index e82d70fdc9..31b9849434 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Vianočný ostrov", "CY": "Cyprus", - "CZ": "Česká republika", + "CZ": "Česko", "DE": "Nemecko", "DG": "Diego Garcia", "DJ": "Džibutsko", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sl.json b/src/Symfony/Component/Intl/Resources/data/regions/sl.json index d44225192c..fb61815c02 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Otok Ascension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sn.json b/src/Symfony/Component/Intl/Resources/data/regions/sn.json index 81bb30b412..02cd0e92e5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "AD": "Andora", "AE": "United Arab Emirates", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/so.json b/src/Symfony/Component/Intl/Resources/data/regions/so.json index 2afc553590..d1d3d64da8 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/so.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.33.76", "Names": { "AD": "Andora", "AE": "Imaaraadka Carabta ee Midoobay", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sq.json b/src/Symfony/Component/Intl/Resources/data/regions/sq.json index 197f931977..974d52c067 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ishulli Asenshion", "AD": "Andorrë", @@ -56,7 +56,7 @@ "CW": "Kuraçao", "CX": "Ishulli i Krishtlindjes", "CY": "Qipro", - "CZ": "Republika Çeke", + "CZ": "Çeki", "DE": "Gjermani", "DG": "Diego-Garsia", "DJ": "Xhibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr.json b/src/Symfony/Component/Intl/Resources/data/regions/sr.json index ac4549f2c0..e16e15dfab 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.73", "Names": { "AC": "Острво Асенсион", "AD": "Андора", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json index a10204fcc1..8bbdaf9571 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json index a10204fcc1..8bbdaf9571 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json index 1814bb1de2..55e529e4e7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "BY": "Бјелорусија", "CG": "Конго", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json index f82c4cbdc1..5f2baef3cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Cyrl_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CG": "Конго", "CI": "Обала Слоноваче (Кот д’Ивоар)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json index cbc505d7c2..32fcabae9e 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "AC": "Ostrvo Asension", "AD": "Andora", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json index 863ccb3fba..7b60d6cf3c 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_BA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json index 5cd9000dcb..4adc5e5234 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json index 86b50ad597..9776570f40 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_Latn_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "CG": "Kongo", "CI": "Obala Slonovače (Kot d’Ivoar)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json index 5cd9000dcb..4adc5e5234 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_ME.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.31.33", "Names": { "BY": "Bjelorusija", "CG": "Kongo", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json b/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json index f82c4cbdc1..5f2baef3cf 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sr_XK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "CG": "Конго", "CI": "Обала Слоноваче (Кот д’Ивоар)", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sv.json b/src/Symfony/Component/Intl/Resources/data/regions/sv.json index 9cd8171d2c..0042a1c566 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "AC": "Ascension", "AD": "Andorra", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw.json b/src/Symfony/Component/Intl/Resources/data/regions/sw.json index b870b482c0..21b6ec49af 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.73", "Names": { "AC": "Kisiwa cha Ascension", "AD": "Andora", @@ -56,7 +56,7 @@ "CW": "Kurakao", "CX": "Kisiwa cha Krismasi", "CY": "Cyprus", - "CZ": "Jamhuri ya Cheki", + "CZ": "Chechia", "DE": "Ujerumani", "DG": "Diego Garcia", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json index ffa7d58f3d..94ca4a0241 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw_CD.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AF": "Afuganistani", "AZ": "Azabajani", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json b/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json index f071e13c93..701d0e5119 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/sw_KE.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AZ": "Azabajani", "CI": "Ivorikosti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ta.json b/src/Symfony/Component/Intl/Resources/data/regions/ta.json index a20b24e2fc..2e6252510f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.4", "Names": { "AC": "அஷன்ஷியன் தீவு", "AD": "அன்டோரா", @@ -56,7 +56,7 @@ "CW": "குராகவ்", "CX": "கிறிஸ்துமஸ் தீவு", "CY": "சைப்ரஸ்", - "CZ": "செக் குடியரசு", + "CZ": "செசியா", "DE": "ஜெர்மனி", "DG": "டியகோ கார்ஷியா", "DJ": "ஜிபௌட்டி", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/te.json b/src/Symfony/Component/Intl/Resources/data/regions/te.json index d434ddf661..3774b364a5 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/te.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "ఎసెషన్ దీవి", "AD": "అండొర్రా", @@ -56,7 +56,7 @@ "CW": "కురాకవో", "CX": "క్రిస్మస్ దీవి", "CY": "సైప్రస్", - "CZ": "చెక్ రిపబ్లిక్", + "CZ": "చెక్‌చియ", "DE": "జర్మనీ", "DG": "డియాగో గార్సియా", "DJ": "జిబౌటి", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/th.json b/src/Symfony/Component/Intl/Resources/data/regions/th.json index 7cb79d72e5..6392b6d548 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/th.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "เกาะแอสเซนชัน", "AD": "อันดอร์รา", @@ -56,7 +56,7 @@ "CW": "คูราเซา", "CX": "เกาะคริสต์มาส", "CY": "ไซปรัส", - "CZ": "สาธารณรัฐเช็ก", + "CZ": "เช็ก", "DE": "เยอรมนี", "DG": "ดิเอโกการ์เซีย", "DJ": "จิบูตี", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tl.json b/src/Symfony/Component/Intl/Resources/data/regions/tl.json index e5243881fe..9286283d66 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "AC": "Acsencion island", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Island", "CY": "Cyprus", - "CZ": "Czech Republic", + "CZ": "Czechia", "DE": "Germany", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/to.json b/src/Symfony/Component/Intl/Resources/data/regions/to.json index 1fc7c721ec..d8b68c8dab 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/to.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.74", "Names": { "AC": "Motu ʻAsenisini", "AD": "ʻAnitola", @@ -56,7 +56,7 @@ "CW": "Kulasao", "CX": "Motu Kilisimasi", "CY": "Saipalesi", - "CZ": "Lipapilika Seki", + "CZ": "Sēkia", "DE": "Siamane", "DG": "Tieko Kāsia", "DJ": "Siputi", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/tr.json b/src/Symfony/Component/Intl/Resources/data/regions/tr.json index 229ca98cd3..e9d223f6dd 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Ascension Adası", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Christmas Adası", "CY": "Kıbrıs", - "CZ": "Çek Cumhuriyeti", + "CZ": "Çekya", "DE": "Almanya", "DG": "Diego Garcia", "DJ": "Cibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ug.json b/src/Symfony/Component/Intl/Resources/data/regions/ug.json index 6e8c397f7b..45416daf36 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "AC": "ئاسسېنسىيون ئارىلى", "AD": "ئاندوررا", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uk.json b/src/Symfony/Component/Intl/Resources/data/regions/uk.json index 75242a56e3..6f62782437 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.38", + "Version": "2.1.32.60", "Names": { "AC": "Острів Вознесіння", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Острів Різдва", "CY": "Кіпр", - "CZ": "Чеська Республіка", + "CZ": "Чехія", "DE": "Німеччина", "DG": "Дієго-Гарсія", "DJ": "Джибуті", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur.json b/src/Symfony/Component/Intl/Resources/data/regions/ur.json index 14b3cbf5a8..340de71358 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "اسینشن آئلینڈ", "AD": "انڈورا", @@ -56,7 +56,7 @@ "CW": "کیوراکاؤ", "CX": "جزیرہ کرسمس", "CY": "قبرص", - "CZ": "چیک جمہوریہ", + "CZ": "زکھیا", "DE": "جرمنی", "DG": "ڈائجو گارسیا", "DJ": "جبوتی", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json index def922cab7..f4c90f595f 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/ur_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.79", + "Version": "2.1.31.33", "Names": { "AC": "جزیرہ اسینشن", "AX": "جزائر آلینڈ", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz.json b/src/Symfony/Component/Intl/Resources/data/regions/uz.json index 089d74c139..e113cca986 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.60", "Names": { "AC": "Me’roj oroli", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Kyurasao", "CX": "Rojdestvo oroli", "CY": "Kipr", - "CZ": "Chexiya Respublikasi", + "CZ": "Chexiya", "DE": "Germaniya", "DG": "Diyego-Garsiya", "DJ": "Jibuti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json index 939c755936..396b0e6ea7 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AF": "افغانستان" } diff --git a/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json index 976b4b0979..c59c342ae6 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/uz_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.86", "Names": { "AC": "Меърож ороли", "AD": "Андорра", @@ -56,7 +56,7 @@ "CW": "Кюрасао", "CX": "Рождество ороли", "CY": "Кипр", - "CZ": "Чехия Республикаси", + "CZ": "Чехия", "DE": "Германия", "DG": "Диего-Гарсия", "DJ": "Жибути", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/vi.json b/src/Symfony/Component/Intl/Resources/data/regions/vi.json index 51c3601bf5..d76ee7117b 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "AC": "Đảo Ascension", "AD": "Andorra", @@ -56,7 +56,7 @@ "CW": "Curaçao", "CX": "Đảo Giáng Sinh", "CY": "Síp", - "CZ": "Cộng hòa Séc", + "CZ": "Czechia", "DE": "Đức", "DG": "Diego Garcia", "DJ": "Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yi.json b/src/Symfony/Component/Intl/Resources/data/regions/yi.json index c7ffdae7ba..03b629b387 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.97", + "Version": "2.1.31.33", "Names": { "AD": "אַנדארע", "AF": "אַפֿגהאַניסטאַן", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo.json b/src/Symfony/Component/Intl/Resources/data/regions/yo.json index 5a41bee8b9..e6171f3b50 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "AD": "Orílẹ́ède Ààndórà", "AE": "Orílẹ́ède Ẹmirate ti Awọn Arabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json index afb9811010..730d6ca920 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/yo_BJ.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.33", "Names": { "AD": "Orílɛ́ède Ààndórà", "AE": "Orílɛ́ède Ɛmirate ti Awɔn Arabu", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh.json b/src/Symfony/Component/Intl/Resources/data/regions/zh.json index 2c0413f915..1c0afd2c53 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.84", + "Version": "2.1.33.94", "Names": { "AC": "阿森松岛", "AD": "安道尔", @@ -56,7 +56,7 @@ "CW": "库拉索", "CX": "圣诞岛", "CY": "塞浦路斯", - "CZ": "捷克共和国", + "CZ": "捷克", "DE": "德国", "DG": "迪戈加西亚岛", "DJ": "吉布提", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json index f974b60a5d..412a6fc287 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AE": "阿拉伯聯合酋長國", "AG": "安提瓜和巴布達", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json index 3701d28f95..025c857595 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.94", "Names": { "AC": "阿森松島", "AD": "安道爾", @@ -56,7 +56,7 @@ "CW": "庫拉索", "CX": "聖誕島", "CY": "賽普勒斯", - "CZ": "捷克共和國", + "CZ": "捷克", "DE": "德國", "DG": "迪亞哥加西亞島", "DJ": "吉布地", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json index f974b60a5d..412a6fc287 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zh_Hant_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "AE": "阿拉伯聯合酋長國", "AG": "安提瓜和巴布達", diff --git a/src/Symfony/Component/Intl/Resources/data/regions/zu.json b/src/Symfony/Component/Intl/Resources/data/regions/zu.json index f6cb4eb52a..737a09ccd2 100644 --- a/src/Symfony/Component/Intl/Resources/data/regions/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/regions/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.31.74", "Names": { "AC": "i-Ascension Island", "AD": "i-Andorra", @@ -56,7 +56,7 @@ "CW": "i-Curaçao", "CX": "i-Christmas Island", "CY": "i-Cyprus", - "CZ": "i-Czech Republic", + "CZ": "i-Czechia", "DE": "i-Germany", "DG": "i-Diego Garcia", "DJ": "i-Djibouti", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/af.json b/src/Symfony/Component/Intl/Resources/data/scripts/af.json index eb4e001795..772e86c6c7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/af.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/af.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "Arab": "Arabies", "Armn": "Armeens", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/am.json b/src/Symfony/Component/Intl/Resources/data/scripts/am.json index 80fce8ad73..a7e8cbb445 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/am.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/am.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "ዓረብኛ", "Armn": "አርሜንያዊ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json index 38fa92d590..4504de0e3a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ar.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ar.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.86", "Names": { "Arab": "العربية", "Armn": "الأرمينية", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/as.json b/src/Symfony/Component/Intl/Resources/data/scripts/as.json index 7fc0ba8900..2ca6d2add3 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/as.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/as.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Beng": "বঙালী" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az.json b/src/Symfony/Component/Intl/Resources/data/scripts/az.json index a1a07f3feb..d1d145763a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/az.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "ərəb", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json index 44cabfd94b..9389476cf6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/az_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.74", "Names": { "Cyrl": "Кирил" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/be.json b/src/Symfony/Component/Intl/Resources/data/scripts/be.json index 909350ca9d..279bc9808c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/be.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/be.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.66", + "Version": "2.1.31.86", "Names": { "Arab": "арабскае", "Armn": "армянскае", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json index 96150e0bd8..2749944c40 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bg.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bg.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.33.75", "Names": { "Arab": "арабска", "Armi": "Арамейска", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json index 1fd6978859..b5e093656d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "Arab": "আরবি", "Armi": "আরমি", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bo.json b/src/Symfony/Component/Intl/Resources/data/scripts/bo.json index b4473d5355..487d69f5ca 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Hans": "རྒྱ་ཡིག་གསར་པ།", "Hant": "རྒྱ་ཡིག་རྙིང་པ།", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/br.json b/src/Symfony/Component/Intl/Resources/data/scripts/br.json index 47923ad200..0e23d65654 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/br.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/br.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "arabek", "Armi": "arameek impalaerel", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json index 3df4d60319..83e6aeea53 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json index a55a40c7a2..2d3883e30f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/bs_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.72", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json index da2ff45d56..58b2ab09fa 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ca.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ca.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Adlm": "adlam", "Afak": "afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json index 000a5b9524..5f4b55e288 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ce.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ce.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "Ӏаьрбийн", "Armn": "эрмалойн", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json index e1417452ae..8f1e57c278 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cs.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cs.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "afaka", "Aghb": "kavkazskoalbánské", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json index e171b8547e..b8525436a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/cy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/cy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "Arab": "Arabaidd", "Armn": "Armenaidd", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/da.json b/src/Symfony/Component/Intl/Resources/data/scripts/da.json index 8198921dca..3e5cb062db 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/da.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/da.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "afaka", "Arab": "arabisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/de.json b/src/Symfony/Component/Intl/Resources/data/scripts/de.json index 02817c0b1d..2bfeebb1ea 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/de.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/de.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kaukasisch-Albanisch", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json index b058623eff..5f1111bed1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/dz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/dz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.61", + "Version": "2.1.31.34", "Names": { "Arab": "ཨེ་ར་བིཀ་ཡིག་གུ", "Armn": "ཨར་མི་ནི་ཡཱན་ཡིག་གུ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json index 2c9ab7c9a8..cab3bcf430 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ee.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ee.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "Arabiagbeŋɔŋlɔ", "Armn": "armeniagbeŋɔŋlɔ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/el.json b/src/Symfony/Component/Intl/Resources/data/scripts/el.json index cb27c79e47..d573583b66 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/el.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/el.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "Αραβικό", "Armi": "Αυτοκρατορικό Αραμαϊκό", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en.json b/src/Symfony/Component/Intl/Resources/data/scripts/en.json index 829edf793b..a9930e8e0a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.32.59", "Names": { "Adlm": "Adlam", "Afak": "Afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json b/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json index 0f07ea1a59..7712a994b7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/en_IN.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "Beng": "Bengali", "Orya": "Oriya" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es.json b/src/Symfony/Component/Intl/Resources/data/scripts/es.json index f0a4b5a276..ce27c67bac 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.80", + "Version": "2.1.32.59", "Names": { "Arab": "árabe", "Armn": "armenio", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json index 00f18e9b47..d5476e969a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_419.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "Hrkt": "katakana o hiragana", "Laoo": "lao", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json index d5c594996d..7b448fb9ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/es_MX.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.33", "Names": { "Telu": "telugú" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/et.json b/src/Symfony/Component/Intl/Resources/data/scripts/et.json index b626923f5c..ff2c3cda31 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/et.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/et.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "afaka", "Aghb": "albaani", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json index 8642a3c87c..abd603f4cc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/eu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/eu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "Arab": "arabiarra", "Armn": "armeniarra", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fa.json b/src/Symfony/Component/Intl/Resources/data/scripts/fa.json index 12ba116775..a2b6a002f6 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.59", "Names": { "Aghb": "آلبانیایی قفقازی", "Arab": "عربی", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json b/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json index 10a9885439..b01080d8db 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fa_AF.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.33", "Names": { "Mong": "مغلی" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json index e4db30bb4d..35915f0f88 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.88", + "Version": "2.1.32.59", "Names": { "Adlm": "fulanin adlam-aakkosto", "Afak": "afaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json index b37629052b..9bba681b19 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "arabisk", "Armn": "armenskt", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json index 4d06a91674..b4b78f5766 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabe", "Armi": "araméen impérial", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json b/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json index 79f792e8fd..516ae8991c 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fr_CA.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "Deva": "devanagari", "Gujr": "gujarati", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json index 5f5f72116c..ed6c634272 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/fy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/fy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.31.86", "Names": { "Afak": "Defaka", "Arab": "Arabysk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ga.json b/src/Symfony/Component/Intl/Resources/data/scripts/ga.json index 79c8c7599b..3e2c1f4c39 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ga.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ga.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Aghb": "Albánach Cugasach", "Arab": "Arabach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json index 3c3c25bf11..3c3b92daf0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gd.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gd.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Afak": "Afaka", "Aghb": "Albàinis Chabhcasach", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json index 531eb46984..8469f3721b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "árabe", "Armn": "armenio", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json index 9e36ec9996..4e4d7265b4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/gu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/gu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "અરબી", "Armi": "ઇમ્પિરિયલ આર્મનિક", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/he.json b/src/Symfony/Component/Intl/Resources/data/scripts/he.json index 1fe2f99e47..9a68a9e515 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/he.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/he.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "Arab": "ערבי", "Armn": "ארמני", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json index c8a890b5af..8eda66bf95 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "अरबी", "Armi": "इम्पिरियल आर्मेनिक", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json index 44ebb4c8d1..9f4a0ac673 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "afaka pismo", "Arab": "arapsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json index 5a9747c6d4..48f90b14e8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "Arab", "Armi": "Birodalmi arámi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json index 9c9d23d484..e488bee546 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/hy.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/hy.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "արաբական", "Armn": "հայկական", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/id.json b/src/Symfony/Component/Intl/Resources/data/scripts/id.json index 722e9fba3c..d778e1dd4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/id.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/id.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json index 2ff71519a3..ae39bb9f58 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ii.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ii.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "ꀊꇁꀨꁱꂷ", "Cyrl": "ꀊꆨꌦꇁꃚꁱꂷ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/in.json b/src/Symfony/Component/Intl/Resources/data/scripts/in.json index 722e9fba3c..d778e1dd4d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/in.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/in.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Albania Kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/is.json b/src/Symfony/Component/Intl/Resources/data/scripts/is.json index f9b6fc5478..c80f7c45d3 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/is.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/is.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.65", + "Version": "2.1.32.59", "Names": { "Arab": "arabískt", "Armn": "armenskt", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/it.json b/src/Symfony/Component/Intl/Resources/data/scripts/it.json index dc066444d0..592daea878 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/it.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/it.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "Afak": "afaka", "Arab": "arabo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json index 1fe2f99e47..9a68a9e515 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/iw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/iw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.27", + "Version": "2.1.32.59", "Names": { "Arab": "ערבי", "Armn": "ארמני", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json index 4214590c73..bbc78df697 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ja.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ja.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "アファカ文字", "Aghb": "カフカス・アルバニア文字", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json index 0069647a70..f8c62b1cfb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ka.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ka.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "Afak": "აფაკა", "Arab": "არაბული", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/kk.json b/src/Symfony/Component/Intl/Resources/data/scripts/kk.json index 7d6a8a83f8..c0c6306667 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "араб жазуы", "Armn": "армян жазуы", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/km.json b/src/Symfony/Component/Intl/Resources/data/scripts/km.json index b129077305..d389b3c299 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/km.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/km.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.74", "Names": { "Arab": "អារ៉ាប់", "Armn": "អាមេនី", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/kn.json b/src/Symfony/Component/Intl/Resources/data/scripts/kn.json index c3e69b1401..967c058907 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/kn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/kn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "ಅರೇಬಿಕ್", "Armi": "ಇಂಪೀರಿಯಲ್ ಅರೆಮಾಯಿಕ್", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json index 501e3fea82..0e8ed291c4 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ko.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ko.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.32.59", "Names": { "Afak": "아파카 문자", "Aghb": "코카시안 알바니아 문자", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json index 92997f3eff..f4f7beefca 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ks.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ks.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.6", + "Version": "2.1.31.86", "Names": { "Arab": "اَربی", "Armn": "اَرمانیَن", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json index 8196a271c8..aef62a9a8e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ky.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ky.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "Араб", "Armn": "Армян", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lb.json b/src/Symfony/Component/Intl/Resources/data/scripts/lb.json index 8f761b0143..b2b003022a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "Arabesch", "Armi": "Armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json index e8f49db412..c788e83425 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lo.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lo.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Afak": "ອັບຟາກາ", "Arab": "ອາຣາບິກ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lt.json b/src/Symfony/Component/Intl/Resources/data/scripts/lt.json index 02b0b2477a..541939a782 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kaukazo Albanijos", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json index bece1e64ab..ae6a616556 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/lv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/lv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arābu", "Armi": "aramiešu", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json index c984647a8d..86d7167f87 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/meta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/meta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.58", + "Version": "2.1.32.59", "Scripts": [ "Adlm", "Afak", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json index 90f45cfcec..b30f9fd5ef 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "афака", "Aghb": "кавкаскоалбански", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ml.json b/src/Symfony/Component/Intl/Resources/data/scripts/ml.json index 159790dc1a..38353d1537 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ml.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ml.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "അറബിക്", "Armi": "അർമി", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json index 7a51c2ffd8..76071ef143 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "араб", "Armn": "армени", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json index 9dc8912029..c3f8d01d45 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "अरबी", "Armi": "इम्पिरियल आर्मेनिक", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json index a7160b2e63..7bb622ff7e 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ms.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ms.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "Arab", "Armn": "Armenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json index 4465dc33b1..f2b0a99a76 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/mt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/mt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.32.59", "Names": { "Arab": "Għarbi", "Cyrl": "Ċirilliku", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/my.json b/src/Symfony/Component/Intl/Resources/data/scripts/my.json index b8041cba3d..7721f0ca69 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/my.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/my.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.50", + "Version": "2.1.33.28", "Names": { "Arab": "အာရေဗျ", "Armn": "အာမေးနီးယား", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nb.json b/src/Symfony/Component/Intl/Resources/data/scripts/nb.json index dc5c481e71..f5b7d7e63b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nb.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nb.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json index 48d6b33834..c83e8a0080 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ne.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ne.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "Arab": "अरबी", "Armi": "आर्मी", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json index fd1379aa13..6bd2efa43a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Adlm": "Adlam", "Afak": "Defaka", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json index fdd26ee95b..f224b033d1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/nn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/nn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "arabisk", "Armi": "armisk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/no.json b/src/Symfony/Component/Intl/Resources/data/scripts/no.json index dc5c481e71..f5b7d7e63b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/no.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/no.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "Afak": "afaka", "Aghb": "kaukasus-albansk", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/om.json b/src/Symfony/Component/Intl/Resources/data/scripts/om.json index 5a57b6c376..bfe18400fc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/om.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/om.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "Latn": "Latin" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/or.json b/src/Symfony/Component/Intl/Resources/data/scripts/or.json index a9efa7342a..76750c38c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/or.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/or.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "Arab": "ଆରବିକ୍", "Armi": "ଇମ୍ପେରିଆଲ୍ ଆରମିକ୍", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/os.json b/src/Symfony/Component/Intl/Resources/data/scripts/os.json index 9e95e6e60b..9042e75829 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/os.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/os.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "Араббаг", "Cyrl": "Киррилицӕ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pa.json b/src/Symfony/Component/Intl/Resources/data/scripts/pa.json index ea2efe2da1..39cce6a6f1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "ਅਰਬੀ", "Armn": "ਅਰਮੀਨੀਆਈ", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json b/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json index 75fa968e2d..92237304f7 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pa_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "عربی", "Guru": "گُرمُکھی" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json index 05f22febd9..ab85b9d144 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabskie", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json index 670362e0e2..89eb295efc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ps.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ps.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "عربي" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json index 9f5ec2b7c0..26547c948a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "árabe", "Armi": "armi", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json index e51e9e02a1..0897b12fca 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/pt_PT.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.54", + "Version": "2.1.31.86", "Names": { "Armn": "arménio", "Egyd": "egípcio demótico", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json index 1847a44c43..9d88aa14dc 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/rm.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/rm.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Arab": "arab", "Armi": "arameic imperial", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ro.json b/src/Symfony/Component/Intl/Resources/data/scripts/ro.json index 5927d3a678..9c3856a867 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ro.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ro.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.60", "Names": { "Arab": "arabă", "Armn": "armeană", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json index 0058c1ab7b..0ee324ac9f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ru.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ru.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.20", + "Version": "2.1.32.59", "Names": { "Afak": "афака", "Arab": "арабица", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se.json b/src/Symfony/Component/Intl/Resources/data/scripts/se.json index 8b4e1a1403..92d943692b 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/se.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/se.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.33", "Names": { "Arab": "arába", "Cyrl": "kyrillalaš", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json b/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json index 4e23ee7e49..6c436258a0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/se_FI.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.31.33", "Names": { "Arab": "arábalaš", "Hani": "kiinnálaš", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json index a4aeecaeaf..f79cd2a192 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/si.json b/src/Symfony/Component/Intl/Resources/data/scripts/si.json index 5364ad7d1b..3d36cb3102 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/si.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/si.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.28", "Names": { "Arab": "අරාබි", "Armn": "ආර්මේනියානු", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sk.json b/src/Symfony/Component/Intl/Resources/data/scripts/sk.json index e8639cbe2a..6dd4de3bd8 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabské", "Armn": "arménske", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json index eb8664fd44..fd5cd56ca0 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabski", "Armi": "imperialno-aramejski", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/so.json b/src/Symfony/Component/Intl/Resources/data/scripts/so.json index 7ea667e8cb..c8634fbb68 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/so.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/so.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.78", + "Version": "2.1.33.76", "Names": { "Zxxx": "Aan la qorin", "Zzzz": "Far aan la aqoon amase aan saxnayn" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json index 51f34cf730..1e45c84e7f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sq.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sq.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "arabik", "Armn": "armen", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sr.json b/src/Symfony/Component/Intl/Resources/data/scripts/sr.json index fae62efcd8..d4f7ba0aba 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.73", "Names": { "Arab": "арапско писмо", "Armi": "империјско арамејско писмо", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json b/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json index a4aeecaeaf..f79cd2a192 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sr_Latn.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.33", + "Version": "2.1.32.73", "Names": { "Arab": "arapsko pismo", "Armi": "imperijsko aramejsko pismo", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json index 88aaa6d9b7..5271e58091 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sv.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sv.json @@ -1,5 +1,5 @@ { - "Version": "2.1.30.7", + "Version": "2.1.32.59", "Names": { "Afak": "afakiska", "Aghb": "kaukasiska albanska", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json index 7c4f5c1f9c..e8c9d16f7a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/sw.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/sw.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.73", "Names": { "Arab": "Kiarabu", "Armn": "Kiarmenia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json index 527c38a31f..e043d3461a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ta.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ta.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.4", "Names": { "Arab": "அரபிக்", "Armi": "இம்பேரியல் அரமெய்க்", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/te.json b/src/Symfony/Component/Intl/Resources/data/scripts/te.json index 050cec11cf..5835c05f45 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/te.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/te.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "అరబిక్", "Armi": "ఇంపీరియల్ అరామాక్", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/th.json b/src/Symfony/Component/Intl/Resources/data/scripts/th.json index ddce6a378b..f403adef3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/th.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/th.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "อะฟาคา", "Aghb": "แอลเบเนีย คอเคเซีย", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json index a0acc4e097..a4a4c92328 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ti.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ti.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Ethi": "ፊደል", "Latn": "ላቲን" diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json index 3015fb14eb..e0d380df03 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.31.86", "Names": { "Arab": "Arabic", "Armn": "Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/to.json b/src/Symfony/Component/Intl/Resources/data/scripts/to.json index efae34c512..842627b954 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/to.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/to.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.74", "Names": { "Afak": "tohinima fakaʻafaka", "Aghb": "tohinima fakaʻalapēnia-kaukasia", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/tr.json b/src/Symfony/Component/Intl/Resources/data/scripts/tr.json index cf0a74b875..bdb93e1b02 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/tr.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/tr.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Afaka", "Aghb": "Kafkas Albanyası", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json index 5f4c86d7b4..88e3513245 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ug.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ug.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.76", + "Version": "2.1.31.86", "Names": { "Afak": "ئافاكا", "Arab": "ئەرەب", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json index aa08cb1c5c..87f08422af 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uk.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uk.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.38", + "Version": "2.1.32.60", "Names": { "Afak": "афака", "Aghb": "кавказька албанська", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json index 899f7cf662..37474e3155 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/ur.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/ur.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Arab": "عربی", "Armn": "آرمینیائی", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json index e120d19590..10e3655ef2 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.44", + "Version": "2.1.32.60", "Names": { "Arab": "arab", "Armn": "arman", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json index bf7fb812f7..52b0a001ae 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Arab.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.40", + "Version": "2.1.31.33", "Names": { "Arab": "عربی" } diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json index 356577fa2d..48ce7be151 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/uz_Cyrl.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.98", + "Version": "2.1.31.86", "Names": { "Arab": "Араб", "Armn": "Арман", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json index edf646ad4f..d73efce88a 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/vi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/vi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.32.59", "Names": { "Afak": "Chữ Afaka", "Arab": "Chữ Ả Rập", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json index 3821f37d0d..9201b2cba5 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/yi.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/yi.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.97", + "Version": "2.1.31.33", "Names": { "Arab": "אַראַביש", "Cyrl": "ציריליש", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json index 399e228bf3..089ae784fb 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.84", + "Version": "2.1.33.94", "Names": { "Adlm": "Adlm", "Afak": "阿法卡文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json index 0e66fedac6..ddc22d1a4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "Cyrl": "西里爾文", "Deva": "梵文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json index dec44172b3..5c8ea8c6c1 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant.json @@ -1,5 +1,5 @@ { - "Version": "2.1.28.79", + "Version": "2.1.33.94", "Names": { "Afak": "阿法卡文字", "Aghb": "高加索阿爾巴尼亞文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json index 0e66fedac6..ddc22d1a4f 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zh_Hant_HK.json @@ -1,5 +1,5 @@ { - "Version": "2.1.27.99", + "Version": "2.1.31.33", "Names": { "Cyrl": "西里爾文", "Deva": "梵文", diff --git a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json index b104992cdb..d92e134a39 100644 --- a/src/Symfony/Component/Intl/Resources/data/scripts/zu.json +++ b/src/Symfony/Component/Intl/Resources/data/scripts/zu.json @@ -1,5 +1,5 @@ { - "Version": "2.1.29.22", + "Version": "2.1.31.74", "Names": { "Arab": "isi-Arabic", "Armn": "isi-Armenian", diff --git a/src/Symfony/Component/Intl/Resources/data/svn-info.txt b/src/Symfony/Component/Intl/Resources/data/svn-info.txt index 466469b0a9..c4961e2075 100644 --- a/src/Symfony/Component/Intl/Resources/data/svn-info.txt +++ b/src/Symfony/Component/Intl/Resources/data/svn-info.txt @@ -1,7 +1,7 @@ SVN information =============== -URL: http://source.icu-project.org/repos/icu/tags/release-58-2/icu4c/source -Revision: 39531 +URL: http://source.icu-project.org/repos/icu/tags/release-59-1/icu4c/source +Revision: 40047 Author: yoshito -Date: 2016-12-08T17:34:49.505743Z +Date: 2017-04-13T09:55:03.829717Z diff --git a/src/Symfony/Component/Intl/Resources/data/version.txt b/src/Symfony/Component/Intl/Resources/data/version.txt index 5132e635a5..2246a13a3d 100644 --- a/src/Symfony/Component/Intl/Resources/data/version.txt +++ b/src/Symfony/Component/Intl/Resources/data/version.txt @@ -1 +1 @@ -58.2 +59.1 diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php index 88cc55e9be..ee8b5c9447 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/AbstractIntlDateFormatterTest.php @@ -231,15 +231,8 @@ abstract class AbstractIntlDateFormatterTest extends TestCase array('s', 43200, '0'), // 12 hours // general - array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 GMT'), - array('K:mm a, z', 0, '0:00 AM, GMT'), - - // timezone - array('z', 0, 'GMT'), - array('zz', 0, 'GMT'), - array('zzz', 0, 'GMT'), - array('zzzz', 0, 'GMT'), - array('zzzzz', 0, 'GMT'), + array("yyyy.MM.dd 'at' HH:mm:ss zzz", 0, '1970.01.01 at 00:00:00 UTC'), + array('K:mm a, z', 0, '0:00 AM, UTC'), ); $dateTime = new \DateTime('@0'); @@ -250,12 +243,25 @@ abstract class AbstractIntlDateFormatterTest extends TestCase $formatData[] = array('h:mm a', $dateTime, '12:00 AM'); $formatData[] = array('yyyyy.MMMM.dd hh:mm aaa', $dateTime, '01970.January.01 12:00 AM'); - $formatData[] = array("yyyy.MM.dd 'at' HH:mm:ss zzz", $dateTime, '1970.01.01 at 00:00:00 GMT'); - $formatData[] = array('K:mm a, z', $dateTime, '0:00 AM, GMT'); + $formatData[] = array("yyyy.MM.dd 'at' HH:mm:ss zzz", $dateTime, '1970.01.01 at 00:00:00 UTC'); + $formatData[] = array('K:mm a, z', $dateTime, '0:00 AM, UTC'); return $formatData; } + /** + * @requires PHP 5.5.10 + */ + public function testFormatUtcAndGmtAreSplit() + { + $pattern = "yyyy.MM.dd 'at' HH:mm:ss zzz"; + $gmtFormatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, 'GMT', IntlDateFormatter::GREGORIAN, $pattern); + $utcFormatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, 'UTC', IntlDateFormatter::GREGORIAN, $pattern); + + $this->assertSame('1970.01.01 at 00:00:00 GMT', $gmtFormatter->format(new \DateTime('@0'))); + $this->assertSame('1970.01.01 at 00:00:00 UTC', $utcFormatter->format(new \DateTime('@0'))); + } + /** * @dataProvider formatErrorProvider */ @@ -334,6 +340,75 @@ abstract class AbstractIntlDateFormatterTest extends TestCase return $data; } + /** + * @dataProvider formatTimezoneProvider + * @requires PHP 5.5 + */ + public function testFormatTimezone($pattern, $timezone, $expected) + { + $formatter = $this->getDefaultDateFormatter($pattern); + $formatter->setTimeZone(new \DateTimeZone($timezone)); + + $this->assertEquals($expected, $formatter->format(0)); + } + + public function formatTimezoneProvider() + { + $cases = array( + array('z', 'GMT', 'GMT'), + array('zz', 'GMT', 'GMT'), + array('zzz', 'GMT', 'GMT'), + array('zzzz', 'GMT', 'Greenwich Mean Time'), + array('zzzzz', 'GMT', 'Greenwich Mean Time'), + + array('z', 'Etc/GMT', 'GMT'), + array('zz', 'Etc/GMT', 'GMT'), + array('zzz', 'Etc/GMT', 'GMT'), + array('zzzz', 'Etc/GMT', 'Greenwich Mean Time'), + array('zzzzz', 'Etc/GMT', 'Greenwich Mean Time'), + + array('z', 'Etc/GMT+3', 'GMT-3'), + array('zz', 'Etc/GMT+3', 'GMT-3'), + array('zzz', 'Etc/GMT+3', 'GMT-3'), + array('zzzz', 'Etc/GMT+3', 'GMT-03:00'), + array('zzzzz', 'Etc/GMT+3', 'GMT-03:00'), + + array('z', 'UTC', 'UTC'), + array('zz', 'UTC', 'UTC'), + array('zzz', 'UTC', 'UTC'), + array('zzzz', 'UTC', 'Coordinated Universal Time'), + array('zzzzz', 'UTC', 'Coordinated Universal Time'), + + array('z', 'Etc/UTC', 'UTC'), + array('zz', 'Etc/UTC', 'UTC'), + array('zzz', 'Etc/UTC', 'UTC'), + array('zzzz', 'Etc/UTC', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/UTC', 'Coordinated Universal Time'), + + array('z', 'Etc/Universal', 'UTC'), + array('z', 'Etc/Zulu', 'UTC'), + array('z', 'Etc/UCT', 'UTC'), + array('z', 'Etc/Greenwich', 'GMT'), + array('zzzzz', 'Etc/Universal', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/Zulu', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/UCT', 'Coordinated Universal Time'), + array('zzzzz', 'Etc/Greenwich', 'Greenwich Mean Time'), + ); + + if (!defined('HHVM_VERSION')) { + // these timezones are not considered valid in HHVM + $cases = array_merge($cases, array( + array('z', 'GMT+03:00', 'GMT+3'), + array('zz', 'GMT+03:00', 'GMT+3'), + array('zzz', 'GMT+03:00', 'GMT+3'), + array('zzzz', 'GMT+03:00', 'GMT+03:00'), + array('zzzzz', 'GMT+03:00', 'GMT+03:00'), + )); + } + + return $cases; + } + public function testFormatWithGmtTimezone() { $formatter = $this->getDefaultDateFormatter('zzzz'); @@ -389,8 +464,11 @@ abstract class AbstractIntlDateFormatterTest extends TestCase if (PHP_VERSION_ID < 50500 && !(extension_loaded('intl') && method_exists('IntlDateFormatter', 'setTimeZone'))) { $this->markTestSkipped('Only in PHP 5.5+ IntlDateFormatter allows to use DateTimeZone objects.'); } + if (PHP_VERSION_ID < 50510) { + $this->markTestSkipped('Before PHP 5.5.10 the GMT timezone used to be converted to UTC.'); + } - $formatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('GMT'), IntlDateFormatter::GREGORIAN, 'zzzz'); + $formatter = $this->getDateFormatter('en', IntlDateFormatter::MEDIUM, IntlDateFormatter::SHORT, new \DateTimeZone('GMT'), IntlDateFormatter::GREGORIAN, 'zzz'); $this->assertEquals('GMT', $formatter->format(0)); } @@ -482,8 +560,8 @@ abstract class AbstractIntlDateFormatterTest extends TestCase array(0, IntlDateFormatter::LONG, IntlDateFormatter::NONE, 'January 1, 1970'), array(0, IntlDateFormatter::MEDIUM, IntlDateFormatter::NONE, 'Jan 1, 1970'), array(0, IntlDateFormatter::SHORT, IntlDateFormatter::NONE, '1/1/70'), - array(0, IntlDateFormatter::NONE, IntlDateFormatter::FULL, '12:00:00 AM GMT'), - array(0, IntlDateFormatter::NONE, IntlDateFormatter::LONG, '12:00:00 AM GMT'), + array(0, IntlDateFormatter::NONE, IntlDateFormatter::FULL, '12:00:00 AM Coordinated Universal Time'), + array(0, IntlDateFormatter::NONE, IntlDateFormatter::LONG, '12:00:00 AM UTC'), array(0, IntlDateFormatter::NONE, IntlDateFormatter::MEDIUM, '12:00:00 AM'), array(0, IntlDateFormatter::NONE, IntlDateFormatter::SHORT, '12:00 AM'), ); diff --git a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php index 1754a08438..45f8ee5404 100644 --- a/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php +++ b/src/Symfony/Component/Intl/Tests/DateFormatter/Verification/IntlDateFormatterTest.php @@ -43,6 +43,34 @@ class IntlDateFormatterTest extends AbstractIntlDateFormatterTest parent::testFormatWithTimezoneFromEnvironmentVariable(); } + /** + * @dataProvider formatTimezoneProvider + * @requires PHP 5.5 + */ + public function testFormatTimezone($pattern, $timezone, $expected) + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testFormatTimezone($pattern, $timezone, $expected); + } + + public function testFormatUtcAndGmtAreSplit() + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testFormatUtcAndGmtAreSplit(); + } + + /** + * @dataProvider dateAndTimeTypeProvider + */ + public function testDateAndTimeType($timestamp, $datetype, $timetype, $expected) + { + IntlTestHelper::requireFullIntl($this, '59.1'); + + parent::testDateAndTimeType($timestamp, $datetype, $timetype, $expected); + } + protected function getDateFormatter($locale, $datetype, $timetype, $timezone = null, $calendar = IntlDateFormatter::GREGORIAN, $pattern = null) { IntlTestHelper::requireFullIntl($this, '55.1');