Fix some bugs for I18n fallbacks

This commit is contained in:
livefromthemoon@gmail.com 2010-10-31 22:39:00 +01:00
parent 9e27797092
commit bbd0d35070

View file

@ -6,3 +6,6 @@
I18n.load_path += Dir[Rails.root.join('config', 'locales', '**', '*.{rb,yml}')]
I18n.default_locale = DEFAULT_LANGUAGE
I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks)
AVAILABLE_LANGUAGE_CODES.each do |c|
I18n.fallbacks[c.to_sym] = [c.to_sym, DEFAULT_LANGUAGE.to_sym, :en]
end