Bump i18n for new public I18n.normalize_keys

This commit is contained in:
Jeremy Kemper 2010-02-25 15:06:11 -08:00
parent 2ba6049506
commit 66d537852b
2 changed files with 2 additions and 2 deletions

View File

@ -15,7 +15,7 @@ module ActionView
translation = I18n.translate(scope_key_by_partial(key), options)
translation.is_a?(Array) ? translation.map { |entry| entry.html_safe } : translation.html_safe
rescue I18n::MissingTranslationData => e
keys = I18n.send(:normalize_translation_keys, e.locale, e.key, e.options[:scope])
keys = I18n.normalize_keys(e.locale, e.key, e.options[:scope])
content_tag('span', keys.join(', '), :class => 'translation_missing')
end
alias :t :translate

View File

@ -16,7 +16,7 @@ Gem::Specification.new do |s|
s.has_rdoc = true
s.add_dependency('i18n', '~> 0.3.0')
s.add_dependency('i18n', '~> 0.3.4')
s.add_dependency('tzinfo', '~> 0.3.16')
s.add_dependency('builder', '~> 2.1.2')
s.add_dependency('memcache-client', '~> 1.7.5')