Class/Module Index [+]

Quicksearch

I18n::MissingTranslation::Base

Attributes

key[R]
locale[R]
options[R]

Public Class Methods

new(locale, key, options = nil) click to toggle source
# File lib/i18n/exceptions.rb, line 42
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

Public Instance Methods

html_message() click to toggle source
# File lib/i18n/exceptions.rb, line 47
def html_message
  key = keys.last.to_s.gsub('_', ' ').gsub(/\b('?[a-z])/) { $1.capitalize }
  %(<span class="translation_missing" title="translation missing: #{keys.join('.')}">#{key}</span>)
end
keys() click to toggle source
# File lib/i18n/exceptions.rb, line 52
def keys
  @keys ||= I18n.normalize_keys(locale, key, options[:scope]).tap do |keys|
    keys << 'no key' if keys.size < 2
  end
end
message() click to toggle source
# File lib/i18n/exceptions.rb, line 58
def message
  "translation missing: #{keys.join('.')}"
end
Also aliased as: to_s
to_exception() click to toggle source
# File lib/i18n/exceptions.rb, line 63
def to_exception
  MissingTranslationData.new(locale, key, options)
end
to_s() click to toggle source
Alias for: message

[Validate]

Generated with the Darkfish Rdoc Generator 2.