我有小桌子:
create_table :cities do |t|
t.string :name
end
我需要国际化“名称”列,我不想为此创建单独的表。是否可以将翻译列添加到“城市”表中?结果我希望这个表的迁移看起来像这样:
create_table :cities do |t|
t.string :en_name
t.string :de_name
t.string :fr_name
end
目前我正在尝试使用“globalize”gem,也许我应该使用其他解决方案,请建议。
答案 0 :(得分:1)
标准做法是将翻译表与globalize gem一起使用。如果您不想使用globalize gem,可以执行以下操作:
class City < ActiveRecord::Base
AVAILABLE_LOCALES = [:en, :de, :fr]
def name
current_locale = I18n.locale
if AVALIABLE_LOCALES.include? current_locale
self.send("#{current_locale.to_s}_name")
else
#default language to use
self.en_name
end
end
end
这只显示了访问者的代码(名称函数),您可能还想编写一个mutator(名称=函数),以便您可以根据当前的语言环境设置值。 I18n.locale将为您提供当前的语言环境。