From 9a94b36593829907f3ae18a568c13c4d1c875ce6 Mon Sep 17 00:00:00 2001 From: Thomas Pointhuber Date: Wed, 2 Mar 2016 17:16:46 +0100 Subject: [PATCH] [fix] translate plugin name and description in template --- searx/templates/oscar/preferences.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index ea36a14b9..c677a0c66 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -191,10 +191,10 @@ {% for plugin in plugins %}
-

{{ plugin.name }}

+

{{ _(plugin.name) }}

-
{{ plugin.description }}
+
{{ _(plugin.description) }}
{{ checkbox_toggle('plugin_' + plugin.id, plugin.id not in allowed_plugins) }}