Disable locale switching logic
This commit is contained in:
parent
a8f184a001
commit
ad60e3c753
|
@ -15,21 +15,21 @@ class ApplicationController < ActionController::Base
|
||||||
|
|
||||||
I18n.locale = 'en'
|
I18n.locale = 'en'
|
||||||
|
|
||||||
if params[:hl].nil?
|
# if params[:hl].nil?
|
||||||
if current_user.present?
|
# if current_user.present?
|
||||||
I18n.locale = current_user.locale
|
# I18n.locale = current_user.locale
|
||||||
elsif not cookies[:lang].nil?
|
# elsif not cookies[:lang].nil?
|
||||||
I18n.locale = cookies[:lang]
|
# I18n.locale = cookies[:lang]
|
||||||
else
|
# else
|
||||||
I18n.locale = 'en'
|
# I18n.locale = 'en'
|
||||||
end
|
# end
|
||||||
else
|
# else
|
||||||
I18n.locale = params[:hl]
|
# I18n.locale = params[:hl]
|
||||||
if current_user.present?
|
# if current_user.present?
|
||||||
current_user.locale = I18n.locale
|
# current_user.locale = I18n.locale
|
||||||
current_user.save!
|
# current_user.save!
|
||||||
end
|
# end
|
||||||
end
|
# end
|
||||||
|
|
||||||
cookies[:lang] = I18n.locale
|
cookies[:lang] = I18n.locale
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue