Rails 3 - 多种货币
如果我这样做:
number_to_currency(100,:locale=>'en-GB')
我希望得到这样的结果:
£100.00
但相反,如果我传递区域设置 :en、'fr-FR' 或其他内容,我会得到
$100
同样的结果。
Rails 是否有基于区域设置的默认货币列表,还是我必须自己为地球上的每个国家设置 I18 映射?
任何帮助表示赞赏。
托宾
If I do this:
number_to_currency(100,:locale=>'en-GB')
I'd expect to get something like this:
£100.00
But instead I'm getting
$100
This is the same if I pass in the locale :en, 'fr-FR' or whatever.
Does Rails have a default list of currencies based on locale, or do I have to setup the I18 mappings for every country on the planet myself?
Any help appreciated.
Tobin
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在区域设置文件中,货币单位是通过
You have to do it myself 定义的。这可能会有所帮助:
https://github.com /rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml
In the locale file, the currency unit is defined via
You have to do it yourself. This may help:
https://github.com/rails/rails/blob/master/actionpack/lib/action_view/locale/en.yml