correij / v8-i18n

Automatically exported from code.google.com/p/v8-i18n
Other
0 stars 0 forks source link

currencyDisplay="symbol" for 'INR' displays 'Rs' instead of '₹' #35

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

var nf = Intl.NumberFormat(['en-in'], {style:'currency', currency:'INR', currencyDisplay:'symbol'}); nf.format(12345.67);


What is the expected output? What do you see instead?
Expected: ₹12,345.67
Seen: Rs.12,345.67

What version of the product are you using? On what operating system?
Chrome Canary on OS X

Please provide any additional information below.

Note: Firefox returns the expected output with the ₹ symbol.
Ref: https://github.com/yahoo/react-intl/issues/231

Original issue reported on code.google.com by i...@seekshiva.in on 1 Dec 2015 at 8:06

GoogleCodeExporter commented 8 years ago
Firefox outputs "₹12,345.67" if the locale is 'en-US' and "₹ 12,345.67" if 
it is 'en-IN'

Original comment by i...@seekshiva.in on 1 Dec 2015 at 8:07