コントローラーには、次のようなものがあります。
def methodfoo
# set the profile attributes
@start_date = Date.parse('June 24th, 2002')
@college = 'University of Chicago'
render :layout => 'profile'
end
YMLファイルにこれを追加しました:
date:
formats:
default: "%Y-%d-%m"
short: "%b %d"
long: "%B %d, %Y"
そして、html.erb ファイルに「t」関数を追加し、次のように使用しました。
<ul><li><%= t('.started') %> <%= t(@start_date) %></li></ul>
しかし、それは機能していません。翻訳していません。私は何を間違えましたか?