Skip to content

Commit

Permalink
Fixed the MGA currency was named incorrectly and has two fractional p…
Browse files Browse the repository at this point in the history
…laces

Fixed typo : missing a "A" in the names and adding the symbols of CFA francs (XAF/XOF)
- https://en.wikipedia.org/wiki/Central_African_CFA_franc
- https://en.wikipedia.org/wiki/West_African_CFA_franc
  • Loading branch information
Vadim Topolsky committed Mar 20, 2018
1 parent 9931100 commit b71b726
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

- [fix] Updated grapheme for IRR.

- [fix] Updated fraction size and name of MGA.

- [fix] Updated the CFA francs (XAF/XOF).

## 1.0.8 - 2017-12-15

- [feature] Add cryptocurrencies ETH, BTC, LTC
Expand Down
32 changes: 24 additions & 8 deletions currency-format.json
Original file line number Diff line number Diff line change
Expand Up @@ -1108,8 +1108,8 @@
"uniqSymbol": null
},
"MGA": {
"name": "Malagasy riary",
"fractionSize": 2,
"name": "Malagasy ariary",
"fractionSize": 0,
"symbol": null,
"uniqSymbol": null
},
Expand Down Expand Up @@ -1866,10 +1866,18 @@
"uniqSymbol": null
},
"XAF": {
"name": "CF Franc BEAC",
"name": "CFA Franc BEAC",
"fractionSize": 0,
"symbol": null,
"uniqSymbol": null
"symbol": {
"grapheme": "F CFA",
"template": "1 $",
"rtl": false
},
"uniqSymbol": {
"grapheme": "F CFA",
"template": "1 $",
"rtl": false
}
},
"XCD": {
"name": "East Caribbean Dollar",
Expand All @@ -1892,10 +1900,18 @@
"uniqSymbol": null
},
"XOF": {
"name": "CF Franc BCEAO",
"name": "CFA Franc BCEAO",
"fractionSize": 0,
"symbol": null,
"uniqSymbol": null
"symbol": {
"grapheme": "CFA",
"template": "1 $",
"rtl": false
},
"uniqSymbol": {
"grapheme": "F CFA BCEAO",
"template": "1 $",
"rtl": false
}
},
"XPF": {
"name": "CFP Franc",
Expand Down

0 comments on commit b71b726

Please sign in to comment.