diff options
Diffstat (limited to 'searx/templates/simple/preferences.html')
| -rw-r--r-- | searx/templates/simple/preferences.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 7c2a2adf9..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 %} |