libremiami-search/searx/templates/oscar/preferences.html
Thomas Pointhuber 25312c53e1 [enh] add no-js support
* image results have url, which can be clicked
* preferences full functionable without js
2014-11-03 22:18:40 +01:00

7.7 KiB

{% extends "oscar/base.html" %} {% block title %}{{ _('preferences') }} - {% endblock %} {% block content %}

{{ _('Preferences') }}

{{ _('Default categories') }}
{% include 'oscar/categories.html' %}
{{ _('Search language') }}
{{ _('Automatic') }} {% for lang_id,lang_name,country_name in language_codes %} {{ lang_name }} ({{ country_name }}) - {{ lang_id }} {% endfor %}
{{ _('What language do you prefer for search?') }}
{{ _('Interface language') }}
{% for locale_id,locale_name in locales.items() %} {{ locale_name }} {% endfor %}
{{ _('Change the language of the layout') }}
{{ _('Autocomplete') }}
- {% for backend in autocomplete_backends %} {{ backend }} {% endfor %}
{{ _('Find stuff as you type') }}
{{ _('Method') }}
POST GET
{{ _('Change how forms are submited, learn more about request methods') }}
{{ _('Themes') }}
{% for name in themes %} {{ name }} {% endfor %}
{{ _('Change searx layout') }}
    {% for (categ,search_engines) in categs %} {{ _(categ) }} {% endfor %}
{% for (categ,search_engines) in categs %}
{% for search_engine in search_engines %} {% if not search_engine.private %}
{{ search_engine.name }} ({{ shortcuts[search_engine.name] }})
{% endif %} {% endfor %}
{% endfor %}

{{ _('These settings are stored in your cookies, this allows us not to store this data about you.') }}
{{ _("These cookies serve your sole convenience, we don't use these cookies to track you.") }}

{{ _('back') }}
{% endblock %}