Rails - 在表单操作中翻译模型名称

时间:2012-11-05 12:05:36

标签: ruby-on-rails internationalization translation locale

我想使用i18n系统翻译rails表单。

我的模型属性已正确翻译,但是当我想翻译提交操作时,模型名称不会被翻译。

这是我的fr.yml语言环境文件

fr:
  activerecord:
    model:
      character:
        one: "Personnage"
        other: "Personnages"
    attributes:
      character:
        name: "Nom"
        title: "Titre"
        biography: "Biographie"
  helpers:
    submit:
      update: "Mise à jour %{model}"

我的_form.html.erb是

<%= form_for(@character) do |f| %>
  <% if @character.errors.any? %>
    <div id="error_explanation">
      <h2><%= pluralize(@character.errors.count, "error") %> prohibited this character from being saved:</h2>

      <ul>
      <% @character.errors.full_messages.each do |msg| %>
        <li><%= msg %></li>
      <% end %>
      </ul>
    </div>
  <% end %>

  <div class="field">
    <%= f.label :name %><br />
    <%= f.text_field :name %>
  </div>
  <div class="field">
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </div>
  <div class="field">
    <%= f.label :biography %><br />
    <%= f.text_area :biography, :rows => 8%>
  </div>
  <div class="actions">
    <%= f.submit %>
  </div>
<% end %>

在我的表单上,我预计更新按钮为“Miseàjour Personnage ”,但我仍然有“Miseàjour Character ”。

感谢您的帮助!

2 个答案:

答案 0 :(得分:11)

您的model似乎应该models

将您的fr.yml更改为:

fr:
  activerecord:
    models:
      character:
        one: "Personnage"
        other: "Personnages"
    ...

有关详细信息,请参阅Translations for Active Record Models上的rails i18n文档部分。

答案 1 :(得分:1)

这是在form_for标记中使用时提交按钮的默认行为...它将显示更新字符而不是“更新#{Model.name}”...