diff options
| author | Markus Heiser <markus.heiser@darmarIT.de> | 2021-11-24 20:20:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-24 20:20:26 +0100 |
| commit | bd285de48a7db9f67c9e5dd50aba8742f552a245 (patch) | |
| tree | e710d4ca7595fd58866a1ebeb533ea9c5619c121 /searx/templates/oscar/preferences.html | |
| parent | 42c1a938f0c5c5f34c6904f8458dbf4d7c2c1ab6 (diff) | |
| parent | 3f3097c772e8d6d5f6441e4ed81f18891e551e19 (diff) | |
Merge pull request #543 from return42/fix-485
[fix] templates: remove unneeded escape \' of single quotation mark
Diffstat (limited to 'searx/templates/oscar/preferences.html')
| -rw-r--r-- | searx/templates/oscar/preferences.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/searx/templates/oscar/preferences.html b/searx/templates/oscar/preferences.html index e5a7a9423..b76ee44a1 100644 --- a/searx/templates/oscar/preferences.html +++ b/searx/templates/oscar/preferences.html @@ -281,8 +281,8 @@ {% endif %} {% if 'query_in_title' not in locked_preferences %} - {% set query_in_title_label = _('Query in the page\'s title') %} - {% set query_in_title_info = _('When enabled, the result page\'s title contains your query. Your browser can record this title') %} + {% set query_in_title_label = _("Query in the page's title") %} + {% set query_in_title_info = _("When enabled, the result page's title contains your query. Your browser can record this title") %} {{ preferences_item_header(query_in_title_info, query_in_title_label, rtl, 'query_in_title') }} <select class="form-control {{ custom_select_class(rtl) }}" name="query_in_title" id="query_in_title"> <option value="1" {% if query_in_title %}selected="selected"{% endif %}>{{ _('Enabled') }}</option> @@ -408,7 +408,7 @@ </thead> <tbody> <td></td> - <th scope="colgroup" colspan="4">{{ _('This is the list of SearXNG\'s instant answering modules.') }}</th> + <th scope="colgroup" colspan="4">{{ _("This is the list of SearXNG's instant answering modules.") }}</th> {% for answerer in answerers %} <tr> <td></td> |