diff options
author | azul <azul@riseup.net> | 2013-12-22 06:39:37 -0800 |
---|---|---|
committer | azul <azul@riseup.net> | 2013-12-22 06:39:37 -0800 |
commit | 4c5851dfac51453571427535419469fe1b73a81d (patch) | |
tree | bc5356220eaca2465bd135f45edf8000d6c254be /config/initializers/i18n.rb | |
parent | 5bf1462140a7aa17ea815ccc5105ace6fa878d83 (diff) | |
parent | 665964bcbba69829a4ff1e7d7bd936f90d49b3f7 (diff) |
Merge pull request #131 from elijh/feature/locale-routes
locale prefix support
Diffstat (limited to 'config/initializers/i18n.rb')
-rw-r--r-- | config/initializers/i18n.rb | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index 574d169..c277a22 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -1,2 +1,10 @@ +I18n.enforce_available_locales = true +I18n.available_locales = APP_CONFIG[:available_locales] +I18n.default_locale = APP_CONFIG[:default_locale] -I18n.available_locales = ['en'] +# 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) |