require 'i18n/backend/base' require 'i18n/backend/active_record/translation' module I18n module Backend class ActiveRecord autoload :Missing, 'i18n/backend/active_record/missing' autoload :StoreProcs, 'i18n/backend/active_record/store_procs' autoload :Translation, 'i18n/backend/active_record/translation' autoload :Configuration, 'i18n/backend/active_record/configuration' class << self def configure yield(config) if block_given? end def config @config ||= Configuration.new end end module Implementation include Base, Flatten def available_locales begin Translation.available_locales rescue ::ActiveRecord::StatementInvalid [] end end def store_translations(locale, data, options = {}) escape = options.fetch(:escape, true) flatten_translations(locale, data, escape, false).each do |key, value| translation = Translation.locale(locale).lookup(expand_keys(key)) if ActiveRecord.config.cleanup_with_destroy translation.destroy_all else translation.delete_all end Translation.create(:locale => locale.to_s, :key => key.to_s, :value => value) end end protected def lookup(locale, key, scope = [], options = {}) key = normalize_flat_keys(locale, key, scope, options[:separator]) if key.first == '.' key = key[1..-1] end if key.last == '.' key = key[0..-2] end result = if key == '' Translation.locale(locale).all else Translation.locale(locale).lookup(key) end if result.empty? nil elsif result.first.key == key result.first.value else result = result.inject({}) do |hash, translation| hash.deep_merge build_translation_hash_by_key(key, translation) end result.deep_symbolize_keys end end def build_translation_hash_by_key(lookup_key, translation) hash = {} if lookup_key == '' chop_range = 0..-1 else chop_range = (lookup_key.size + FLATTEN_SEPARATOR.size)..-1 end translation_nested_keys = translation.key.slice(chop_range).split(FLATTEN_SEPARATOR) translation_nested_keys.each.with_index.inject(hash) do |iterator, (key, index)| iterator[key] = translation_nested_keys[index + 1] ? {} : translation.value iterator[key] end hash end # For a key :'foo.bar.baz' return ['foo', 'foo.bar', 'foo.bar.baz'] def expand_keys(key) key.to_s.split(FLATTEN_SEPARATOR).inject([]) do |keys, key| keys << [keys.last, key].compact.join(FLATTEN_SEPARATOR) end end end include Implementation end end end