我上课了:
module Import
class Log < ActiveRecord::Base
end
end
我想使用Import::Log.human_attribute_name(:results)
。
我已经发现这将(在方法中)以调用结束
I18n.translate('activerecord.attributes.import/log.results', {:count=>1, :default=>[:"attributes.results", "Results"]})
但我不知道如何编写翻译文件。 试过YML
cs:
activerecord:
attributes:
import/log:
results: "Výsledky běhu"
尝试过ruby哈希
{
cs: {
activerecord: {
attributes: {
'import\/log': {
results: "Výsledky běhu"
}
}
}
}
}
没有任何作用。 有什么想法吗?
我
答案 0 :(得分:0)
import/log:
有效。
可能我在没有重新启动服务器的情况下在新文件中尝试了第一次Yaml转换,然后通过capybara测试检查其他(现在错误的)版本。
亚历山大,非常感谢你。