我有一个用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
添加到我的班级,但没有效果。
答案 0 :(得分:9)
使用I18n.t(...)
或I18n.translate(...)
。