# File lib/i18n/exceptions.rb, line 45 def initialize(locale, key, options = nil) @key, @locale, @options = key, locale, options.dup || {} options.each { |k, v| self.options[k] = v.inspect if v.is_a?(Proc) } end
# File lib/i18n/exceptions.rb, line 50 def keys @keys ||= I18n.normalize_keys(locale, key, options[:scope]).tap do |keys| keys << 'no key' if keys.size < 2 end end
# File lib/i18n/exceptions.rb, line 56 def message "translation missing: #{keys.join('.')}" end
# File lib/i18n/exceptions.rb, line 61 def to_exception MissingTranslationData.new(locale, key, options) end