diff options
author | Markus Heiser <markus.heiser@darmarIT.de> | 2022-01-12 08:30:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 08:30:41 +0100 |
commit | 7f0fe265797e1fa84526951532d6f74f6cdcdbc0 (patch) | |
tree | 7e0b127373dd152cbca0a1fe4b1235622fe33abf | |
parent | a5643aa1ca6951bfa3de9a9831b580fa29699ff6 (diff) | |
parent | cd8ce22f86dcbafc80dcfbb3eefd75870fb88ca9 (diff) | |
download | searxng-7f0fe265797e1fa84526951532d6f74f6cdcdbc0.tar.gz searxng-7f0fe265797e1fa84526951532d6f74f6cdcdbc0.zip |
Merge pull request #743 from not-my-profile/comma-before-but
[themes] add comma before "but" in new sentence
-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"> |