在类中使用Rails I18n



我有一个用Prawn生成PDF的类:

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

如何在这个类中使用RailsI18n?如果我尝试使用translation()函数,它会为CustomersReport:Class`打印undefined method翻译

我试着把include ActionView::Helpers::TranslationHelper添加到我的课上,但没有效果。

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

相关内容

  • 没有找到相关文章

最新更新