summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--searx/search.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/searx/search.py b/searx/search.py
index 09ec14f05..79a82f0b1 100644
--- a/searx/search.py
+++ b/searx/search.py
@@ -79,11 +79,20 @@ class Search(object):
modified = False
if query_parts[0].startswith(':'):
lang = query_parts[0][1:]
- if lang in (x[0] for x in language_codes):
- self.lang = lang
- modified = True
+
+ for lc in language_codes:
+ lang_id, lang_name, country = map(str.lower, lc)
+ if lang == lang_id\
+ or lang_id.startswith(lang)\
+ or lang == lang_name\
+ or lang == country:
+ self.lang = lang
+ modified = True
+ break
+
elif query_parts[0].startswith('!'):
prefix = query_parts[0][1:].replace('_', ' ')
+
if prefix in engine_shortcuts\
and not engine_shortcuts[prefix] in self.blocked_engines:
modified = True