diff options
author | Martin Fischer <martin@push-f.com> | 2022-01-12 08:25:59 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-01-12 08:26:23 +0100 |
commit | cd8ce22f86dcbafc80dcfbb3eefd75870fb88ca9 (patch) | |
tree | 7e0b127373dd152cbca0a1fe4b1235622fe33abf | |
parent | a5643aa1ca6951bfa3de9a9831b580fa29699ff6 (diff) | |
download | searxng-cd8ce22f86dcbafc80dcfbb3eefd75870fb88ca9.tar.gz searxng-cd8ce22f86dcbafc80dcfbb3eefd75870fb88ca9.zip |
[themes] add comma before "but" in new sentence
Closes #739.
-rw-r--r-- | searx/templates/oscar/preferences.html | 2 | ||||
-rw-r--r-- | searx/templates/simple/preferences.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index fe86ce39b..c579c6010 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -322,7 +322,7 @@ </noscript> <div class="tab-pane{% if loop.first %} active{% endif %} active_if_nojs" id="tab_engine_{{ categ|replace(' ', '_') }}"> {% if categ == OTHER_CATEGORY %} - <p>{{_('This tab does not show up for search results but you can search the engines listed here via bangs.')}}</p> + <p>{{_('This tab does not show up for search results, but you can search the engines listed here via bangs.')}}</p> {% endif %} <div class="container-fluid"> <fieldset> diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 043f9d634..7c2a2adf9 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -277,7 +277,7 @@ {% for categ in categories_as_tabs + [OTHER_CATEGORY] %} {{ tab_header('enginetab', 'category' + categ, _(categ)) }} {% if categ == OTHER_CATEGORY %} - <p>{{_('This tab does not show up for search results but you can search the engines listed here via bangs.')}}</p> + <p>{{_('This tab does not show up for search results, but you can search the engines listed here via bangs.')}}</p> {% endif %} <div class="scrollx"> <table class="striped"> |