This repository has been archived on 2023-03-18. You can view files and clone it, but cannot push or open issues or pull requests.
osr-discourse-src/lib/validators/allow_user_locale_enabled_validator.rb
2016-03-15 10:02:10 -07:00

18 lines
383 B
Ruby

class AllowUserLocaleEnabledValidator
def initialize(opts={})
@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
I18n.t("site_settings.errors.user_locale_not_enabled");
end
end