Module: I18n::MissingTranslation::Base

Included in:
I18n::MissingTranslation, I18n::MissingTranslationData
Defined in:
lib/i18n/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



50
51
52
# File 'lib/i18n/exceptions.rb', line 50

def key
  @key
end

#localeObject (readonly)

Returns the value of attribute locale.



50
51
52
# File 'lib/i18n/exceptions.rb', line 50

def locale
  @locale
end

#optionsObject (readonly)

Returns the value of attribute options.



50
51
52
# File 'lib/i18n/exceptions.rb', line 50

def options
  @options
end

Instance Method Details

#initialize(locale, key, options = EMPTY_HASH) ⇒ Object



52
53
54
55
# File 'lib/i18n/exceptions.rb', line 52

def initialize(locale, key, options = EMPTY_HASH)
  @key, @locale, @options = key, locale, options.dup
  options.each { |k, v| self.options[k] = v.inspect if v.is_a?(Proc) }
end

#keysObject



57
58
59
60
61
# File 'lib/i18n/exceptions.rb', line 57

def keys
  @keys ||= I18n.normalize_keys(locale, key, options[:scope]).tap do |keys|
    keys << 'no key' if keys.size < 2
  end
end

#messageObject Also known as: to_s



63
64
65
# File 'lib/i18n/exceptions.rb', line 63

def message
  "translation missing: #{keys.join('.')}"
end

#to_exceptionObject



68
69
70
# File 'lib/i18n/exceptions.rb', line 68

def to_exception
  MissingTranslationData.new(locale, key, options)
end