0

次の表が表示されています。

# 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」の代わりに記号を使用できますか??

4

1 に答える 1

2

それは動作し:'.first_name'ます(あなたが言及している「シンボル」はピリオドだと思います)

于 2012-10-31T08:28:10.833 に答える