Skip to content

Commit 7f071ee

Browse files
committed
Fixes Argentina's currency.
Currency symbol is '$'. The symbol is placed before the number. Closes angular#8583
1 parent 56bd037 commit 7f071ee

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ngLocale/angular-locale_es-ar.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ $provide.value("$locale", {
6363
"shortTime": "H:mm"
6464
},
6565
"NUMBER_FORMATS": {
66-
"CURRENCY_SYM": "\u20ac",
66+
"CURRENCY_SYM": "$",
6767
"DECIMAL_SEP": ",",
6868
"GROUP_SEP": ".",
6969
"PATTERNS": [
@@ -86,10 +86,10 @@ $provide.value("$locale", {
8686
"maxFrac": 2,
8787
"minFrac": 2,
8888
"minInt": 1,
89-
"negPre": "-",
90-
"negSuf": "\u00a0\u00a4",
91-
"posPre": "",
92-
"posSuf": "\u00a0\u00a4"
89+
"negPre": "\u00a4-",
90+
"negSuf": "",
91+
"posPre": "\u00a4",
92+
"posSuf": ""
9393
}
9494
]
9595
},

0 commit comments

Comments
 (0)