From 9b575a997ba207fcab815af9e48ef4b30975c306 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Mon, 17 Apr 2023 08:40:44 +0200 Subject: [PATCH] [fix] doc of locales.get_engine_locale() / zh-classical is missleading Wikipedia's zh-classical is not zh_Hant (see doc-string of engines.wikipedia). Fixed the example in the doc-string of locales.get_engine_locale() to 'zh_TW'. Signed-off-by: Markus Heiser --- searx/engines/wikidata.py | 2 -- searx/locales.py | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/searx/engines/wikidata.py b/searx/engines/wikidata.py index b9de67ef9..34d408158 100644 --- a/searx/engines/wikidata.py +++ b/searx/engines/wikidata.py @@ -166,8 +166,6 @@ def send_wikidata_query(query, method='GET'): def request(query, params): - # wikidata does not support zh-classical (zh_Hans) / zh-TW, zh-HK and zh-CN - # mapped to zh eng_tag, _wiki_netloc = get_wiki_params(params['searxng_locale'], traits) query, attributes = get_query(query, eng_tag) logger.debug("request --> language %s // len(attributes): %s", eng_tag, len(attributes)) diff --git a/searx/locales.py b/searx/locales.py index ffa5e731c..c765eb198 100644 --- a/searx/locales.py +++ b/searx/locales.py @@ -245,7 +245,7 @@ def get_engine_locale(searxng_locale, engine_locales, default=None): .. 'zh' : 'zh' 'zh_Hans' : 'zh' - 'zh_Hant' : 'zh-classical' + 'zh_Hant' : 'zh_TW' } .. hint::