diff options
author | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2018-02-28 22:30:48 -0600 |
---|---|---|
committer | Marc Abonce Seguin <marc-abonce@mailbox.org> | 2018-03-27 00:08:03 -0600 |
commit | 772c048d01c7585fd60afca1ce30a1914e6e5b4a (patch) | |
tree | 96a5662897df2bcf0ab53456e0a67ace998f2169 /searx/preferences.py | |
parent | d1eae9359f8c5920632a730744ea2208070f06da (diff) | |
download | searxng-772c048d01c7585fd60afca1ce30a1914e6e5b4a.tar.gz searxng-772c048d01c7585fd60afca1ce30a1914e6e5b4a.zip |
refactor engine's search language handling
Add match_language function in utils to match any user given
language code with a list of engine's supported languages.
Also add language_aliases dict on each engine to translate
standard language codes into the custom codes used by the engine.
Diffstat (limited to 'searx/preferences.py')
-rw-r--r-- | searx/preferences.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/searx/preferences.py b/searx/preferences.py index 70ccbb7be..5ff70191a 100644 --- a/searx/preferences.py +++ b/searx/preferences.py @@ -115,10 +115,6 @@ class SearchLanguageSetting(EnumStringSetting): pass elif lang in self.choices: data = lang - elif data == 'nb-NO': - data = 'no-NO' - elif data == 'ar-XA': - data = 'ar-SA' else: data = self.value self.value = data |