summaryrefslogtreecommitdiff
path: root/searx/templates/simple
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2024-01-29 17:10:11 +0100
committerMarkus Heiser <markus.heiser@darmarIT.de>2024-02-10 08:03:43 +0100
commit53898b8c37850bee241c74e2f617fb9cd49b3c69 (patch)
tree92ce0e09810806554a175057d0df549fd66c8748 /searx/templates/simple
parent7e1b5f6cc83491d98763f010ab9052529576257e (diff)
downloadsearxng-53898b8c37850bee241c74e2f617fb9cd49b3c69.tar.gz
searxng-53898b8c37850bee241c74e2f617fb9cd49b3c69.zip
[mod] footer: i18n for the link names in the footer
Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx/templates/simple')
-rw-r--r--searx/templates/simple/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/base.html b/searx/templates/simple/base.html
index d22d96685..c72962492 100644
--- a/searx/templates/simple/base.html
+++ b/searx/templates/simple/base.html
@@ -77,8 +77,8 @@
{% if get_setting('general.contact_url') %}
| <a href="{{ get_setting('general.contact_url') }}">{{ _('Contact instance maintainer') }}</a>
{% endif %}
- {% for title, link in get_setting('brand.custom').items() %}
- | <a href="{{ link }}">{{ title }}</a>
+ {% for title, link in get_setting('brand.custom.links').items() %}
+ | <a href="{{ link }}">{{ _(title) }}</a>
{% endfor %}
</p>
</footer>