diff --git a/changedetectionio/templates/base.html b/changedetectionio/templates/base.html index 93ae11d14..a2d39a5a5 100644 --- a/changedetectionio/templates/base.html +++ b/changedetectionio/templates/base.html @@ -321,9 +321,14 @@ (SCRIPT_NAME), so no client-side URL building is needed. #}
- + {# Matches watch_passes_search() in blueprint/watchlist/filters.py - title, URL and last error text #} + - {% if active_tag_uuid %}{% endif %} + {# 'tag' (not 'tags') - that's the arg the watchlist filters on #} + {% if active_tag_uuid %} + + {{ _("Searching in current group '%(title)s' only", title=active_tag.title) }} + {% endif %}
diff --git a/changedetectionio/tests/test_search.py b/changedetectionio/tests/test_search.py index df4560699..e7adcb1f0 100644 --- a/changedetectionio/tests/test_search.py +++ b/changedetectionio/tests/test_search.py @@ -1,5 +1,6 @@ from flask import url_for from .util import set_original_response, set_modified_response, live_server_setup +import re import time @@ -72,6 +73,7 @@ def test_search_in_tag_limit(client, live_server, measure_memory_usage, datastor assert urls[1].split(' ')[0].encode('utf-8') not in res.data, urls[0].encode('utf-8') + def test_search_modal_form_action(client, live_server, measure_memory_usage, datastore_path): # The search modal submits as a plain GET form, so its action has to carry the # reverse-proxy sub-path (SCRIPT_NAME), otherwise search jumps to the host root. @@ -80,3 +82,33 @@ def test_search_modal_form_action(client, live_server, measure_memory_usage, dat res = client.get("/", base_url="http://localhost/sub-path") assert b'
' in res.data + + +def test_search_modal_tag_field_is_filterable(client, live_server, measure_memory_usage, datastore_path): + # The modal carries the active tag as a hidden field so a search stays scoped to the + # tag you were viewing. The field name has to be the one the watchlist filters on. + urls = ['https://localhost:12300?first-result=1 tag-one', + 'https://localhost:5000?second-result=1 tag-two' + ] + res = client.post( + url_for("imports.import_page"), + data={"urls": "\r\n".join(urls)}, + follow_redirects=True + ) + assert b"2 Imported" in res.data + + res = client.get(url_for("watchlist.index") + "?tag=tag-one") + form = re.search(rb'', res.data, re.DOTALL) + assert form, "search modal form not rendered" + field = re.search(rb'On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/de/LC_MESSAGES/messages.mo b/changedetectionio/translations/de/LC_MESSAGES/messages.mo index 375b2274d..97b55ac1f 100644 Binary files a/changedetectionio/translations/de/LC_MESSAGES/messages.mo and b/changedetectionio/translations/de/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/de/LC_MESSAGES/messages.po b/changedetectionio/translations/de/LC_MESSAGES/messages.po index c4f44efe9..3e2c80248 100644 --- a/changedetectionio/translations/de/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/de/LC_MESSAGES/messages.po @@ -4625,18 +4625,18 @@ msgid "Search" msgstr "Suchen" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL oder Titel in '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL oder Titel" +msgid "URL, title or error text" +msgstr "URL, Titel oder Fehlertext" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Suchbegriff eingeben..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Suche nur in Gruppe '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.mo b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.mo index f00808747..930def266 100644 Binary files a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.mo and b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po index 6f8f98e7d..5830d204f 100644 --- a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po @@ -4563,18 +4563,18 @@ msgid "Search" msgstr "" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "" +msgid "URL, title or error text" +msgstr "URL, title or error text" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "" +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Searching in current group '%(title)s' only" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/en_US/LC_MESSAGES/messages.mo b/changedetectionio/translations/en_US/LC_MESSAGES/messages.mo index b781ca385..a2d710f35 100644 Binary files a/changedetectionio/translations/en_US/LC_MESSAGES/messages.mo and b/changedetectionio/translations/en_US/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/en_US/LC_MESSAGES/messages.po b/changedetectionio/translations/en_US/LC_MESSAGES/messages.po index cef38cb9f..303b12769 100644 --- a/changedetectionio/translations/en_US/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/en_US/LC_MESSAGES/messages.po @@ -4563,18 +4563,18 @@ msgid "Search" msgstr "" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "" +msgid "URL, title or error text" +msgstr "URL, title or error text" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "" +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Searching in current group '%(title)s' only" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/es/LC_MESSAGES/messages.mo b/changedetectionio/translations/es/LC_MESSAGES/messages.mo index 80d883b9e..28c6d0e76 100644 Binary files a/changedetectionio/translations/es/LC_MESSAGES/messages.mo and b/changedetectionio/translations/es/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/es/LC_MESSAGES/messages.po b/changedetectionio/translations/es/LC_MESSAGES/messages.po index 89f176bcf..67dbf427c 100644 --- a/changedetectionio/translations/es/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/es/LC_MESSAGES/messages.po @@ -4640,18 +4640,18 @@ msgid "Search" msgstr "Buscar" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL o título en '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL o título" +msgid "URL, title or error text" +msgstr "URL, título o texto de error" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Introduzca el término de búsqueda..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Buscando solo en el grupo '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/fr/LC_MESSAGES/messages.mo b/changedetectionio/translations/fr/LC_MESSAGES/messages.mo index 699937114..b2601b6bb 100644 Binary files a/changedetectionio/translations/fr/LC_MESSAGES/messages.mo and b/changedetectionio/translations/fr/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/fr/LC_MESSAGES/messages.po b/changedetectionio/translations/fr/LC_MESSAGES/messages.po index 61c3cc38a..90297900c 100644 --- a/changedetectionio/translations/fr/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/fr/LC_MESSAGES/messages.po @@ -4578,18 +4578,18 @@ msgid "Search" msgstr "Rechercher" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "" +msgid "URL, title or error text" +msgstr "URL, titre ou texte d'erreur" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "" +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Recherche uniquement dans le groupe '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/id/LC_MESSAGES/messages.mo b/changedetectionio/translations/id/LC_MESSAGES/messages.mo index 588c18d02..2999a50dd 100644 Binary files a/changedetectionio/translations/id/LC_MESSAGES/messages.mo and b/changedetectionio/translations/id/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/id/LC_MESSAGES/messages.po b/changedetectionio/translations/id/LC_MESSAGES/messages.po index f06c24dbf..5aba7855e 100644 --- a/changedetectionio/translations/id/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/id/LC_MESSAGES/messages.po @@ -4684,18 +4684,18 @@ msgid "Search" msgstr "Cari" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL atau Judul di '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL atau Judul" +msgid "URL, title or error text" +msgstr "URL, judul atau teks kesalahan" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Masukkan istilah pencarian..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Mencari hanya dalam grup '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/it/LC_MESSAGES/messages.mo b/changedetectionio/translations/it/LC_MESSAGES/messages.mo index 939ad1f79..45b1cc727 100644 Binary files a/changedetectionio/translations/it/LC_MESSAGES/messages.mo and b/changedetectionio/translations/it/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/it/LC_MESSAGES/messages.po b/changedetectionio/translations/it/LC_MESSAGES/messages.po index 9d3e7e4e1..46d6a38ac 100644 --- a/changedetectionio/translations/it/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/it/LC_MESSAGES/messages.po @@ -4565,18 +4565,18 @@ msgid "Search" msgstr "Cerca" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "" +msgid "URL, title or error text" +msgstr "URL, titolo o testo dell'errore" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "" +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Ricerca solo nel gruppo '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/ja/LC_MESSAGES/messages.mo b/changedetectionio/translations/ja/LC_MESSAGES/messages.mo index b13b7264f..9bf4bff4e 100644 Binary files a/changedetectionio/translations/ja/LC_MESSAGES/messages.mo and b/changedetectionio/translations/ja/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/ja/LC_MESSAGES/messages.po b/changedetectionio/translations/ja/LC_MESSAGES/messages.po index 6ae0e2923..b5d530fe1 100644 --- a/changedetectionio/translations/ja/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/ja/LC_MESSAGES/messages.po @@ -4596,18 +4596,18 @@ msgid "Search" msgstr "検索" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "'%(title)s' 内のURLまたはタイトル" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URLまたはタイトル" +msgid "URL, title or error text" +msgstr "URL、タイトル、エラーテキスト" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "検索語を入力..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "グループ「%(title)s」内のみを検索" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/ko/LC_MESSAGES/messages.mo b/changedetectionio/translations/ko/LC_MESSAGES/messages.mo index 732915ccc..61f8b89f2 100644 Binary files a/changedetectionio/translations/ko/LC_MESSAGES/messages.mo and b/changedetectionio/translations/ko/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/ko/LC_MESSAGES/messages.po b/changedetectionio/translations/ko/LC_MESSAGES/messages.po index dd4da9283..0fd64f150 100644 --- a/changedetectionio/translations/ko/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/ko/LC_MESSAGES/messages.po @@ -4573,18 +4573,18 @@ msgid "Search" msgstr "검색" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "'%(title)s'의 URL 또는 제목" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL 또는 제목" +msgid "URL, title or error text" +msgstr "URL, 제목 또는 오류 텍스트" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "검색어를 입력하세요..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "'%(title)s' 그룹 내에서만 검색" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/messages.pot b/changedetectionio/translations/messages.pot index 5eab84907..ab862cb23 100644 --- a/changedetectionio/translations/messages.pot +++ b/changedetectionio/translations/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: changedetection.io 0.60.4\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2026-09-12 15:41+0200\n" +"POT-Creation-Date: 2026-09-12 17:18+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -4562,18 +4562,18 @@ msgid "Search" msgstr "" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "" - -#: changedetectionio/templates/base.html -msgid "URL or Title" +msgid "URL, title or error text" msgstr "" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "" +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/pl/LC_MESSAGES/messages.mo b/changedetectionio/translations/pl/LC_MESSAGES/messages.mo index 303508c3b..63b839142 100644 Binary files a/changedetectionio/translations/pl/LC_MESSAGES/messages.mo and b/changedetectionio/translations/pl/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/pl/LC_MESSAGES/messages.po b/changedetectionio/translations/pl/LC_MESSAGES/messages.po index 872555891..5d74e8bc4 100644 --- a/changedetectionio/translations/pl/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/pl/LC_MESSAGES/messages.po @@ -4745,18 +4745,18 @@ msgid "Search" msgstr "Wyszukiwanie" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "Adres URL lub tytuł w „%(title)s”" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "Adres URL lub tytuł" +msgid "URL, title or error text" +msgstr "URL, tytuł lub treść błędu" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Wpisz szukane hasło..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Szukanie tylko w grupie '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo index 7c8dcf41c..f3c1f3a62 100644 Binary files a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo and b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po index a48e1afbb..ddb558a1a 100644 --- a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po @@ -4615,18 +4615,18 @@ msgid "Search" msgstr "Pesquisar" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL ou Título em '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL ou Título" +msgid "URL, title or error text" +msgstr "URL, título ou texto de erro" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Digite o termo de busca..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Buscando apenas no grupo '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/ru/LC_MESSAGES/messages.mo b/changedetectionio/translations/ru/LC_MESSAGES/messages.mo index 8a185022e..435e70b50 100644 Binary files a/changedetectionio/translations/ru/LC_MESSAGES/messages.mo and b/changedetectionio/translations/ru/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/ru/LC_MESSAGES/messages.po b/changedetectionio/translations/ru/LC_MESSAGES/messages.po index 56ed6676d..9517f2a36 100644 --- a/changedetectionio/translations/ru/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/ru/LC_MESSAGES/messages.po @@ -4693,18 +4693,18 @@ msgid "Search" msgstr "Поиск" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL-адрес или заголовок в формате «%(title)s»" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL или заголовок" +msgid "URL, title or error text" +msgstr "URL, заголовок или текст ошибки" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Введите поисковый запрос..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Поиск только в группе '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/tr/LC_MESSAGES/messages.mo b/changedetectionio/translations/tr/LC_MESSAGES/messages.mo index 0ce9c3e51..7bf5050ee 100644 Binary files a/changedetectionio/translations/tr/LC_MESSAGES/messages.mo and b/changedetectionio/translations/tr/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/tr/LC_MESSAGES/messages.po b/changedetectionio/translations/tr/LC_MESSAGES/messages.po index 5e8fc7dd5..d51247dac 100644 --- a/changedetectionio/translations/tr/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/tr/LC_MESSAGES/messages.po @@ -4620,18 +4620,18 @@ msgid "Search" msgstr "Ara" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "'%(title)s' içinde URL veya Başlık" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL veya Başlık" +msgid "URL, title or error text" +msgstr "URL, başlık veya hata metni" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Arama terimini girin..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Yalnızca '%(title)s' grubunda aranıyor" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/uk/LC_MESSAGES/messages.mo b/changedetectionio/translations/uk/LC_MESSAGES/messages.mo index 53a4d54aa..b797f3921 100644 Binary files a/changedetectionio/translations/uk/LC_MESSAGES/messages.mo and b/changedetectionio/translations/uk/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/uk/LC_MESSAGES/messages.po b/changedetectionio/translations/uk/LC_MESSAGES/messages.po index 42c74b864..224948c24 100644 --- a/changedetectionio/translations/uk/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/uk/LC_MESSAGES/messages.po @@ -4597,18 +4597,18 @@ msgid "Search" msgstr "Пошук" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL або Назва у '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL або Назва" +msgid "URL, title or error text" +msgstr "URL, заголовок або текст помилки" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "Введіть пошуковий запит..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "Пошук лише в групі '%(title)s'" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/zh/LC_MESSAGES/messages.mo b/changedetectionio/translations/zh/LC_MESSAGES/messages.mo index 2db46c6e6..f461a1af5 100644 Binary files a/changedetectionio/translations/zh/LC_MESSAGES/messages.mo and b/changedetectionio/translations/zh/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/zh/LC_MESSAGES/messages.po b/changedetectionio/translations/zh/LC_MESSAGES/messages.po index 9e1d9624d..9787510c0 100644 --- a/changedetectionio/translations/zh/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/zh/LC_MESSAGES/messages.po @@ -4571,18 +4571,18 @@ msgid "Search" msgstr "搜索" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "'%(title)s' 中的 URL 或标题" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL 或标题" +msgid "URL, title or error text" +msgstr "URL、标题或错误文本" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "输入搜索关键词..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "仅在分组「%(title)s」中搜索" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. " diff --git a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 6c3969519..705d3578d 100644 Binary files a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo and b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo differ diff --git a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po index 9e25d0540..575b08005 100644 --- a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po @@ -4574,18 +4574,18 @@ msgid "Search" msgstr "搜尋" #: changedetectionio/templates/base.html -#, python-format -msgid "URL or Title in '%(title)s'" -msgstr "URL 或標題 在 '%(title)s'" - -#: changedetectionio/templates/base.html -msgid "URL or Title" -msgstr "URL 或標題" +msgid "URL, title or error text" +msgstr "URL、標題或錯誤文字" #: changedetectionio/templates/base.html msgid "Enter search term..." msgstr "輸入搜尋關鍵字 ..." +#: changedetectionio/templates/base.html +#, python-format +msgid "Searching in current group '%(title)s' only" +msgstr "僅在群組「%(title)s」中搜尋" + #: changedetectionio/templates/edit/include_llm_intent.html msgid "" "On – every watch in this group uses the AI settings below, unless it fills in its own. "