mirror of
https://github.com/searxng/searxng
synced 2024-01-01 19:24:07 +01:00
upd
This commit is contained in:
parent
fd843a169a
commit
3747a01486
35 changed files with 1624 additions and 0 deletions
8
searx/templates/oscar/messages/first_time.html
Normal file
8
searx/templates/oscar/messages/first_time.html
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
<div class="alert alert-info fade in" role="alert">
|
||||
<button class="close" data-dismiss="alert" type="button">
|
||||
<span aria-hidden="true">×</span>
|
||||
<span class="sr-only">{{ _('Close') }}</span>
|
||||
</button>
|
||||
<strong class="lead">{{ icon('info-sign') }} {{ _('Heads up!') }}</strong>
|
||||
{{ _('It look like you are using searx first time.') }}
|
||||
</div>
|
||||
5
searx/templates/oscar/messages/no_cookies.html
Normal file
5
searx/templates/oscar/messages/no_cookies.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{% from 'oscar/macros.html' import icon %}
|
||||
<div class="alert alert-info fade in" role="alert">
|
||||
<strong class="lead">{{ icon('info-sign') }} {{ _('Information!') }}</strong>
|
||||
{{ _('currently, there are no cookies defined.') }}
|
||||
</div>
|
||||
5
searx/templates/oscar/messages/no_data_available.html
Normal file
5
searx/templates/oscar/messages/no_data_available.html
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{% from 'oscar/macros.html' import icon %}
|
||||
<div class="alert alert-info fade in" role="alert">
|
||||
<strong class="lead">{{ icon('info-sign') }} {{ _('Heads up!') }}</strong>
|
||||
{{ _('There is currently no data available. ') }}
|
||||
</div>
|
||||
17
searx/templates/oscar/messages/no_results.html
Normal file
17
searx/templates/oscar/messages/no_results.html
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% from 'oscar/macros.html' import icon %}
|
||||
{% if unresponsive_engines %}
|
||||
<div class="alert alert-danger fade in" role="alert">
|
||||
<p><strong class="lead">{{ icon('remove-sign') }} {{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results.') }}</p>
|
||||
<p>
|
||||
{% for engine_name, error_type in unresponsive_engines %}
|
||||
{{ engine_name }} ({{ error_type }}){% if not loop.last %}, {% endif %}
|
||||
{% endfor %}
|
||||
</p>
|
||||
<p><small>{{ _('Please, try again later or find another searx instance.') }} (<a href="{{ brand.PUBLIC_INSTANCES }}">{{ _('Public instances') }}</a>)</small></p>
|
||||
</div>
|
||||
{% else %}
|
||||
<div class="alert alert-info fade in" role="alert">
|
||||
<strong class="lead">{{ icon('info-sign') }} {{ _('Sorry!') }}</strong>
|
||||
{{ _('we didn\'t find any results. Please use another query or search in more categories.') }}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
{% from 'oscar/macros.html' import icon %}
|
||||
<div class="alert alert-success fade in" role="alert">
|
||||
<button class="close" data-dismiss="alert" type="button">
|
||||
<span aria-hidden="true">×</span>
|
||||
<span class="sr-only">{{ _('Close') }}</span>
|
||||
</button>
|
||||
<strong class="lead">{{ icon('ok-sign') }} {{ _('Well done!') }}</strong>
|
||||
{{ _('Settings saved successfully.') }}
|
||||
</div>
|
||||
9
searx/templates/oscar/messages/unknow_error.html
Normal file
9
searx/templates/oscar/messages/unknow_error.html
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{% from 'oscar/macros.html' import icon %}
|
||||
<div class="alert alert-danger fade in" role="alert">
|
||||
<button class="close" data-dismiss="alert" type="button">
|
||||
<span aria-hidden="true">×</span>
|
||||
<span class="sr-only">{{ _('Close') }}</span>
|
||||
</button>
|
||||
<strong class="lead">{{ icon('exclamation-sign') }} {{ _('Oh snap!') }}</strong>
|
||||
{{ _('Something went wrong.') }}
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue