5

Rails 4 にアップグレードして (globalize3 の代わりに) グローバリゼーションを行ったところ、翻訳が正しく機能しなくなりました。

手順:

英語のレコードを作成し
、ロケールを :es に変更し、
作成したばかりのオブジェクトで update_attributes を呼び出します

これは、es で新しい翻訳を作成するために使用されます。
しかし、今では、代わりに英語のレコードを変更しています!!! 助けてください?

Gemfile:

gem "rails", "4.0.1"
gem "globalize", "~> 4.0.0.alpha.1"

モデル:

class GlossaryTerm < ActiveRecord::Base
 translates :term, :definition
 accepts_nested_attributes_for :translations

 has_many :glossary_term_translations
 belongs_to :section
 validates_presence_of :term
 validates_presence_of :definition

 **after_create :create_spanish_placeholder**

 def create_spanish_placeholder
   term = self.term
   definition = self.definition
   I18n.locale = :es
   self.update_attributes(:term => "SPANISH placeholder for #{term}", :definition => "SPANISH placeholder for #{definition}")
   I18n.locale = :en
 end

#...

end

コントローラ:

class Admin::GlossaryTermsController < ApplicationController
before_filter :authorize_sysadmin!

def create
  find_models
  @glossary_term = @section.glossary_terms.new(glossary_term_params)
  if @glossary_term.save
    redirect_to edit_admin_section_url(@section, program_id: @program.id)
  else
    render :action => "new"
  end
end

#...

 protected

 def glossary_term_params
   params.require(:glossary_term).permit(:term, :definition, :glossary_image,   :glossary_image_file_name,
                                    :translations_attributes => [:id, :term, :definition])
 end

 #...

 end
4

1 に答える 1

1

この方法を試してください:

def create_spanish_placeholder
  term = self.term
  definition = self.definition
  Globalize.with_locale(:es) do
    self.update_attributes(:term => "SPANISH placeholder for #{term}", :definition => "SPANISH placeholder for #{definition}")
  end
end
于 2014-12-07T20:49:48.807 に答える