summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorasciimoo <asciimoo@gmail.com>2014-02-07 01:22:32 +0100
committerasciimoo <asciimoo@gmail.com>2014-02-07 01:22:32 +0100
commit67a4cffc9c753c80bd4bba2f9291ef31b1d518d4 (patch)
treeca6216f33d070693c6406f65cf3c941f1b0c275e
parent5f30085d6881b3cbc5978d6a4546c55195f10041 (diff)
[mod] deny vs block
-rw-r--r--searx/templates/preferences.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/preferences.html b/searx/templates/preferences.html
index e5ef2718b..b46a25b08 100644
--- a/searx/templates/preferences.html
+++ b/searx/templates/preferences.html
@@ -40,7 +40,7 @@
<th>{{ _('Engine name') }}</th>
<th>{{ _('Shortcut') }}</th>
<th>{{ _('Category') }}</th>
- <th>{{ _('Allow') }} / {{ _('Deny') }}</th>
+ <th>{{ _('Allow') }} / {{ _('Block') }}</th>
</tr>
{% for (categ,search_engines) in categs %}
{% for search_engine in search_engines %}
@@ -53,7 +53,7 @@
<td class="engine_checkbox">
<input type="checkbox" id="engine_{{ categ}}_{{ search_engine.name|replace(' ', '_') }}" name="engine_{{ search_engine.name }}"{% if search_engine.name in blocked_engines %} checked="checked"{% endif %} />
<label class="allow" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Allow') }}</label>
- <label class="deny" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Deny') }}</label>
+ <label class="deny" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Block') }}</label>
</td>
</tr>
{% endif %}