summaryrefslogtreecommitdiff
path: root/searx/settings_defaults.py
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarIT.de>2023-03-29 09:47:21 +0200
committerGitHub <noreply@github.com>2023-03-29 09:47:21 +0200
commitf950119ca87363aec81591dc4985f11371aa2b3e (patch)
treeab893ff1f60d8c969ff0f5c2fad0cff49148aa3c /searx/settings_defaults.py
parent64fea2f9cb079bd0055c6a23360097d285204515 (diff)
parent6f9e678346e5978a09ee453a62fa133cdc0ee0bd (diff)
Merge pull request #2269 from return42/locale-revision
Revision of the locale- and language- handling in SearXNG
Diffstat (limited to 'searx/settings_defaults.py')
-rw-r--r--searx/settings_defaults.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/searx/settings_defaults.py b/searx/settings_defaults.py
index 6e98076ff..7f657aa54 100644
--- a/searx/settings_defaults.py
+++ b/searx/settings_defaults.py
@@ -12,13 +12,13 @@ import logging
from base64 import b64decode
from os.path import dirname, abspath
-from searx.languages import language_codes as languages
+from .sxng_locales import sxng_locales
searx_dir = abspath(dirname(__file__))
logger = logging.getLogger('searx')
OUTPUT_FORMATS = ['html', 'csv', 'json', 'rss']
-LANGUAGE_CODES = ['all', 'auto'] + list(l[0] for l in languages)
+SXNG_LOCALE_TAGS = ['all', 'auto'] + list(l[0] for l in sxng_locales)
SIMPLE_STYLE = ('auto', 'light', 'dark')
CATEGORIES_AS_TABS = {
'general': {},
@@ -156,8 +156,8 @@ SCHEMA = {
'safe_search': SettingsValue((0, 1, 2), 0),
'autocomplete': SettingsValue(str, ''),
'autocomplete_min': SettingsValue(int, 4),
- 'default_lang': SettingsValue(tuple(LANGUAGE_CODES + ['']), ''),
- 'languages': SettingSublistValue(LANGUAGE_CODES, LANGUAGE_CODES),
+ 'default_lang': SettingsValue(tuple(SXNG_LOCALE_TAGS + ['']), ''),
+ 'languages': SettingSublistValue(SXNG_LOCALE_TAGS, SXNG_LOCALE_TAGS),
'ban_time_on_fail': SettingsValue(numbers.Real, 5),
'max_ban_time_on_fail': SettingsValue(numbers.Real, 120),
'suspended_times': {