commit: 67a4cffc9c753c80bd4bba2f9291ef31b1d518d4
parent: 5f30085d6881b3cbc5978d6a4546c55195f10041
Author: asciimoo <asciimoo@gmail.com>
Date: Fri, 7 Feb 2014 01:22:32 +0100
[mod] deny vs block
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git 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 %}