Try preferred_language_from as it looks for an exact match - only if that
fails do we fall back to compatible_language_from which will take any language where the first token matches. Fixes #2069.
This commit is contained in:
parent
a5ab006122
commit
1368f194da
1 changed files with 3 additions and 2 deletions
|
@ -110,8 +110,9 @@ class ApplicationController < ActionController::Base
|
|||
end
|
||||
end
|
||||
|
||||
I18n.locale = request.compatible_language_from(I18n.available_locales)
|
||||
|
||||
I18n.locale = request.preferred_language_from(I18n.available_locales) ||
|
||||
request.compatible_language_from(I18n.available_locales)
|
||||
logger.info("Select #{I18n.locale} matching #{request.user_preferred_languages.join(',')} against #{I18n.available_locales.join(',')}")
|
||||
response.headers['Content-Language'] = I18n.locale.to_s
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue