diff options
author | Adam Tauber <asciimoo@gmail.com> | 2020-07-16 18:43:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 18:43:23 +0200 |
commit | 7ef62c628424718f10b88a5850f7b4e92b2f7196 (patch) | |
tree | 7d084894c4d5ce32fc275dd2da864898603bcd0d | |
parent | 61ff5a7aea971805de77fde2c2ea1c4abf0d22d5 (diff) | |
parent | 74e4e5e507d908950d4458dff5ba4aa5c712866f (diff) | |
download | searxng-7ef62c628424718f10b88a5850f7b4e92b2f7196.tar.gz searxng-7ef62c628424718f10b88a5850f7b4e92b2f7196.zip |
Merge pull request #2079 from KucharczykL/master
Allow localization of "Self Informations"
-rw-r--r-- | searx/plugins/self_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/plugins/self_info.py b/searx/plugins/self_info.py index 67e5e0e53..cdd3e9a6e 100644 --- a/searx/plugins/self_info.py +++ b/searx/plugins/self_info.py @@ -16,7 +16,7 @@ along with searx. If not, see < http://www.gnu.org/licenses/ >. ''' from flask_babel import gettext import re -name = "Self Informations" +name = gettext('Self Informations') description = gettext('Displays your IP if the query is "ip" and your user agent if the query contains "user agent".') default_on = True |