# File lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/missing.rb, line 50 def store_default_translation(locale, key, interpolations) translation = ActiveRecord::Translation.new :locale => locale.to_s, :key => key translation.interpolations = interpolations translation.save end
# File lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/missing.rb, line 36 def store_default_translations(locale, key, options = {}) count, scope, default, separator = options.values_at(:count, *Base::RESERVED_KEYS) separator ||= I18n.default_separator keys = I18n.normalize_keys(locale, key, scope, separator)[1..-1] key = keys.join(separator || I18n.default_separator) unless ActiveRecord::Translation.locale(locale).lookup(key).exists? interpolations = options.reject { |name, value| Base::RESERVED_KEYS.include?(name) }.keys keys = count ? I18n.t('i18n.plural.keys', :locale => locale).map { |k| [key, k].join(separator) } : [key] keys.each { |key| store_default_translation(locale, key, interpolations) } end end
# File lib/active_support/vendor/i18n-0.4.1/i18n/backend/active_record/missing.rb, line 56 def translate(locale, key, options = {}) super rescue I18n::MissingTranslationData => e self.store_default_translations(locale, key, options) raise e end
Generated with the Darkfish Rdoc Generator 2.