次の表が表示されています。
# views/students/index.html.haml
%table.table
%thead
%tr
%th=t :first_name # doesn`t work
%th=t '.last_name' # works
%tbody
- @students.each do |s|
%tr
%td=s.first_name
%td=s.last_name
これは私のロケールファイルです:
pl:
students:
index:
first_name: "Imię"
last_name: "Nazwisko"
文字列「.first_name」の代わりに記号を使用できますか??