From: Tom Hughes Date: Sun, 4 Mar 2012 15:10:51 +0000 (+0000) Subject: Remove translation reload that is no longer needed X-Git-Tag: live~6736 X-Git-Url: https://git.openstreetmap.org./rails.git/commitdiff_plain/a1321f2c508a6279edf792862905bd0a4043ba5f Remove translation reload that is no longer needed Now that we are using the rails-i18n gem the rails locales are added to the path early on and we don't need to reload to get them. --- diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index 7aafc91eb..036de52d1 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -22,7 +22,3 @@ I18n::Backend::Simple.include(I18n::Backend::PluralizationFallback) I18n::Backend::Simple.include(I18n::Backend::Fallbacks) I18n.fallbacks.map("no" => "nb") - -Rails.configuration.after_initialize do - I18n.reload! -end