diff options
Diffstat (limited to 'searx/templates/simple/messages/no_results.html')
-rw-r--r-- | searx/templates/simple/messages/no_results.html | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/searx/templates/simple/messages/no_results.html b/searx/templates/simple/messages/no_results.html index 6412191dd..8361276d0 100644 --- a/searx/templates/simple/messages/no_results.html +++ b/searx/templates/simple/messages/no_results.html @@ -1,5 +1,11 @@ {% from 'simple/icons.html' import icon_big %} -<div class="dialog-error" role="alert"> +<div class="dialog-error-block" role="alert"> <p><strong>{{ _('Sorry!') }}</strong></p> - <p>{{ _("we didn't find any results. Please use another query or search in more categories.") }}</p> + <p>{{ _("No results were found. You can try to:") }}</p> + <ul> + <li>{{ _("Refresh the page.") }}</li> + <li>{{ _("Search for another query or select another category (above).") }}</li> + <li>{{ _("Change the search engine used in the preferences:") }} <a href="/preferences">/preferences</a></li> + <li>{{ _("Switch to another instance:") }} <a href="https://searx.space">https://searx.space</a></li> + </ul> </div> |