0

我在 Rails 3.2.3 中使用以下部分显示我的大多数模型的错误消息:

# _error_messages.html.erb

<% if object.errors.any? %>
<div id="error_explanation">
    <h3><%= pluralize(object.errors.count, "error") %>
    prohibited this <%= object.class.to_s.underscore.humanize.downcase %> from being saved:</h3>        
    <p>There were problems with the following fields:</p>
    <ul>
        <% object.errors.full_messages.each do |msg| %>
            <li><%= msg %></li>
        <% end %>
    </ul>
</div>
<% end %>

在我决定使用I18n.

de.yml我为包含以下内容的德语内容创建了一个新文件(以及许多其他内容):

# de.yml

errors: &errors
  format: ! '%{attribute} %{message}'
  messages:
    blank: muss ausgefüllt werden
  template:
    body: ! 'Bitte überprüfen Sie die folgenden Felder:'
    header:
      one: ! 'Konnte %{model} nicht speichern: ein Fehler.'
      other: ! 'Konnte %{model} nicht speichern: %{count} Fehler.'

etc. etc. etc.

现在如何在我的错误消息中使用此内容?

尤其是这条线<%= object.class.to_s.underscore.humanize.downcase %>让我很困惑。我尝试了类似<%= t 'activerecord.errors.template.header', :model => object.model_name.human %>但没有任何运气的东西。

有人可以帮忙吗?

我已经阅读了关于本地化的 Rails 指南三遍,但我被困在这里。

谢谢你的帮助!

4

2 回答 2

0

OK, I found the answer myself this time, thanks to this thread.

I simply changed my _error_messages.html.rb partial to:

<% if object.errors.any? %>
<div id="error_explanation">
    <h3><%= t('errors.template.header', :model => object.class.model_name.human, :count => object.errors.count) %></h3>
    <p><%= t('errors.template.body') %></p>
    <ul>
        <% object.errors.full_messages.each do |msg| %>
            <li><%= msg %></li>
        <% end %>
    </ul>
</div>
<% end %>

Now it works and I am happy :-)

于 2013-01-26T13:24:35.793 回答
0

首先,您应该通过以下方式设置您的语言环境:

应用程序.rb

config.i18n.default_locale = :de

其次,您的语言环境文件应如下所示:

de.yml

de:
  activerecord:
    models:
      order: Заказ
    attributes:
      order:
        link: Ссылка на модель часов
        name: Имя
        phone: Телефон
        accept_message: Комментарий к заказу
        decline_message: Причина отказа
        finish_message: Комментарий к заказу
    errors:
      models:
        order:
          attributes:
            link:
              blank: не может быть пустой
            phone:
              invalid: должен содержать только цифры. Пример: 9208003020 или 2716070.
              blank: не может быть пустым
            name:
              blank: не может быть пустым
            decline_message:
              blank: не может быть пустой
于 2013-01-26T11:40:44.973 回答