Rails locale not working

前端 未结 2 1067
走了就别回头了
走了就别回头了 2021-01-14 06:03

I am using Rails 4
I have set the default locale to is in config/application.rb
is.yml is in config/locales
In Rails console I type

I18n.availa         


        
2条回答
  •  灰色年华
    2021-01-14 06:26

    1.250 is exactly what you should get with your settings. To get 1,25 this will work.

    format:
      delimiter: ! ','
      precision: 2
      separator: ','
      significant: false
      strip_insignificant_zeros: false
    

提交回复
热议问题