我对 Rails 中的 I18N 不太熟悉,所以请耐心等待。尝试设置自定义日期和时间格式:
#config/locales/en.yml
en:
date:
formats:
long_dateweek: "%A, %B %d, %Y"
time:
formats:
very_short: "%H:%M"
但是当我尝试使用它们时,我只会得到默认格式:
1.9.3p194 :001 > Time.now.to_date.to_s(:long_dateweek)
=> "2012-08-22"
1.9.3p194 :002 > Time.now.to_time.to_s(:very_short)
=> "2012-08-22 16:12:47 -0700"
尝试重新启动控制台(甚至服务器)无济于事......我错过了什么?