Module: I18n::Backend::Fallbacks

Defined in:
lib/active_support/vendor/i18n-0.4.1/i18n/backend/fallbacks.rb

Instance Method Summary collapse

Instance Method Details

#extract_string_default!(options) ⇒ Object



55
56
57
58
59
60
61
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/fallbacks.rb', line 55

def extract_string_default!(options)
  defaults = Array(options[:default])
  if index = find_first_string_default(defaults)
    options[:default] = defaults[0, index]
    defaults[index]
  end
end

#find_first_string_default(defaults) ⇒ Object



63
64
65
66
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/fallbacks.rb', line 63

def find_first_string_default(defaults)
  defaults.each_index { |ix| return ix if String === defaults[ix] }
  nil
end

#translate(locale, key, options = {}) ⇒ Object

Overwrites the Base backend translate method so that it will try each locale given by I18n.fallbacks for the given locale. E.g. for the locale :“de-DE” it might try the locales :“de-DE”, :de and :en (depends on the fallbacks implementation) until it finds a result with the given options. If it does not find any result for any of the locales it will then raise a MissingTranslationData exception as usual.

The default option takes precedence over fallback locales only when it’s not a String. When default contains String it is evaluated after fallback locales.



40
41
42
43
44
45
46
47
48
49
50
51
52
53
# File 'lib/active_support/vendor/i18n-0.4.1/i18n/backend/fallbacks.rb', line 40

def translate(locale, key, options = {})
  default = extract_string_default!(options) if options[:default]

  I18n.fallbacks[locale].each do |fallback|
    begin
      result = super(fallback, key, options)
      return result unless result.nil?
    rescue I18n::MissingTranslationData
    end
  end

  return super(locale, nil, options.merge(:default => default)) if default
  raise(I18n::MissingTranslationData.new(locale, key, options))
end