2017-04-07 12:40:26 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Localized
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
2017-04-25 15:06:41 +02:00
|
|
|
before_action :set_locale
|
2017-04-07 12:40:26 +02:00
|
|
|
end
|
|
|
|
|
2017-04-08 02:30:50 +02:00
|
|
|
private
|
|
|
|
|
2017-04-07 12:40:26 +02:00
|
|
|
def set_locale
|
2017-04-25 15:06:41 +02:00
|
|
|
I18n.locale = default_locale
|
|
|
|
I18n.locale = current_user.locale if user_signed_in?
|
|
|
|
rescue I18n::InvalidLocale
|
|
|
|
I18n.locale = default_locale
|
2017-04-07 12:40:26 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
def default_locale
|
2017-05-01 16:31:02 +02:00
|
|
|
ENV.fetch('DEFAULT_LOCALE') do
|
2017-04-15 01:12:39 +02:00
|
|
|
user_supplied_locale || I18n.default_locale
|
2017-05-01 16:31:02 +02:00
|
|
|
end
|
2017-04-07 12:40:26 +02:00
|
|
|
end
|
2017-04-15 01:12:39 +02:00
|
|
|
|
|
|
|
def user_supplied_locale
|
|
|
|
http_accept_language.language_region_compatible_from(I18n.available_locales)
|
|
|
|
end
|
2017-04-07 12:40:26 +02:00
|
|
|
end
|