I18n.enforce_available_locales = true I18n.available_locales = APP_CONFIG[:available_locales] I18n.default_locale = APP_CONFIG[:default_locale] # Used to match locales route prefixes MATCH_LOCALE = /(#{I18n.available_locales.join('|')})/ # I18n.available_locales is always an array of symbols, but for comparison with # params we need it to be an array of strings. LOCALES_STRING = I18n.available_locales.map(&:to_s) # enable using the cascade option # see svenfuchs.com/2011/2/11/organizing-translations-with-i18n-cascade-and-i18n-missingtranslations I18n::Backend::Simple.send(:include, I18n::Backend::Cascade)