在课堂上使用Rails I18n

时间:2011-06-01 11:20:10

标签: ruby-on-rails-3 internationalization

我有一个用Prawn生成PDF的课程:

class CustomersReport < Prawn::Document
  def to_pdf
    text "Hello, world"
    render
  end
end

如何在本课程中使用Rails I18n?如果我尝试使用translation()函数,它会为CustomersReport打印undefined method翻译:Class`

我尝试将include ActionView::Helpers::TranslationHelper添加到我的班级,但没有效果。

1 个答案:

答案 0 :(得分:9)

使用I18n.t(...)I18n.translate(...)