Browse Source

If DEFAULT_LOCALE is set, enforce it instead of HTTP request locale (#6817)

Fix #6784
pull/4/head
Eugen Rochko 6 years ago
committed by GitHub
parent
commit
39f27b6cf3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      app/controllers/concerns/localized.rb

+ 5
- 1
app/controllers/concerns/localized.rb View File

@ -17,7 +17,11 @@ module Localized
end
def default_locale
request_locale || I18n.default_locale
if ENV['DEFAULT_LOCALE'].present?
I18n.default_locale
else
request_locale || I18n.default_locale
end
end
def request_locale

Loading…
Cancel
Save