Sha256: e1be152182bee8f1b45d10e0b5ad0abeb464a6305ece68bc1dbdc911581adef1
Contents?: true
Size: 1.85 KB
Versions: 2
Compression:
Stored size: 1.85 KB
Contents
require 'i18n/backend/base' require 'i18n/backend/inline_forms/translation' module I18n module Backend class InlineForms autoload :Missing, 'i18n/backend/inline_forms/missing' autoload :StoreProcs, 'i18n/backend/inline_forms/store_procs' autoload :Translation, 'i18n/backend/inline_forms/translation' module Implementation include Base, Flatten def available_locales begin Translation.available_locales rescue ::InlineForms::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.locale(locale).lookup(expand_keys(key)).delete_all 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]) result = Translation.locale(locale).lookup(key).all if result.empty? nil elsif result.first.key == key result.first.value else chop_range = (key.size + FLATTEN_SEPARATOR.size)..-1 result = result.inject({}) do |hash, r| hash[r.key.slice(chop_range)] = r.value hash end result.deep_symbolize_keys end 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
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
i18n-inline_forms-0.2 | lib/i18n/backend/inline_forms.rb |
i18n-inline_forms-0.1 | lib/i18n/backend/inline_forms.rb |