diff options
Diffstat (limited to 'searx/webapp.py')
-rwxr-xr-x | searx/webapp.py | 4 |
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'), } |