我有一个用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(...)
。