summaryrefslogtreecommitdiff
path: root/searx
diff options
context:
space:
mode:
authorMarkus Heiser <markus.heiser@darmarit.de>2022-01-14 08:29:04 +0100
committerMarkus Heiser <markus.heiser@darmarit.de>2022-01-14 08:29:04 +0100
commite45dfb334bd88d702af86c18438f5c3068b9563e (patch)
tree917728d19e6488a9f00d64fb0e786975a65e64eb /searx
parent3c358ff24fafb97a1d8b521f0b6305b7510f5b1f (diff)
downloadsearxng-e45dfb334bd88d702af86c18438f5c3068b9563e.tar.gz
searxng-e45dfb334bd88d702af86c18438f5c3068b9563e.zip
[theme] /preferences: rename "Method" to "HTTP Method"
Closes: https://github.com/searxng/searxng/issues/751 Signed-off-by: Markus Heiser <markus.heiser@darmarit.de>
Diffstat (limited to 'searx')
-rw-r--r--searx/templates/oscar/preferences.html2
-rw-r--r--searx/templates/simple/preferences.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html
index c579c6010..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">
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html
index 7c2a2adf9..628107aa7 100644
--- a/searx/templates/simple/preferences.html
+++ b/searx/templates/simple/preferences.html
@@ -234,7 +234,7 @@
{{ 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>