Class: I18n::Locale::Fallbacks

Inherits:
Hash
  • Object
show all
Defined in:
lib/i18n/locale/fallbacks.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(*mappings) ⇒ Fallbacks

Returns a new instance of Fallbacks.



56
57
58
59
60
# File 'lib/i18n/locale/fallbacks.rb', line 56

def initialize(*mappings)
  @map = {}
  map(mappings.pop) if mappings.last.is_a?(Hash)
  self.defaults = mappings.empty? ? [] : mappings
end

Instance Attribute Details

#defaultsObject

Returns the value of attribute defaults.



65
66
67
# File 'lib/i18n/locale/fallbacks.rb', line 65

def defaults
  @defaults
end

Instance Method Details

#[](locale) ⇒ Object

Raises:



67
68
69
70
71
72
# File 'lib/i18n/locale/fallbacks.rb', line 67

def [](locale)
  raise InvalidLocale.new(locale) if locale.nil?
  raise Disabled.new('fallback#[]') if locale == false
  locale = locale.to_sym
  super || store(locale, compute(locale))
end

#map(mappings) ⇒ Object



74
75
76
77
78
79
80
81
82
# File 'lib/i18n/locale/fallbacks.rb', line 74

def map(mappings)
  mappings.each do |from, to|
    from, to = from.to_sym, Array(to)
    to.each do |_to|
      @map[from] ||= []
      @map[from] << _to.to_sym
    end
  end
end