mirror of
https://github.com/discourse/discourse.git
synced 2025-02-05 19:11:13 +00:00
930f51e175
* Chinese segmenetation will continue to rely on cppjieba * Japanese segmentation will use our port of TinySegmenter * Korean currently does not rely on segmentation which was dropped in c677877e4fe5381f613279901f36ae255c909573 * SiteSetting.search_tokenize_chinese_japanese_korean has been split into SiteSetting.search_tokenize_chinese and SiteSetting.search_tokenize_japanese respectively
15 lines
276 B
Ruby
15 lines
276 B
Ruby
# frozen_string_literal: true
|
|
|
|
class SearchTokenizeChineseValidator
|
|
def initialize(opts = {})
|
|
end
|
|
|
|
def valid_value?(value)
|
|
!SiteSetting.search_tokenize_japanese
|
|
end
|
|
|
|
def error_message
|
|
I18n.t("site_settings.errors.search_tokenize_japanese_enabled")
|
|
end
|
|
end
|