2019-05-03 08:17:27 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-03-14 16:18:19 -07:00
|
|
|
class AllowUserLocaleEnabledValidator
|
|
|
|
|
2017-07-28 10:20:09 +09:00
|
|
|
def initialize(opts = {})
|
2016-03-14 16:18:19 -07:00
|
|
|
@opts = opts
|
|
|
|
end
|
|
|
|
|
|
|
|
def valid_value?(val)
|
|
|
|
# only validate when enabling setting locale from headers
|
|
|
|
return true if val == "f"
|
|
|
|
# ensure that allow_user_locale is enabled
|
|
|
|
SiteSetting.allow_user_locale
|
|
|
|
end
|
|
|
|
|
|
|
|
def error_message
|
2018-12-04 03:48:13 +00:00
|
|
|
I18n.t("site_settings.errors.user_locale_not_enabled")
|
2016-03-14 16:18:19 -07:00
|
|
|
end
|
|
|
|
|
2017-07-28 10:20:09 +09:00
|
|
|
end
|