我的表格有一个选择框(collection_select)用于参考列。为此窗口小部件翻译标签的正确方法是什么?对于所有其他人,使用默认的Model.human_attribute_name(my code,Translations for Active Record Models)
答案 0 :(得分:1)
如果您在[language].yml
文件中使用:
attributes:
my_model:
property: 'translatet property label'
[...]
您只需在视图中使用以下内容:
<%= form_for([...]) do |f| %>
<div class="field">
<%= f.label :property %><br />
<%= f.collection_select [...] %>
</div>
[...]