Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 42c7975

Browse filesBrowse files
minor #36860 [Intl] bump icu 67.1 (ro0NL)
This PR was squashed before being merged into the 3.4 branch. Discussion ---------- [Intl] bump icu 67.1 | Q | A | ------------- | --- | Branch? | 3.4 | Bug fix? | no | New feature? | no | Deprecations? | no | Tickets | Fix #... <!-- prefix each issue number with "Fix #", if any --> | License | MIT | Doc PR | symfony/symfony-docs#... <!-- required for new features --> mainly some new locales+scripts (see 3a3a9ba) Commits ------- 29eb271 [Intl] bump icu 67.1
2 parents 8e428ed + 29eb271 commit 42c7975
Copy full SHA for 42c7975

File tree

Expand file treeCollapse file tree

1,033 files changed

+6199
-1286
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

1,033 files changed

+6199
-1286
lines changed

‎src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Data/Generator/CurrencyDataGenerator.php
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te
8282

8383
if (isset($localeBundle['Currencies']) && null !== $localeBundle['Currencies']) {
8484
$data = [
85-
'Version' => $localeBundle['Version'],
8685
'Names' => $this->generateSymbolNamePairs($localeBundle),
8786
];
8887

@@ -102,7 +101,6 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp
102101
$rootBundle = $reader->read($tempDir, 'root');
103102

104103
return [
105-
'Version' => $rootBundle['Version'],
106104
'Names' => $this->generateSymbolNamePairs($rootBundle),
107105
];
108106
}
@@ -112,7 +110,6 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp
112110
*/
113111
protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir)
114112
{
115-
$rootBundle = $reader->read($tempDir, 'root');
116113
$supplementalDataBundle = $reader->read($tempDir, 'supplementalData');
117114
$numericCodesBundle = $reader->read($tempDir, 'currencyNumericCodes');
118115

@@ -121,7 +118,6 @@ protected function generateDataForMeta(BundleEntryReaderInterface $reader, $temp
121118
sort($this->currencyCodes);
122119

123120
$data = [
124-
'Version' => $rootBundle['Version'],
125121
'Currencies' => $this->currencyCodes,
126122
'Meta' => $this->generateCurrencyMeta($supplementalDataBundle),
127123
'Alpha3ToNumeric' => $this->generateAlpha3ToNumericMapping($numericCodesBundle, $this->currencyCodes),

‎src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Data/Generator/LanguageDataGenerator.php
-3Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te
126126
// isset() on \ResourceBundle returns true even if the value is null
127127
if (isset($localeBundle['Languages']) && null !== $localeBundle['Languages']) {
128128
$data = [
129-
'Version' => $localeBundle['Version'],
130129
'Names' => iterator_to_array($localeBundle['Languages']),
131130
];
132131

@@ -150,15 +149,13 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp
150149
*/
151150
protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir)
152151
{
153-
$rootBundle = $reader->read($tempDir, 'root');
154152
$metadataBundle = $reader->read($tempDir, 'metadata');
155153

156154
$this->languageCodes = array_unique($this->languageCodes);
157155

158156
sort($this->languageCodes);
159157

160158
return [
161-
'Version' => $rootBundle['Version'],
162159
'Languages' => $this->languageCodes,
163160
'Alpha2ToAlpha3' => $this->generateAlpha2ToAlpha3Mapping($metadataBundle),
164161
];

‎src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Data/Generator/RegionDataGenerator.php
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te
9696
// isset() on \ResourceBundle returns true even if the value is null
9797
if (isset($localeBundle['Countries']) && null !== $localeBundle['Countries']) {
9898
$data = [
99-
'Version' => $localeBundle['Version'],
10099
'Names' => $this->generateRegionNames($localeBundle),
101100
];
102101

@@ -120,14 +119,11 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp
120119
*/
121120
protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir)
122121
{
123-
$rootBundle = $reader->read($tempDir, 'root');
124-
125122
$this->regionCodes = array_unique($this->regionCodes);
126123

127124
sort($this->regionCodes);
128125

129126
return [
130-
'Version' => $rootBundle['Version'],
131127
'Regions' => $this->regionCodes,
132128
];
133129
}

‎src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Data/Generator/ScriptDataGenerator.php
-4Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,6 @@ protected function generateDataForLocale(BundleEntryReaderInterface $reader, $te
6565
// isset() on \ResourceBundle returns true even if the value is null
6666
if (isset($localeBundle['Scripts']) && null !== $localeBundle['Scripts']) {
6767
$data = [
68-
'Version' => $localeBundle['Version'],
6968
'Names' => iterator_to_array($localeBundle['Scripts']),
7069
];
7170

@@ -89,14 +88,11 @@ protected function generateDataForRoot(BundleEntryReaderInterface $reader, $temp
8988
*/
9089
protected function generateDataForMeta(BundleEntryReaderInterface $reader, $tempDir)
9190
{
92-
$rootBundle = $reader->read($tempDir, 'root');
93-
9491
$this->scriptCodes = array_unique($this->scriptCodes);
9592

9693
sort($this->scriptCodes);
9794

9895
return [
99-
'Version' => $rootBundle['Version'],
10096
'Scripts' => $this->scriptCodes,
10197
];
10298
}

‎src/Symfony/Component/Intl/Intl.php

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Intl.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ public static function getIcuDataVersion()
235235
*/
236236
public static function getIcuStubVersion()
237237
{
238-
return '66.1';
238+
return '67.1';
239239
}
240240

241241
/**

‎src/Symfony/Component/Intl/Resources/data/currencies/af.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/af.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/af_NA.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"NAD": [
54
"$",

‎src/Symfony/Component/Intl/Resources/data/currencies/ak.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ak.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/am.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/am.json
+1-2Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",
@@ -239,7 +238,7 @@
239238
],
240239
"HRK": [
241240
"HRK",
242-
"HRK"
241+
"የክሮሽያ ኩና"
243242
],
244243
"HTG": [
245244
"HTG",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_DJ.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"DJF": [
54
"Fdj",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_ER.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ERN": [
54
"Nfk",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_KM.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"KMF": [
54
"CF",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_LB.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"SDG": [
54
"SDG",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_SO.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"SOS": [
54
"S",

‎src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ar_SS.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"GBP": [
54
"GB£",

‎src/Symfony/Component/Intl/Resources/data/currencies/as.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/as.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/az.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/az.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/az_Cyrl.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AZN": [
54
"",

‎src/Symfony/Component/Intl/Resources/data/currencies/be.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/be.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/bg.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bg.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/bm.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bm.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/bn.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bn.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/bo.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bo.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"CNY": [
54
"¥",

‎src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bo_IN.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"CNY": [
54
"CN¥",

‎src/Symfony/Component/Intl/Resources/data/currencies/br.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/br.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/bs.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bs.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/bs_Cyrl.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/ca.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ca.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ca_FR.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"FRF": [
54
"F",

‎src/Symfony/Component/Intl/Resources/data/currencies/ce.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ce.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/cs.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/cs.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/cy.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/cy.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/da.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/da.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/de.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/de.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/de_CH.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"BYN": [
54
"BYN",

‎src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/de_LI.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"EUR": [
54
"EUR",

‎src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/de_LU.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"LUF": [
54
"F",

‎src/Symfony/Component/Intl/Resources/data/currencies/dz.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/dz.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/ee.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/ee.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/el.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/el.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/en.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"ADP": [
54
"ADP",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_001.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_001.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"BYB": [
54
"BYB",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_150.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_150.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"EUR": [
54
"",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_AE.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_AG.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"XCD": [
54
"$",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_AI.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"XCD": [
54
"$",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_AU.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"AED": [
54
"AED",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_BB.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"BBD": [
54
"$",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_BI.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"BIF": [
54
"FBu",

‎src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json

Copy file name to clipboardExpand all lines: src/Symfony/Component/Intl/Resources/data/currencies/en_BM.json
-1Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
{
2-
"Version": "36.1",
32
"Names": {
43
"BMD": [
54
"$",

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.