diff options
Diffstat (limited to 'searx/templates')
| -rw-r--r-- | searx/templates/oscar/preferences.html | 4 | ||||
| -rw-r--r-- | searx/templates/simple/preferences.html | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index fe86ce39b..f731a8fc1 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -259,7 +259,7 @@ <fieldset> <div class="container-fluid"> {% if 'method' not in locked_preferences %} - {% set method_label = _('Method') %} + {% set method_label = _('HTTP Method') %} {% set method_info = _('Change how forms are submited, <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods" rel="external">learn more about request methods</a>') %} {{ preferences_item_header(method_info, method_label, rtl, 'method') }} <select class="form-control {{ custom_select_class(rtl) }}" name="method" id="method"> @@ -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..9968e8b07 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -234,14 +234,14 @@ {{ tab_header('maintab', 'privacy', _('Privacy')) }} {% if 'method' not in locked_preferences %} <fieldset> - <legend>{{ _('Method') }}</legend> + <legend>{{ _('HTTP Method') }}</legend> <p class="value"> <select name='method'> <option value="POST" {% if method == 'POST' %}selected="selected"{% endif %}>POST</option> <option value="GET" {% if method == 'GET' %}selected="selected"{% endif %}>GET</option> </select> </p> - <div class="description">{{ _('Search language') }}</div> + <div class="description">{{ _('Change how forms are submited, <a href="http://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol#Request_methods" rel="external">learn more about request methods</a>') }}</div> </fieldset> {% endif %} {% if 'image_proxy' not in locked_preferences %} @@ -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"> |