From 3f3097c772e8d6d5f6441e4ed81f18891e551e19 Mon Sep 17 00:00:00 2001 From: Markus Heiser Date: Wed, 24 Nov 2021 17:40:03 +0100 Subject: [fix] templates: remove unneeded escape \' of single quotation mark Strings like:: 'Query in the page\'s title' are hard to read / remove escape sequence by using double quotation marks for strings :: "Query in the page's title" BTW: remove a leading dot in the simple theme [1]. [1] https://github.com/searxng/searxng/pull/485/files/80fb77476fad4b229418c530f3ffda67f357a15a#r756112716 Signed-off-by: Markus Heiser --- searx/templates/simple/preferences.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'searx/templates/simple/preferences.html') diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 3fb962bd3..8f602cd1b 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -258,14 +258,14 @@ {% endif %} {% if 'query_in_title' not in locked_preferences %}
- {{ _('Query in the page\'s title') }} + {{ _("Query in the page's title") }}

-
{{ _('When enabled, the result page\'s title contains your query. Your browser can record this title.') }}
+
{{ _("When enabled, the result page's title contains your query. Your browser can record this title") }}
{% endif %} {{ plugin_preferences('privacy') }} @@ -324,7 +324,7 @@ {{ _('Examples') }} - {{ _('This is the list of SearXNG\'s instant answering modules.') }} + {{ _("This is the list of SearXNG's instant answering modules.") }} {% for answerer in answerers %} -- cgit v1.2.3