summaryrefslogtreecommitdiff
path: root/searx/webapp.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2021-09-18 11:01:39 +0200
committerAlexandre Flament <alex@al-f.net>2021-09-24 20:38:05 +0200
commit2f1384f1989ddcdeba96d3e0f300510db235b851 (patch)
tree504e6e0f457097869d5e8a92a90f8cc7afcb98bd /searx/webapp.py
parentbfd24d1226ccdd1a9c7b07ff240a2198ab4d655b (diff)
[enh] themes: display the engine descriptions
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-xsearx/webapp.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/searx/webapp.py b/searx/webapp.py
index 7209e3a57..21b00188c 100755
--- a/searx/webapp.py
+++ b/searx/webapp.py
@@ -394,7 +394,9 @@ def image_proxify(url):
def get_translations():
return {
# when there is autocompletion
- 'no_item_found': gettext('No item found')
+ 'no_item_found': gettext('No item found'),
+ # /preferences: the source of the engine description (wikipedata, wikidata, website)
+ 'Source': gettext('Source'),
}