diff options
author | elijah <elijah@riseup.net> | 2015-06-15 17:12:05 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2015-06-15 17:12:05 -0700 |
commit | 12ab515ecd448f98ff006e30a93e43626183b6d0 (patch) | |
tree | 86023afaee3851029991ef684a88f893384d2c26 /config/initializers/i18n.rb | |
parent | 9d1c6d33645196df697f2733860d23f0bb39b1c4 (diff) |
imported new locales from transifex
Diffstat (limited to 'config/initializers/i18n.rb')
-rw-r--r-- | config/initializers/i18n.rb | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/config/initializers/i18n.rb b/config/initializers/i18n.rb index b209d00..645e370 100644 --- a/config/initializers/i18n.rb +++ b/config/initializers/i18n.rb @@ -1,13 +1,7 @@ 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) +I18n.load_path += Dir[Rails.root.join('config', 'locales', 'en', '*.yml')] # enable using the cascade option # see svenfuchs.com/2011/2/11/organizing-translations-with-i18n-cascade-and-i18n-missingtranslations |