# File lib/active_support/vendor/i18n-0.0.1/i18n/exceptions.rb, line 14 def initialize(locale, key, options) @key, @locale, @options = key, locale, options keys = I18n.send(:normalize_translation_keys, locale, key, options[:scope]) keys << 'no key' if keys.size < 2 super "translation missing: #{keys.join(', ')}" end