Module: I18n::MissingTranslation::Base

Included in:
I18n::MissingTranslation, I18n::MissingTranslationData
Defined in:
lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb

Constant Summary collapse

PERMITTED_KEYS =
[:scope].freeze

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



52
53
54
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 52

def key
  @key
end

#localeObject (readonly)

Returns the value of attribute locale.



52
53
54
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 52

def locale
  @locale
end

#optionsObject (readonly)

Returns the value of attribute options.



52
53
54
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 52

def options
  @options
end

Instance Method Details

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



54
55
56
57
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 54

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

#keysObject



59
60
61
62
63
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 59

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



65
66
67
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 65

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

#to_exceptionObject



70
71
72
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/i18n-1.12.0/lib/i18n/exceptions.rb', line 70

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