I18n :: MissingInterpolationArgument with I18n.l

时间:2010-07-07 21:45:33

标签: ruby-on-rails internationalization

运行此代码时出现此错误I18n::MissingInterpolationArgument

<%= l Date.today, :format => :short %>

之前已经有效,但是现在,在Ubuntu,Rails 2.3.5Ruby 1.8.7 (2010-06-23 patchlevel 299) [i686-linux]它不再有用了......

有人帮忙吗?

1 个答案:

答案 0 :(得分:0)

哦,我自己得到了一个quickfix。不是我的方式,但它的工作原理

将此添加到en.yml文件

  date:                   
    formats:              
      default: "%d.%m.%Y" 
      short: "%b %e"      
      long: "%e. %B %Y"