Rails: Globalize3 и batch_translations

Я использую рельсы 3.2.8, globalize3 и batch_translations, чтобы перевести конкретный контент для небольшой системы управления контентом и магазина. Я без проблем интегрировал его для одного перевода на одну модель. Так что все работает отлично. Я начал добавлять эту функциональность для других моих моделей, и... что-то странное происходит.

Статус сейчас: я могу создавать новый контент с переводами. Все нормально. Но если я попытаюсь изменить / обновить значения в таблицах переводов, ничего не произойдет! Может быть, в batch_translations есть неправильный путь к параметру или что-то в этом роде...

Вот пример для категорий!

migration_file

class CreateCategories < ActiveRecord::Migration
  def self.up
    create_table :categories do |t|
      t.timestamps
    end
    Category.create_translation_table! :category_name => :string, :description => :string
  end

  def self.down
    Category.drop_translation_table!
    drop_table :categories
  end
end

модель:

class Category < ActiveRecord::Base
  attr_accessible :category_name, :description

  attr_accessible :translations_attributes
  translates :category_name, :description
  has_many :translations
  accepts_nested_attributes_for :translations

  class Translation
    attr_accessible :locale, :category_name, :description
  end
end

этот странный перевод классов я написал, потому что у меня были массовые ошибки для локали и т. д.

форма:

<div>
  <%= form_for @category, html: { :multipart => true } do |f| %>
    <%= render 'shared/error_messages', object: f.object %>
    <%= build_translation_text_field f, :category_name, :description  %>
    <%= f.submit (t ".save"), class: "btn btn-large btn-primary" %>
  <% end %>
</div>

помощник для моей формы перевода:

def build_translation_text_field(f, *atts)
  tag = content_tag(:h1, "Test")
  I18n.available_locales.each do |l|
    f.globalize_fields_for l do |g|
      atts.each do |a|
        tag += content_tag(:div, content_tag(:h4, t(a)+":"))
        tag += (g.text_field a, class: l)
      end
    end
  end
  tag
end

Метод обновления category_controller:

def create
  @category = Category.new(params[:category])
  if @category.save
    @categories = Category.all
    flash[:success] = t(:category_created)
    respond_to do |format|
      format.html {render 'index'}
      format.js
    end
  else
    flash[:error] = @category.errors.full_messages.each {|msg| p msg}
    @categories = Category.all
    respond_to do |format|
      format.html {render 'new'}
      format.js
    end
  end
end

def update
  @category = Category.find(params[:id])
  if @category.update_attributes(params[:category])
    @categories = Category.all
    flash[:success] = t(:category_updated)
    respond_to do |format|
      format.html {render 'index'}
      format.js
    end
  else
    flash[:error] = @category.errors.full_messages.each {|msg| p msg}
    @categories = Category.all
    respond_to do |format|
      format.html {render 'edit'}
      format.js
    end
  end
end

Кто-нибудь идея или рабочий пример с двумя моделями с одним или несколькими переведенными атрибутами?

1 ответ

Решение

Моя вина:

Обновление для модели:

class Category < ActiveRecord::Base
  attr_accessible :category_name, :description

  attr_accessible :translations_attributes
  translates :category_name, :description
  # has_many :translations <-- delete this
  accepts_nested_attributes_for :translations

  class Translation
    attr_accessible :locale, :category_name, :description
  end
end
Другие вопросы по тегам