[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 <markus.heiser@darmarit.de>
This commit is contained in:
Markus Heiser 2021-11-24 17:40:03 +01:00
parent 42c1a938f0
commit 3f3097c772
4 changed files with 8 additions and 8 deletions

View file

@ -18,6 +18,6 @@
{% else %}
<div class="dialog-error" role="alert">
<p><strong>{{ _('Sorry!') }}</strong></p>
<p>{{ _('we didn\'t find any results. Please use another query or search in more categories.') }}</p>
<p>{{ _("we didn't find any results. Please use another query or search in more categories.") }}</p>
</div>
{% endif %}