3

我正在使用公寓 gem制作一个多租户应用程序。我已经全部设置好了,一切都按预期工作。我还使用带有活动记录后端的 Rails Internationalization (I18n) 来存储翻译。我目前的设置

翻译表

class CreateTranslations < ActiveRecord::Migration[5.0]
  def change
    create_table :translations do |t|
      t.string :locale
      t.string :key
      t.text :value
      t.text :interpolations
      t.boolean :is_proc, default: false

      t.timestamps
    end
  end
end

Apartment.rb 配置

我已将翻译模型添加到排除模型列表中,因此它在所有租户中都是全局的

Apartment.configure do |config|

  # Add any models that you do not want to be multi-tenanted, but remain in the global (public) namespace.
  # A typical example would be a Customer or Tenant model that stores each Tenant's information.
  #
  config.excluded_models = %w{ User Workspace Translation }
end

在我的翻译表中,我有英语(默认)和挪威语的翻译。在主域上,一切都按预期在英语和挪威语之间切换,但是一旦我加载租户,所有翻译都会丢失。控制台演示:

> Apartment::Tenant.switch! # switch to main tenant
> I18n.locale = :en # use English translations
> I18n.t('home.members_label')
  => "Show Members"

> Apartment::Tenant.switch! "elabs" # switch to a different tenant
> I18n.t('home.members_label')
  => "translation missing: en.home.members_label"

我不确定为什么在租户环境中缺少翻译。我想将 Translation 模型放在excluded_models 列表中应该可以解决问题,但似乎某处有问题。有什么线索吗?谢谢

4

1 回答 1

0

Translation模型实际上是在 中定义的I18n::Backend::ActiveRecord::Translation,因此您可能必须在模型文件夹中添加一个扩展该模型的模型,或者尝试执行以下操作并查看是否有效:

config.excluded_models = %w{ User Workspace I18n::Backend::ActiveRecord::Translation }

也许

Translation = I18n::Backend::ActiveRecord::Translation
config.excluded_models = %w{ User Workspace Translation }
于 2017-07-12T01:37:27.647 回答