1
保存所有翻譯當創建主記錄時是否可以保存查看I18n.available_locales(或者其他一些Globalize配置文件)的所有翻譯?Globalize rails:通過檢查I18n.available_locales
我將Activeize與Active Admin結合使用,我爲翻譯創建了自定義頁面,但我希望需要翻譯的人員知道哪些字段尚未翻譯。
這就是我現在正在做的(基本模型),儘管我並不以此爲榮。這似乎是扭曲的,沒有理由,我嘗試了更簡單的解決方案,出現在第一個是有效的,但他們竟然不工作。
after_save :add_empty_translations
def add_empty_translations
# if the class is translatable
if (self.class.translates?)
# get available locales
locales = I18n.available_locales.map do |l| l.to_s end
# get foreign key for translated table
foreign_key = "#{self.class.to_s.underscore}_id"
# get translated columns
translated_columns = self.class::Translation.column_names.select do |col|
!['id', 'created_at', 'updated_at', 'locale', "#{self.class.to_s.underscore}_id"].include? col
end
# save current locale
current_locale = I18n.locale
# foreach available locale check if column was difined by user
locales.each do |l|
I18n.locale = l
add_translation = true
translated_columns.each do |col|
add_translation = add_translation && self[col].nil?
end
if (add_translation)
payload = {}
payload[foreign_key] = self.id
payload['locale'] = l
self.class::Translation.create(payload)
end
end
#restore locale
I18n.locale = current_locale
end
end
有沒有辦法做到全球化?