Browse Source

[mod] deny vs block

asciimoo 11 years ago
parent
commit
67a4cffc9c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      searx/templates/preferences.html

+ 2
- 2
searx/templates/preferences.html View File

@@ -40,7 +40,7 @@
40 40
             <th>{{ _('Engine name') }}</th>
41 41
             <th>{{ _('Shortcut') }}</th>
42 42
             <th>{{ _('Category') }}</th>
43
-            <th>{{ _('Allow') }} / {{ _('Deny') }}</th>
43
+            <th>{{ _('Allow') }} / {{ _('Block') }}</th>
44 44
         </tr>
45 45
     {% for (categ,search_engines) in categs %}
46 46
         {% for search_engine in search_engines %}
@@ -53,7 +53,7 @@
53 53
                 <td class="engine_checkbox">
54 54
                     <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 %} />
55 55
                     <label class="allow" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Allow') }}</label>
56
-                    <label class="deny" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Deny') }}</label>
56
+                    <label class="deny" for="engine_{{ categ }}_{{ search_engine.name|replace(' ', '_') }}">{{ _('Block') }}</label>
57 57
                 </td>
58 58
             </tr>
59 59
             {% endif %}