Rails 3 I18n перевод метки для nested_attributes в отношении has_many - PullRequest
4 голосов
/ 18 декабря 2010

Использование: Rails 3.0.3, Ruby 1.9.2

Вот соотношение:

class Person < ActiveRecord::Base
  has_many :contact_methods
  accepts_nested_attributes_for :contact_methods
end

class ContactMethod < ActiveRecord::Base
  attr_accessible :info
  belongs_to :person
end

Теперь, когда я пытаюсь настроить метки contact_method в I18n, он не распознаетit.

en:
  helpers:
    label:
      person[contact_methods_attributes]: 
        info: 'Custom label here'

Я также пробовал:

person[contact_method_attributes]

Это прекрасно работает для отношений 1-1, например,

person[wife_attributes]: 
  name: 'My wife'

, но не person[wives_attributes]

Заранее спасибо

Ответы [ 2 ]

4 голосов
/ 01 февраля 2011

Я сделал это с:

en:
  helpers:
    label:
      person[contact_methods_attributes][0]: 
        info: 'First custom label here'
      person[contact_methods_attributes][1]: 
        info: 'Second custom label here'

Это хорошо, но не идеально, когда у вас есть неограниченные возможности. Я бы просто указал пользовательский ключ перевода в конструкторе форм:)

en:
  helpers:
    label:
      person[contact_methods_attributes][any]: 
        info: 'Custom label here'

<% fields_for :contact_methods do |builder| %>
  <%= builder.label :info, t("helpers.person[contact_methods_attributes][any].info") %>
  <%= builder.text_field :info %>
<% end %>

РЕДАКТИРОВАТЬ: Не знаю, если это новая функция, но, кажется, работает как шарм, делая это:

en:
  helpers:
    label:
      person:
        contact_methods: 
          info: 'Custom label here'
0 голосов
/ 05 июня 2013

В моем приложении Rails 3.2.13 метки атрибутов автоматически выбираются из модели, атрибуты которой встроены.Обратите внимание, что я вкладываю атрибуты модели own_to, но она может работать и наоборот.

Мой пример из рабочего кода:

Модели:

class User < ActiveRecord::Base
  belongs_to :account
  accepts_nested_attributes_for :account
  # ...
end

class Account < ActiveRecord::Base
  has_many :users
end

Представление:

<h2><%= t(:sign_up) %></h2>

<%= form_for(resource, :as => resource_name, :url => registration_path(resource_name)) do |f| %>
  <%= devise_error_messages! %>

  <div><%= f.label :email %><br />
  <%= f.email_field :email %></div>

  <%= f.fields_for :account do |account_form| %>

    <div><%= account_form.label :subdomain %><br />
    <%= account_form.text_field :subdomain %>.<%= request.host %> <span class="hint"></span></div>

  <% end %>

translations_de.yml:

activerecord:

 models:
  account: Konto
  user: Benutzer

 attributes:
  account:
    name: Firmenname
    subdomain: Subdomain
    users: Benutzer

  user:
    # ... no sign of subdomain here ...

И представление отображается с меткой субдомена, переведенной на основе

activerecord.attributes.account.subdomain

Nice.:)

Я не уверен, но может потребоваться, чтобы вы использовали путь activerecord вместо вспомогательного.

...