aboutsummaryrefslogtreecommitdiffstats
path: root/config/initializers/fast_gettext.rb
blob: 721c49cd055dc9f429713c7e7e82c369668e7b10 (plain)
1
2
3
4
5
6
7
Encoding.default_external = 'UTF-8' if RUBY_VERSION.to_f >= 1.9
FastGettext.add_text_domain 'app', :path => File.join(Rails.root, 'locale'), :type => :po
FastGettext.default_text_domain = 'app'

I18n::Backend::Simple.send(:include, I18n::Backend::Fallbacks)