Module: I18n::MissingTranslation::Base
- Included in:
- I18n::MissingTranslation, I18n::MissingTranslationData
- Defined in:
- lib/i18n/exceptions.rb
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#locale ⇒ Object
readonly
Returns the value of attribute locale.
-
#options ⇒ Object
readonly
Returns the value of attribute options.
Instance Method Summary collapse
- #initialize(locale, key, options = EMPTY_HASH) ⇒ Object
- #keys ⇒ Object
- #message ⇒ Object (also: #to_s)
- #to_exception ⇒ Object
Instance Attribute Details
#key ⇒ Object (readonly)
Returns the value of attribute key.
36 37 38 |
# File 'lib/i18n/exceptions.rb', line 36 def key @key end |
#locale ⇒ Object (readonly)
Returns the value of attribute locale.
36 37 38 |
# File 'lib/i18n/exceptions.rb', line 36 def locale @locale end |
#options ⇒ Object (readonly)
Returns the value of attribute options.
36 37 38 |
# File 'lib/i18n/exceptions.rb', line 36 def @options end |
Instance Method Details
#initialize(locale, key, options = EMPTY_HASH) ⇒ Object
38 39 40 41 |
# File 'lib/i18n/exceptions.rb', line 38 def initialize(locale, key, = EMPTY_HASH) @key, @locale, @options = key, locale, .dup .each { |k, v| self.[k] = v.inspect if v.is_a?(Proc) } end |
#keys ⇒ Object
43 44 45 46 47 |
# File 'lib/i18n/exceptions.rb', line 43 def keys @keys ||= I18n.normalize_keys(locale, key, [:scope]).tap do |keys| keys << 'no key' if keys.size < 2 end end |
#message ⇒ Object Also known as: to_s
49 50 51 |
# File 'lib/i18n/exceptions.rb', line 49 def "translation missing: #{keys.join('.')}" end |
#to_exception ⇒ Object
54 55 56 |
# File 'lib/i18n/exceptions.rb', line 54 def to_exception MissingTranslationData.new(locale, key, ) end |