You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
367 B
20 lines
367 B
# frozen_string_literal: true
|
|
|
|
module Localized
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
before_action :set_locale
|
|
end
|
|
|
|
def set_locale
|
|
I18n.locale = current_user.try(:locale) || default_locale
|
|
rescue I18n::InvalidLocale
|
|
I18n.locale = default_locale
|
|
end
|
|
|
|
def default_locale
|
|
ENV.fetch('DEFAULT_LOCALE') { I18n.default_locale }
|
|
end
|
|
end
|