From e45f87578b8fcfb70d68cc32ab63aceb1955bf78 Mon Sep 17 00:00:00 2001 From: skkzsh Date: Tue, 5 May 2026 12:51:54 +0900 Subject: [PATCH] i18n: Fix broken HTML tags and enforce dennis lint warnings in CI (#4116) --- .github/workflows/test-only.yml | 9 +-- .../blueprint/imports/importer.py | 8 +-- .../blueprint/imports/templates/import.html | 5 +- changedetectionio/blueprint/settings/llm.py | 2 +- .../settings/templates/settings.html | 4 +- .../blueprint/tags/templates/edit-tag.html | 1 + .../blueprint/ui/templates/edit.html | 1 + .../watchlist/templates/watch-overview.html | 3 +- changedetectionio/forms.py | 4 +- .../templates/_common_fields.html | 3 +- .../templates/edit/include_subtract.html | 1 + changedetectionio/translations/README.md | 52 +++++++++++++++ .../translations/cs/LC_MESSAGES/messages.mo | Bin 41180 -> 41063 bytes .../translations/cs/LC_MESSAGES/messages.po | 49 +++++++-------- .../translations/de/LC_MESSAGES/messages.mo | Bin 50644 -> 50521 bytes .../translations/de/LC_MESSAGES/messages.po | 59 ++++++++---------- .../en_GB/LC_MESSAGES/messages.po | 39 +++++------- .../en_US/LC_MESSAGES/messages.po | 39 +++++------- .../translations/es/LC_MESSAGES/messages.mo | Bin 72151 -> 72029 bytes .../translations/es/LC_MESSAGES/messages.po | 53 +++++++--------- .../translations/fr/LC_MESSAGES/messages.mo | Bin 37512 -> 37370 bytes .../translations/fr/LC_MESSAGES/messages.po | 51 +++++++-------- .../translations/it/LC_MESSAGES/messages.mo | Bin 22257 -> 22115 bytes .../translations/it/LC_MESSAGES/messages.po | 47 ++++++-------- .../translations/ja/LC_MESSAGES/messages.mo | Bin 89947 -> 89821 bytes .../translations/ja/LC_MESSAGES/messages.po | 49 +++++++-------- .../translations/ko/LC_MESSAGES/messages.mo | Bin 102951 -> 102821 bytes .../translations/ko/LC_MESSAGES/messages.po | 53 +++++++--------- changedetectionio/translations/messages.pot | 41 +++++------- .../pt_BR/LC_MESSAGES/messages.mo | Bin 70323 -> 70197 bytes .../pt_BR/LC_MESSAGES/messages.po | 51 +++++++-------- .../translations/tr/LC_MESSAGES/messages.mo | Bin 71271 -> 71154 bytes .../translations/tr/LC_MESSAGES/messages.po | 49 +++++++-------- .../translations/uk/LC_MESSAGES/messages.mo | Bin 84881 -> 84764 bytes .../translations/uk/LC_MESSAGES/messages.po | 49 +++++++-------- .../translations/zh/LC_MESSAGES/messages.mo | Bin 58132 -> 58013 bytes .../translations/zh/LC_MESSAGES/messages.po | 51 +++++++-------- .../zh_Hant_TW/LC_MESSAGES/messages.mo | Bin 44267 -> 44141 bytes .../zh_Hant_TW/LC_MESSAGES/messages.po | 49 +++++++-------- setup.cfg | 2 +- 40 files changed, 389 insertions(+), 435 deletions(-) diff --git a/.github/workflows/test-only.yml b/.github/workflows/test-only.yml index 2316d05d..4833ad9c 100644 --- a/.github/workflows/test-only.yml +++ b/.github/workflows/test-only.yml @@ -46,13 +46,10 @@ jobs: exit 1 fi - name: Lint .po files with dennis (warnings) - # W302 (unchanged) and W303 (html mismatch) are excluded due to - # high false-positive rate in this codebase: - # many msgstrs intentionally match msgid (units like "Mb", proper nouns), - # and many msgids contain literal ""/"<description>" text that isn't actual HTML. + # W302 (unchanged) is excluded due to high false-positive rate in this codebase: + # many msgstrs intentionally match msgid (units like "AI", "LLM", and proper nouns). run: | - output=$(dennis-cmd lint \ - --excluderules=W302,W303 \ + output=$(dennis-cmd lint --excluderules=W302 \ changedetectionio/translations/*/LC_MESSAGES/messages.po) echo "$output" warnings=$(echo "$output" | awk '/Total number of warnings:/ {print $NF; exit}') diff --git a/changedetectionio/blueprint/imports/importer.py b/changedetectionio/blueprint/imports/importer.py index aa4379dc..cbee9999 100644 --- a/changedetectionio/blueprint/imports/importer.py +++ b/changedetectionio/blueprint/imports/importer.py @@ -75,7 +75,7 @@ class import_url_list(Importer): self.remaining_data = [] self.remaining_data.append(url) - flash(gettext("{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped.").format(count=good, duration=time.time() - now, skipped_count=len(self.remaining_data))) + flash(gettext("{count} Imported from list in {duration}s, {skipped_count} Skipped.").format(count=good, duration=f"{time.time() - now:.2f}", skipped_count=len(self.remaining_data))) class import_distill_io_json(Importer): @@ -136,7 +136,7 @@ class import_distill_io_json(Importer): self.new_uuids.append(new_uuid) good += 1 - flash(gettext("{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped.").format(count=len(self.new_uuids), duration=time.time() - now, skipped_count=len(self.remaining_data))) + flash(gettext("{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped.").format(count=len(self.new_uuids), duration=f"{time.time() - now:.2f}", skipped_count=len(self.remaining_data))) class import_xlsx_wachete(Importer): @@ -212,7 +212,7 @@ class import_xlsx_wachete(Importer): logger.error(e) flash(gettext("Error processing row number {}, check all cell data types are correct, row was skipped.").format(row_id), 'error') - flash(gettext("{count} imported from Wachete .xlsx in {duration:.2f}s").format(count=len(self.new_uuids), duration=time.time() - now)) + flash(gettext("{count} imported from Wachete .xlsx in {duration}s").format(count=len(self.new_uuids), duration=f"{time.time() - now:.2f}")) class import_xlsx_custom(Importer): @@ -293,4 +293,4 @@ class import_xlsx_custom(Importer): logger.error(e) flash(gettext("Error processing row number {}, check all cell data types are correct, row was skipped.").format(row_i), 'error') - flash(gettext("{count} imported from custom .xlsx in {duration:.2f}s").format(count=len(self.new_uuids), duration=time.time() - now)) \ No newline at end of file + flash(gettext("{count} imported from custom .xlsx in {duration}s").format(count=len(self.new_uuids), duration=f"{time.time() - now:.2f}")) \ No newline at end of file diff --git a/changedetectionio/blueprint/imports/templates/import.html b/changedetectionio/blueprint/imports/templates/import.html index ed98c9e2..c383446b 100644 --- a/changedetectionio/blueprint/imports/templates/import.html +++ b/changedetectionio/blueprint/imports/templates/import.html @@ -7,7 +7,7 @@ <div class="tabs collapsable"> <ul> <li class="tab" id=""><a href="#url-list">{{ _('URL List') }}</a></li> - <li class="tab"><a href="#distill-io">{{ _('Distill.io') }}</a></li> + <li class="tab"><a href="#distill-io">Distill.io</a></li> <li class="tab"><a href="#xlsx">{{ _('.XLSX & Wachete') }}</a></li> <li class="tab"><a href="{{url_for('backups.restore.restore')}}">{{ _('Backup Restore') }}</a></li> </ul> @@ -45,6 +45,7 @@ <div class="tab-pane-inner" id="distill-io"> <div class="pure-control-group"> {{ _('Copy and Paste your Distill.io watch \'export\' file, this should be a JSON file.') }}<br> + {# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #} {{ _('This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, <code>config:selections</code>, the rest (including <code>schedule</code>) are ignored.')|safe }} <br> <p> @@ -103,7 +104,7 @@ {% for n in range(4) %} <td><select name="custom_xlsx[col_type_{{n}}]"> <option value="" style="color: #aaa"> -- {{ _('none') }} --</option> - <option value="url">{{ _('URL') }}</option> + <option value="url">URL</option> <option value="title">{{ _('Title') }}</option> <option value="include_filters">{{ _('CSS/xPath filter') }}</option> <option value="tag">{{ _('Group / Tag name(s)') }}</option> diff --git a/changedetectionio/blueprint/settings/llm.py b/changedetectionio/blueprint/settings/llm.py index 2658633e..db90046c 100644 --- a/changedetectionio/blueprint/settings/llm.py +++ b/changedetectionio/blueprint/settings/llm.py @@ -122,7 +122,7 @@ def construct_llm_blueprint(datastore: ChangeDetectionStore): except OSError as e: logger.warning(f"Could not remove LLM summary cache file {f}: {e}") logger.info(f"LLM summary cache cleared: {count} file(s) removed") - flash(gettext("AI summary cache cleared (%(count)s file(s) removed).", count=count), 'notice') + flash(gettext("AI summary cache cleared ({} file(s) removed).").format(count), 'notice') return redirect(url_for('settings.settings_page') + '#ai') return llm_blueprint diff --git a/changedetectionio/blueprint/settings/templates/settings.html b/changedetectionio/blueprint/settings/templates/settings.html index f7bb6719..ed05839b 100644 --- a/changedetectionio/blueprint/settings/templates/settings.html +++ b/changedetectionio/blueprint/settings/templates/settings.html @@ -24,8 +24,8 @@ <li class="tab"><a href="#fetching">{{ _('Fetching') }}</a></li> <li class="tab"><a href="#filters">{{ _('Global Filters') }}</a></li> <li class="tab"><a href="#ui-options">{{ _('UI Options') }}</a></li> - <li class="tab"><a href="#api">{{ _('API') }}</a></li> - <li class="tab"><a href="#rss">{{ _('RSS') }}</a></li> + <li class="tab"><a href="#api">API</a></li> + <li class="tab"><a href="#rss">RSS</a></li> <li class="tab"><a href="{{ url_for('backups.create') }}">{{ _('Backups') }}</a></li> <li class="tab"><a href="#timedate">{{ _('Time & Date') }}</a></li> <li class="tab"><a href="#proxies">{{ _('CAPTCHA & Proxies') }}</a></li> diff --git a/changedetectionio/blueprint/tags/templates/edit-tag.html b/changedetectionio/blueprint/tags/templates/edit-tag.html index bad2e7ef..bb084441 100644 --- a/changedetectionio/blueprint/tags/templates/edit-tag.html +++ b/changedetectionio/blueprint/tags/templates/edit-tag.html @@ -98,6 +98,7 @@ {% endif %} <div class="tab-pane-inner" id="filters-and-triggers"> + {# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #} <p>{{ _('These settings are <strong><i>added</i></strong> to any existing watch configurations.')|safe }}</p> {% include "edit/include_subtract.html" %} diff --git a/changedetectionio/blueprint/ui/templates/edit.html b/changedetectionio/blueprint/ui/templates/edit.html index 799133ae..8ea17b43 100644 --- a/changedetectionio/blueprint/ui/templates/edit.html +++ b/changedetectionio/blueprint/ui/templates/edit.html @@ -365,6 +365,7 @@ Math: {{ 1 + 1 }}") }} </fieldset> <fieldset class="pure-control-group"> {{ render_checkbox_field(form.sort_text_alphabetically) }} + {# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #} <span class="pure-form-message-inline">{{ _('Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below.')|safe }}</span> </fieldset> <fieldset class="pure-control-group"> diff --git a/changedetectionio/blueprint/watchlist/templates/watch-overview.html b/changedetectionio/blueprint/watchlist/templates/watch-overview.html index fe65b285..bae6a437 100644 --- a/changedetectionio/blueprint/watchlist/templates/watch-overview.html +++ b/changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -163,12 +163,13 @@ window.watchOverviewI18n = { data-confirm-type="danger" data-confirm-title="{{ _('Clear Histories') }}" data-confirm-message="{{ _('<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>') }}" + {# TRANSLATORS: Universally recognized; typically left as-is. dennis-ignore: W302 #} data-confirm-button="{{ _('OK') }}"><i data-feather="trash-2" style="width: 14px; height: 14px; stroke: white; margin-right: 4px;"></i>{{ _('Clear/reset history') }}</button> <button class="pure-button button-secondary button-xsmall" style="background: #dd4242;" name="op" value="delete" data-requires-confirm data-confirm-type="danger" data-confirm-title="{{ _('Delete Watches?') }}" - data-confirm-message="{{ _('<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>') }}" + data-confirm-message="{{ _('<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>') }}" data-confirm-button="{{ _('Delete') }}"><i data-feather="trash" style="width: 14px; height: 14px; stroke: white; margin-right: 4px;"></i>{{ _('Delete') }}</button> </div> diff --git a/changedetectionio/forms.py b/changedetectionio/forms.py index ff5abdfb..b8a0d530 100644 --- a/changedetectionio/forms.py +++ b/changedetectionio/forms.py @@ -728,7 +728,7 @@ class ValidateStartsWithRegex(object): raise ValidationError(self.message or _l("Invalid value.")) class quickWatchForm(Form): - url = StringField(_l('URL'), validators=[validateURL()]) + url = StringField('URL', validators=[validateURL()]) tags = StringTagUUID(_l('Group tag'), validators=[validators.Optional()]) watch_submit_button = SubmitField(_l('Watch'), render_kw={"class": "pure-button pure-button-primary"}) processor = RadioField(_l('Processor'), choices=lambda: processors.available_processors(), default=processors.get_default_processor) @@ -843,6 +843,7 @@ class processor_text_json_diff_form(commonSettingsForm): conditions_match_logic = RadioField(_l('Match'), choices=[('ALL', _l('Match all of the following')),('ANY', _l('Match any of the following'))], default='ALL') conditions = FieldList(FormField(ConditionFormRow), min_entries=1) # Add rule logic here + # dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 use_page_title_in_list = TernaryNoneBooleanField(_l('Use page <title> in list'), default=None) history_snapshot_max_length = IntegerField(_l('Number of history items per watch to keep'), render_kw={"style": "width: 5em;"}, validators=[validators.Optional(), validators.NumberRange(min=2)]) @@ -991,6 +992,7 @@ class globalSettingsApplicationUIForm(Form): open_diff_in_new_tab = BooleanField(_l("Open 'History' page in a new tab"), default=True, validators=[validators.Optional()]) socket_io_enabled = BooleanField(_l('Realtime UI Updates Enabled'), default=True, validators=[validators.Optional()]) favicons_enabled = BooleanField(_l('Favicons Enabled'), default=True, validators=[validators.Optional()]) + # dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 use_page_title_in_list = BooleanField(_l('Use page <title> in watch overview list')) #BooleanField=True # datastore.data['settings']['application'].. diff --git a/changedetectionio/templates/_common_fields.html b/changedetectionio/templates/_common_fields.html index 278e6098..696185c2 100644 --- a/changedetectionio/templates/_common_fields.html +++ b/changedetectionio/templates/_common_fields.html @@ -34,6 +34,7 @@ </tr> <tr> <td><code>{{ '{{watch_title}}' }}</code></td> + {# TRANSLATORS: dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #} <td>{{ _('The page title of the watch, uses <title> if not set, falls back to URL') }}</td> </tr> <tr> @@ -159,7 +160,7 @@ <div class="pure-form-message-inline"> <p> <strong>{{ _('Tip:') }}</strong> {{ _('Use <a target="newwindow" href="%(url)s">AppRise Notification URLs</a> for notification to just about any service!', - url='https://github.com/caronc/apprise')|safe }} <a target="newwindow" href="https://github.com/dgtlmoon/changedetection.io/wiki/Notification-configuration-notes">{{ _('<i>Please read the notification services wiki here for important configuration notes</i>')|safe }}</a>.<br> + url='https://github.com/caronc/apprise')|safe }} <a target="newwindow" href="https://github.com/dgtlmoon/changedetection.io/wiki/Notification-configuration-notes">{# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #}{{ _('<i>Please read the notification services wiki here for important configuration notes</i>')|safe }}</a>.<br> </p> <div data-target="#advanced-help-notifications" class="toggle-show pure-button button-tag button-xsmall">{{ _('Show advanced help and tips') }}</div> <ul style="display: none" id="advanced-help-notifications"> diff --git a/changedetectionio/templates/edit/include_subtract.html b/changedetectionio/templates/edit/include_subtract.html index 5a5cc77f..528fa5be 100644 --- a/changedetectionio/templates/edit/include_subtract.html +++ b/changedetectionio/templates/edit/include_subtract.html @@ -9,6 +9,7 @@ xpath://body/div/span[contains(@class, 'example-class')]", {% if '/text()' in field %} <span class="pure-form-message-inline"><strong>{{ _('Note!: //text() function does not work where the <element> contains <![CDATA[]]>') }}</strong></span><br> {% endif %} + {# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #} <span class="pure-form-message-inline">{{ _('One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used.') | safe }}<br> <span data-target="#advanced-help-selectors" class="toggle-show pure-button button-tag button-xsmall">{{ _('Show advanced help and tips') }}</span><br> <ul id="advanced-help-selectors" style="display: none;"> diff --git a/changedetectionio/translations/README.md b/changedetectionio/translations/README.md index dd14cc5b..66718ccf 100644 --- a/changedetectionio/translations/README.md +++ b/changedetectionio/translations/README.md @@ -223,6 +223,58 @@ Babel auto-discovers the new language on subsequent runs. --- +## Dennis linter + +We use [mozilla/dennis](https://github.com/mozilla/dennis) to enforce technical correctness in `.po` and `.pot` files. +See the [Table of Warnings and Errors](https://dennis.readthedocs.io/en/latest/linting.html#table-of-warnings-and-errors) +for the full list of rules. + +### Running the linter locally + +To match the CI checks, run the following commands: + +```bash +# Check for errors only (always enforced) +dennis-cmd lint --errorsonly changedetectionio/translations/ + +# Check for warnings (excluding W302 unchanged translations) +dennis-cmd lint --excluderules=W302 changedetectionio/translations/ +``` + +### Common problems and resolutions + +#### HTML tag mismatch (`W303`) + +The `W303` rule ensures that HTML tags in the `msgstr` match the `msgid`. This is crucial for catching broken markup (e.g., missing closing tags). + +##### Handling intentional deviations and false positives + +Some W303 warnings are intentional or result from upstream false positives. +Use the `dennis-ignore: W303` comment in the source files (templates or Python code) within a `TRANSLATORS` comment to suppress these warnings. +This ensures the ignore instruction is extracted into the `.po` files. + +- **CJK italic policy**: When replacing `<i>` with locale-conventional quotation marks, tags will no longer match. +- **Upstream false positive**: Dennis misinterprets certain HTML tags (e.g., `<title>`) within `msgstr`. See https://github.com/mozilla/dennis/issues/213. + +**Examples in Jinja2 templates:** + +```jinja +{# TRANSLATORS: CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #} +<p>{{ _('These settings are <strong><i>added</i></strong> to any existing watch configurations.')|safe }}</p> + +{# TRANSLATORS: dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #} +<td>{{ _('The page title of the watch, uses <title> if not set, falls back to URL') }}</td> +``` + +**Example in Python source:** + +```python +# dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 +use_page_title_in_list = BooleanField(_l('Use page <title> in watch overview list')) +``` + +--- + ## CI linter A GitHub Actions job (`lint-template-i18n`) checks for adjacent `{{ _(...) }}` calls on the same line diff --git a/changedetectionio/translations/cs/LC_MESSAGES/messages.mo b/changedetectionio/translations/cs/LC_MESSAGES/messages.mo index 7a7d9394b031860f9a99248133458eae69a223b7..c3a0539d1e3fc8aab2f3ba609e4cdb34828e0ec1 100644 GIT binary patch delta 8865 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 F_&<Lgfl>ef delta 8947 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 diff --git a/changedetectionio/translations/cs/LC_MESSAGES/messages.po b/changedetectionio/translations/cs/LC_MESSAGES/messages.po index 5b4d3d71..5ceb4607 100644 --- a/changedetectionio/translations/cs/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/cs/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "Importuje se prvních 5000 URL adres, další lze načíst opakovaným i #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importováno ze seznamu za {duration:.2f}s, {skipped_count} přeskočeno." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} importováno ze seznamu za {duration}s, {skipped_count} přeskočeno." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "Strukturovaný JSON text je neplatný, byl poškozen?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importováno z Distill.io za {duration:.2f}s, {skipped_count} přeskočeno." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} importováno z Distill.io za {duration}s, {skipped_count} přeskočeno." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -192,22 +192,18 @@ msgstr "Chyba při zpracování řádku {}, zkontrolujte že všechny typy dat v #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} importováno z Wachete .xlsx za {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} importováno z Wachete .xlsx za {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} importováno z vlastního .xlsx za {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} importováno z vlastního .xlsx za {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Seznam adres URL" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX a Wachete" @@ -241,6 +237,7 @@ msgstr "URL, které neprojdou validací, zůstanou v textové oblasti." msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Nakopírujte a vložte exportovaný Distill.io soubor, měl by být ve formátu JSON." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -368,8 +365,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -393,14 +390,6 @@ msgstr "Globální filtry" msgid "UI Options" msgstr "Možnosti uživatelského rozhraní" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Zálohy" @@ -1213,6 +1202,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1919,6 +1909,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2176,6 +2167,7 @@ msgstr "Vymazat historie" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>Opravdu chcete vyčistit historii u vybraných položek?</p><p>Tuto akci nelze vzít zpět.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2189,8 +2181,8 @@ msgid "Delete Watches?" msgstr "Smazat sledování?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>Opravdu chcete smazat vybraná sledování?</p><p>Tuto akci nelze vzít zpět.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>Opravdu chcete smazat vybraná sledování?</strong></p><p>Tuto akci nelze vzít zpět.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2689,10 +2681,6 @@ msgstr "Prázdná hodnota není povolena." msgid "Invalid value." msgstr "Neplatná hodnota." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Skupina / Značka" @@ -2928,6 +2916,7 @@ msgstr "Spojit všechny následující položky" msgid "Match any of the following" msgstr "Přiřaďte kteroukoli z následujících možností" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "V seznamu použijte stránku <title>" @@ -3027,6 +3016,7 @@ msgstr "Aktualizace UI v reálném čase" msgid "Favicons Enabled" msgstr "Povolit favikony" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "Použijte stránku <title> v přehledu sledování" @@ -3416,6 +3406,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "UUID monitoru." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3552,6 +3543,7 @@ msgstr "Více zde" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3913,6 +3905,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/de/LC_MESSAGES/messages.mo b/changedetectionio/translations/de/LC_MESSAGES/messages.mo index 1f74db27d49055ffe19ceda49131e4ed4b5b0ce5..58bd50e62cf4bb3ea118307b00434d0ce3046b12 100644 GIT binary patch delta 9283 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 delta 9405 zcmYk>34G31zQ^%HLS$cvkPxvX5+TGAlF-DO*b=pc3PA*^eP8QgG@`1uGzcn9M_N=> z#WI6?t<$U37Nte2V|dk4<<e=3(wh7E=KSxS+gD$GpWk`@&sl!wcm4^zvcm1+>u#>U z2e}s;{%K#;n0k0IP|?5tS=rbaPr^4a6*pifyo^a$yNNLo_#*n_bj-&;;Y7UW#6u&E zDIq?I9dLM*F|~|wne{Z>=y)GJ@I$PF2T=<;hfVQ5GN%b9&~u3xfSpm#^~V^Tf(&d* z9CxEOa1yKG=je?Wa2WHOYcx{nNRGA(S%_M|VhqI+9Eba`JJw?sC22IWIWrUWd<nM1 zy%>i#a5e@uGbRg{V{7~e>iL?n#$+?UX-=a$zJ~6&29vQEJ@7mR;}ulOAD}YPthwEB z2Ko@sMaDJ-*cSI7YcMy_2mM>vjn>0(;^F9ONMj)lHfOe?Fa8(u9rG2|#;R<`59^|K z9*y-e33UWRP#efc)xcE8#i$LeL2ulMez?u)uZSc6TG?SbI9_uaHShz}z`o>D1BN@s zIlh2eXa@RWw&MiUg6E^gU5oy>6>H*dr2fnaC%)5?{OiHr>Cgf^TNzUWTVXFuL@#_5 zwe!{31<NoDzsF28@x}~<eyD|&V>_%s9mNkAgy9qbr)T0(@o*OnO)wR;lLe?6Sb?hQ z)u;h?VG15Xo$*st$|Kv@&zn0Yp+EiUsErK45FCX%f_bQg7a(<STxB$L)}Npj@(6VV zRamwsHoy)TgId^V$8o64O+*#vJXBS$MoqXK$KWxng^{E~*DnbJFcq24WnQGA6=kEU zaxV774XA5#9aTh$33lh5v2tQm#^yQka#Y5OQRD1IO?2M*{01r`51jZ32I>A+Yj4k@ z4l1>=s1*;!Je+_U_&h4*|BZq8s}p;W9xc!hwV>L_%hW{TW{gIScM5Cb6;x*L<0Rex z$25{LFVUD8Scc;<n9Cl4i;(&>rKpL{q9(e8O6e^pzK2@iGhBdG8B}M!2({o9SQodT zHhKVEAvCVj=!n0e9!wyhU`;wI)$>sU7vhV!3VAh{f1pz8#}9;h7=l6A7F8>0$OSQd zkUg1Kun``_2KY@U@~@pdr9(yN`GWmo0%~E&s5jjJRLbUHG%i79Vy6@D#T?>qQ43B^ zv8JO^J_w^QAC<8+sA6BA;<6oObZCP2P&@hvb?pwJuG47@$IGacK1L1XmTG@Scse#g z>eZy6YG4*B<#SOBUWdx$Ce(aoE*eVF`xu5-Q6D@(t-NYyJ3wtzN?V~)+zz#Xbf-VV zaR6%KA*iDqhLo3?guF7$yQqv`L2cA^hekS$pHN>&>SBM$^uY+?LezxYaWEc6EjXyF zU07FCO$<k!@rS4*_yHT@Bh=38bh8VNzzX6hWImVqhDI74_pq{fy4x2@8rGqII4bqC zu{IW?YGW5FL#I$jbs1yu7RF*g5Bpq4)c6CjDsI6jEUk=P#(YdeEB^!|(T%5hX_**| zz!9h;aiNarHRPh0a#RsrN2T%}>K6R!7(`mD5w}G3w?l2PKl1J|d6>%lW(y4!*>|WN z-bW8~?`aHcGCrvLKLBgsQq;gJF$dS7C;k(a`rn<{vzNUsHBrxZL_OC9wc$SK(!|SX zRLAwGRKJC)@*~(EPovH<thYV;PUuEF8KZDI>hluR4iBS_=nK?%w~%*|sn*ASo{Gxk zfIiOspF)SO$s*^2ji?OlLvK8S%FJohi{}~!pl@GW-QlRJ&O%K%7PYYg$70kgxEwX^ zA@s!)eaXKjK1YXAdlxm)&!`8zGHgnNP!lvjtvn8u(q5>E`k}@di9R?Vbu@*jac`p* z{LqQ3WZLWO<)WdL`C~9PL0zvT%)<$&qdAYd4VO`8_!DY@&(I&;`q}GS6E#sJ`e6d< z^X?drgD?UMQ44czr=cSI2(|MkSd9K$YVM~gN2T;2YN1~{{Xe26_yctfeJB(iRRpRQ znxit6fuZ=a6Bl43;xcTa`+tf?V>*6t9`GGtGZBL-q7-a^S;#BG%)yy>1Q%iaK%1F8 zs2zQRI+`!BCSFEm@E%qkE$S8RHAqFw`KQtdpracqwS%w~=AepX4Z7o2)Q<m*#kdzW zVESPD!z%|{60bz<{0Oo`a~Xs25Bw5qX4yCCEv(P{rqd96Plw@g;#ZLyXL=0fir`x0 zUvrcHBxA};_Bt&<?f3vH^+z!X&!Dd7-%$&{fy&5j)WYtgYQl3E`L9i*E)CfV^<Wz6 z%=@BtJP|W+0Y>7dsN#EwO7RoaL_XOzlY!_(+z7Rh7N~{Bqi#nMhGAMZ`PUb7>F9{# zQD;?-nqU`3<33Em@0`!;54T6t1Z&aX8uh(2)b}#5E)GU*U@8Wp3-$b3)NOiqIQdt~ zj?$5cUpgQ7jIh5RN1}Gv7xQrx@&nMEL5|P(<=F3!MNKddWAJrUmG8$`yo_zpeWd+7 z5t|X`x@ai%t59cNj=BvGu^!eMWsf2rHDNzwEVCVTR5eE1d+moxZ7OOZeNhX^L7nw$ z*bYma_$)Rhc3q>PlzHUZ>i0*TRbA8sjW7kHQAIZ1>7R*8@qBc{H!%b^qH1Ih>iMrx z8N7iS_Yu0`zmV}=#%+vUu_vbSK^U&YT-5b@h|17&Cl1cDXWAGwL2D;|0d;-*qB~}x zHkOS_^%&Iit5G$vx$<)tzeH9xxX;c5hft~f7`5UHr~$8H1H6uUKU5iO?|o}jCUQ_m zHV-3kJu1Zqu^L{(D7=YUn9n#C%lxJmjWisM3Aht=R@YGjhm5yH7LSU%p<Y-cP-i^_ zBX9|}!FNz8|Jv~`s>q+CG8srE&#uCeqDupnzHEO6?7^<Yk1-XKC)n$^5LHCw_y+FB zLhL$`O2;#}8?z?aajH+Y6ZS=&^+@!?G1wGmU^s4`%=stMI7Ekb{0r8=W>f4A+F*0y zG|a%6s29gc48?1xojpYzneSA4zeDjjaZBWNZ+=1@VUKBcL%p#P@yu!D|00bIbZ{(Y z;&eOU1&k)Xg}O%mGwjY1u?z8HT#qM_x->7%w6El&7(x6L3ovY!J?k>Z9oUopkDU0K zi-ykBZMI!$eM}~vj_J4?1Mo3+!WwgU2Vf6Wya81MUtt#B##l_5YyT2z0>%?>LVx@W z+u~IWL08~BJ3)+Nl4EbjZ1m*8NvHwlI2Jnn8_<vbGE_?UppNhY>iS;AM7)cwu*rOz z;X%lFE;HUX%v{t?mphiAcDB>;2-YS30=1AksOO)cipg_<-ElPPnr2}z&cPP=25Mo4 zk-|5p(3|;9+(J815{~49KG+yPz(sf-DFf5*6+7Wc>_B`GwKHEHs)cE&n#o2jumF|0 zVyuUys3JUqTF`Oy)BS%y<0X8Ks`jCDYNg9iJ6w&m@olVw2hj`9p$7gIRsBy;3#hi( zW+DzX-f-0OD^L>`qsBdnuF*6u($E9#msq<v_C-xN1U1n#RAyG;tGE|cMD71%t2`5R zWLc>3@-Y%;VhnD=p?C_ZXA{1Z{A;JhOYNI)D{6qRuqNJi;%BI;_GMP>C=r8jEUL)n zp$8VCig7jS`&&`Z?Zuw>Hw;IA?j{${#1)XT#x%Ckp#e^#8=iCGi>NcaiW>M9R>NQM zG(N)!JhjXg+fCGS&yY16uR`hxS78Nyi=47qz1+U4{amlvzf|smTEKGD%GWsYHYeVN z-t-^Cb@&;o$Z}TL+L(em+hy1T_c`%1CywDgts0t&y|EBg1Fj1+s?+!$bMZ%1iZfT* zoiD^t;$^6#DMNRxz<B%%rr=#{g3aEr{h6remtcD=LLK!PY={@Jo9_Q38lH3{ud;8Z z?x+XnV*)P44R{DOVE@&2<zrCAISchBT!q@mXQ=OAKpoXpC%)nMBdR8T!8*GC9&7AG z5vY5dg-XptRBgP1&9Dr$)6cLf`mD9L!XI^X%~1<zi<KKfy&t+`EV@uHr1w!7J&xhb zZ?4kNN}pi_R^fmZH$tU48nvSqPMm<ccFCBI1F$=8LDkL;48TXoJIZ(z+5Q65^Cj3^ z&!I~@^ncU-VY3bDY)Y^`9>&Rd1^Z!ou`Rk1)Bros3%^D!@H+0pyBLh6>-mit_oIq0 zgma9*IBbNO8_2&>JDm<q{Fd{<Q4ArzfkF5bQ_**$y-pcemv}P{#{F1%BqjEbVE(8$ z1(UD~cEnd44`BlF;}Y`kO(SlTT|g2}C(cG6Jd4`dRji9Qu@3$VbwqVG+f0RHAaO_R ziy5eeZ9#wh8JnWp7CT-njwNpEqS2GaW>gW~L=Ai&RU1E}7Bb^4o6^Oo;#!X}_%`bK zPo4gAm`eN&YT~f1cHCIxx|uepqnV4d(6x$28yfDVwm3SV8}Slsi3O;Y??>(MJB+{w zsG|#b+a5_W>Ij!(6z;^DcpjCpn^+&8qcUEvtg;4NCYpxMx;N@fa#1VXgvq!EHSs-c zh|f_q5%G?-4Tcf-KpoX+RP|3ly^t27GFygP$POnyfj-Ldr!@Td;1WjQE%Zf?Kil^~ zFlwM?s0lK05e`8;cL}xAo2ZF?Lmg3-ZT5TKSc|w7sy4dg94x}>%x}EQ?aqR*@&$sL zC>iTvH&lj3VQrj;ns|-lR_sE&3w0z9oc_>v?VlB+Q5jl}AK*4rhWo$A`KyS=(}=)z zs0S-h#d8+5@@uFJ{epVlZM%KG1vVhgaN^0RH{EKC#>0-^V`F099d<+UsChDWkpCze zFVoQ<*P>GUJub)Go%W0O(2F?WeOo+XsEM1R2d1G0%*3uZ0p0LJ)WR!JHE{x8zze7v z3fe{f-DyPbvMFtb$B8>&C_Y7fA(*^r;DM-}Y{XW01Xb1dF|-Pc+il+;Q6JhLW+kX2 z`2s)2-*6Nj+hhL{tC8y?e$vsg0X0$3UV9B+MD2JJs`|@OJ2{A2@W)sU&p4jPM#Pt} zDn3Qk&L57U754e|7)gI8)VQu(8Y5`T!eqRNH86k|xl&vgmC8g^@pVFP9O(3qL{H)| zs0B_&W#kp-^Uc_qxD-{y*HO>?hDmzI)!1+U^xG9xm9L`)D04iDn&3P1!P^*%zo3pN z;(&cV8C45IQJEO!^uLOk#P47<{u6s**g<`d^UtHPjE<$4g<gNLzq^gbaN=7Sg4O<N zf0L<?8fXy4<04GKJ=hT+VmoYc$Yv}TXA#fG_WB%E^wEcr`AsH`2{;?|;0;uYha9p0 zA8-tY5`T_L-5pHF#~6mG|6${7tW8{wE%6BIDDOG`iW>JhR!6V@B>w|w1k%t4d8ial zLlwz9R56vJs`wpDz|T=f;eOP<9|BPWMxkn@1#04WtcOXMhFQ20OHmtXevJI<Iwc>o zE6+iFFdH>N0S4hZ490TQM2E5RKBH240rfp^?yf(EqH3lYY9Vb=<8?w`?1g%6$Z?mw zPUGp&eV&Bc;Z|&eUtvS^JYnB>v8YV+K|MbQbse{33;Y1Jz;AIN-ar*!`;&H|h1iw& zD8`~&zf<-MTVj1WdZQ-HN1gfW*cso&JiLQVG2?Ic`Pmpw{3b?VMN!YjzZW%(tXp)h z$)%#BG2TVfn&cF{7kRc~dQ?we&-@uP^CwP>%b!y5*EZ8aDx!KH4XC(2EYRCMDX#U{ zqMuIGD(W>Zuqb3)ga6-=XoIEWT30qI_K(}<R&jqq<0?gyC#)<An6$NM@1zkGK9idU zd3F2u1g#f83@-{VP4MZGHzRla^t}AhvnG$L$SHlRR>hNwZB?rc%%7Pzv8e1ov~5*< fap2PbEu&@8#S``acL@V+qx;EJJAJ{)i&g#yT9!l? diff --git a/changedetectionio/translations/de/LC_MESSAGES/messages.po b/changedetectionio/translations/de/LC_MESSAGES/messages.po index 62e67247..4e7c59d0 100644 --- a/changedetectionio/translations/de/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/de/LC_MESSAGES/messages.po @@ -162,8 +162,8 @@ msgstr "Es werden 5.000 der ersten URLs aus Ihrer Liste importiert, der Rest kan #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} aus Liste importiert in {duration:.2f}s, {skipped_count} übersprungen." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} aus Liste importiert in {duration}s, {skipped_count} übersprungen." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -175,8 +175,8 @@ msgstr "JSON-Struktur sieht ungültig aus, ist sie beschädigt?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} aus Distill.io importiert in {duration:.2f}s, {skipped_count} übersprungen." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} aus Distill.io importiert in {duration}s, {skipped_count} übersprungen." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -194,22 +194,18 @@ msgstr "Fehler bei der Verarbeitung von Zeile {}, prüfen Sie, ob alle Zelldaten #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} aus Wachete .xlsx importiert in {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} aus Wachete .xlsx importiert in {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} aus benutzerdefinierter .xlsx importiert in {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} aus benutzerdefinierter .xlsx importiert in {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URL-Liste" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX & Wachete" @@ -247,6 +243,7 @@ msgstr "" "Kopieren Sie Ihre Distill.io-Watch-„Export“-Datei und fügen Sie sie ein. Dabei sollte es sich um eine JSON-Datei " "handeln." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -374,8 +371,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -399,14 +396,6 @@ msgstr "Globale Filter" msgid "UI Options" msgstr "UI-Optionen" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Backups" @@ -1229,6 +1218,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "Diese Einstellungen werden zu allen vorhandenen Überwachungskonfigurationen <strong><i>hinzugefügt</i></strong>." @@ -1339,7 +1329,7 @@ msgid "" "watches will be removed from it.</p>" msgstr "" "<p>Möchten Sie wirklich alle Beobachtungen aus der Gruppe <strong>%(title)s</strong> entfernen?</p><p>Das Tag bleibt " -"erhalten, aber die Beobachtungen werden daraus entfernt." +"erhalten, aber die Beobachtungen werden daraus entfernt.</p>" #: changedetectionio/blueprint/tags/templates/groups-overview.html msgid "Unlink" @@ -1960,6 +1950,7 @@ msgstr "" "Gut geeignet für Websites, auf denen nur Inhalte verschoben werden und Sie wissen möchten, wann NEUE Inhalte " "hinzugefügt werden. Vergleicht neue Zeilen mit dem gesamten Verlauf dieser Überwachung." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2225,6 +2216,7 @@ msgstr "" "<p>Möchten Sie den Verlauf für die ausgewählten Elemente wirklich löschen?</p><p>Diese Aktion kann nicht rückgängig " "gemacht werden.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2238,10 +2230,10 @@ msgid "Delete Watches?" msgstr "Überwachungen löschen?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" -"<p>Möchten Sie die ausgewählten Überwachungen wirklich löschen?</strong></p><p>Diese Aktion kann nicht rückgängig " -"gemacht werden.</p>" +"<p><strong>Möchten Sie die ausgewählten Überwachungen wirklich löschen?</strong></p><p>Diese Aktion kann nicht " +"rückgängig gemacht werden.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2740,10 +2732,6 @@ msgstr "Leerer Wert nicht zulässig." msgid "Invalid value." msgstr "Ungültiger Wert." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Gruppe / Label" @@ -2980,9 +2968,10 @@ msgstr "Passen Sie alle folgenden Punkte an" msgid "Match any of the following" msgstr "Entspricht einer der folgenden Bedingungen" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" -msgstr "Verwenden Sie Seite <Titel> in der Liste" +msgstr "Verwenden Sie Seite <title> in der Liste" #: changedetectionio/forms.py msgid "Number of history items per watch to keep" @@ -3079,9 +3068,10 @@ msgstr "Echtzeit-UI-Updates aktiviert" msgid "Favicons Enabled" msgstr "Favicons Aktiviert" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" -msgstr "Verwenden Sie die Seite <Titel> in der Übersichtsliste der Beobachtungen" +msgstr "Verwenden Sie die Seite <title> in der Übersichtsliste der Beobachtungen" #: changedetectionio/forms.py msgid "API access token security check enabled" @@ -3133,7 +3123,7 @@ msgstr "RSS-Inhaltsformat" #: changedetectionio/forms.py msgid "RSS <description> body built from" -msgstr "RSS-<Beschreibung>-Körper erstellt aus" +msgstr "RSS-<description>-Körper erstellt aus" #: changedetectionio/forms.py msgid "RSS \"System default\" template override" @@ -3470,6 +3460,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "Die UUID der Überwachung." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3606,6 +3597,7 @@ msgstr "Mehr hier" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3969,6 +3961,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po index aa094f98..8a883250 100644 --- a/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/en_GB/LC_MESSAGES/messages.po @@ -160,7 +160,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -173,7 +173,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -192,22 +192,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr "" @@ -241,6 +237,7 @@ msgstr "" msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -366,8 +363,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -391,14 +388,6 @@ msgstr "" msgid "UI Options" msgstr "" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "" @@ -1211,6 +1200,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1915,6 +1905,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2172,6 +2163,7 @@ msgstr "" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "" @@ -2185,7 +2177,7 @@ msgid "Delete Watches?" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2683,10 +2675,6 @@ msgstr "" msgid "Invalid value." msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "" - #: changedetectionio/forms.py msgid "Group tag" msgstr "" @@ -2922,6 +2910,7 @@ msgstr "" msgid "Match any of the following" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "" @@ -3021,6 +3010,7 @@ msgstr "" msgid "Favicons Enabled" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "" @@ -3410,6 +3400,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3546,6 +3537,7 @@ msgstr "" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3907,6 +3899,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/en_US/LC_MESSAGES/messages.po b/changedetectionio/translations/en_US/LC_MESSAGES/messages.po index 1c6b87c0..5a46074e 100644 --- a/changedetectionio/translations/en_US/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/en_US/LC_MESSAGES/messages.po @@ -160,7 +160,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -173,7 +173,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -192,22 +192,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr "" @@ -241,6 +237,7 @@ msgstr "" msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -366,8 +363,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -391,14 +388,6 @@ msgstr "" msgid "UI Options" msgstr "" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "" @@ -1211,6 +1200,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1915,6 +1905,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2172,6 +2163,7 @@ msgstr "" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "" @@ -2185,7 +2177,7 @@ msgid "Delete Watches?" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2683,10 +2675,6 @@ msgstr "" msgid "Invalid value." msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "" - #: changedetectionio/forms.py msgid "Group tag" msgstr "" @@ -2922,6 +2910,7 @@ msgstr "" msgid "Match any of the following" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "" @@ -3021,6 +3010,7 @@ msgstr "" msgid "Favicons Enabled" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "" @@ -3410,6 +3400,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3546,6 +3537,7 @@ msgstr "" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3907,6 +3899,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/es/LC_MESSAGES/messages.mo b/changedetectionio/translations/es/LC_MESSAGES/messages.mo index 5a57c19c8850635cb1a0e7ef8cadcf79c908241c..7c22f458105385cbd3ca3a4da5dd68ac7effd728 100644 GIT binary patch delta 12016 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 ItZ$0rzYYKz(*OVf delta 12151 zcmYM)2Y6LQ8piQ+LwZ6&NFWsmfrJ1djTTZUp@b4xOh9^FO2X1ang%%_DhjATPz04C zO@qop&?pFk0wP5rQlp^AQbiC%nxOlCGiRUmasACV_nb4|d^2<IMfc1W_midW_Sx$0 zuUY){lbdBlVN|H1|Nj-0Xjz>IYhec*fj;;iw#8D+!rPdRsY#X<jpMKoU%@JP4`c8l z24bD$%IDZt5{+tfw8FmF6?Nkp9E(*`O#C!1BmNJj;mlOa3c)gLg@>>PdNwr!Mxifp zG<soU48x|ViRNMh%jV%U>d~<XGw~zT4YyE<JwV;y*UYjSVmxZ#Jjc<fip;=)_yT(1 zdGy08H~{~^w)j|cli*@ZXMF2*8p`Y_M&MQCZ_A^FWsSxR?1*bH2(Ms${1bIwbW39^ zq`FofvKrR2I2AWzAB?AL6v>)}x~~*%{%0NHAFa`YI%)<T&=XgqJHCq<_yKC|uAnM( zA8VkCg_ohIJ<x=IsG<d^iY>sm@nal;y?B^Eewso38`0QD2i37|qHc&|9dtoYY>R`i zHm<<BxC7(yN34q8?7#%9i8Zl324H_w#R{<&7NM4O8ES$hS=3)M+DwPsjhfj}?1HCp z5Z0qSxi}jK;5VqXZPdmL)B<&1M^xh7F%J7<Eu4)ScqM9_e>?87X(+=ZPRGxv8Qnt7 zK+~6jsF~G94bU9*pll4rJdDLrPP_nh-6~WfAD}lL!>)J+bvo?$b|!(Qm`z7VjKml5 zAGj9z+q%s^Mqvvs>V<EkN_Y#E@O{*#^=faHG7GB{Pr}Cdyc2Im4ZH`Lm~DMaL!0a@ zM&WtX1NF9{2vz`UkMzJ~d<r#i3F^Adj-R6{au_w!GZ=~&QA_m~YGS?|r3M&>2|E8h zXegs1)Icww2HuRE9P1`(4I6ec56D5C_kSYqB5NG#6s<&eJcVoz>kJlPRE}lk<MXJ` zPotLREY@Ir>lYef=;~}TjzB#)6(`~doQ%hD1a@U-hTtajz&)tVbpSPy?@=?oh_%tJ ztJ%zTQSX6&p%;FM_D~uJX*9xwZpJ>S44*}9zE_=i1x_H|h+3-1Tr)r#DuF(z`wGw- zr#SIU)Lxj6b#R3f@62`1|4}+Lqlc(n9@O1zzIc3$csh>612`Cydzd%dtEfag*{Pmb z4|SRvIdLXxrtMJ^>4t9DAK%15|DgUF_&yyvMgcv|+Q#5G;sngV<@h9?zyj<_R?%3B zNq7u3kb9mvZvLnNo1&H|+lf1)677RUIM}A)N23Cj`9%!Jd#EL;&d$*;&caOWjk<0z z4#2gTf;yA_kct|h4U&`937g;>s3qBl_3&G)kM{30lxbLRb9@@0O4<^uV=vUM9gSL= zv8dB92a|C%@-<+UV+{H~Zq_&n_1u480uDw!XFh5|3z0-@>s=Z?bR5EFcmm_mkFBbb zHbcdkI0Q$cX1dq09D|8}L~^ix$2jcL*OY!D`VvpY%2%<|zY=|P{@2k^X*OY1`~(AW zAL{s=KrPW9sI_$UGhfqQjxjij{w!>cYq1Abpf+2>{$@!NP!sBeTB084!}wNj8Y<-w zjKqcd0N+Q=>|>|@0EQD^M3qt-KuhF-N-PZ3UmI&;Jts~_CDI19cd{`Jd!b#8#>+HP zaRqA4j-o2^6L!Wcs2fuUn(y}x7)@-W5?F<-npKLLi0>eiXa;H%_QqDY0kw4Jur6L7 zMEzBgY8>jy8DJ@KZ5)r~$o{n2vGCdWIyS}AsD!ExwX7VhgGyvH*1)GR3>RW;d=FKT z{TPZrqAGiLDD~Hx`wcTcJi@UtaeEwt6Hqr)IG^7_B@#8<3_Jwgh&P}%U5OJPMeX`y zsF}O|X}+E_P@8-hM&s)?4V}+2)S6$wNW6g==r_Xb-W=4D<e@SjfKfOBGjV|ve~qf- zMN~r9oc`dErb5Zsg8uf{7VW2LXt!@imFOU9Nq)vocop@AOBrPn7=|9iV~|y_CZZBQ zf?C@OC%%O7#5YmbM~pVtMWZUx2pQM5M$qu2V=`*3icrUGIp*Pdtc&+in=7)w{Cv*E zIO3kD&!?gGz%ta5y^ng{9!$sc&gZoYO@&i1fbp&FG{U)Hp!300Y)`xxz3>Dop|hw8 zT}3UKiw&aFlY|<$Ew;ma)Y80$b#M!I!E$^OqyA-%-$D#veCul(%JdX!DegLYjWu6R zp{PU>P@A<GD&cJGiUUyzZNNl4j`8R|&TQ%?=uO-QHG!e1=S@S~pN36C=Y9cd^Sy~$ zvocgdJ5U22M%{P`2jUIXeYxY!W*vZu#7i*-_o1G51vQSx1hZ$VqY|1lf%-3|QACGI z88Fd&PzT+K<1qxApw>DYb-oKR8Es^LTK`7vp_)&ab6*R6h+Ci%Zi|{oXAHu=SPjQK zLHz@06gd~n!xZA>7>$Qenf{8M@D8ekS(8{_?1e#i6}5y9Q3*$~(DgAHRf*o%7^kDI zUyB;|W1B`WjlJlHr%}840;+Uglg*b+JyhHp^}zn90iMBn_>S}WK2(K%MxBCts7+XH ziuvPvGSX#D!I@}ZrJ+}4;Z!rzXHjcEA63#tj&C@wL?yi5iML@*;@zkcpTg#N8LMFJ zX{OXMs3mENTDmN(%J|lJ8d~casFKXaMz|0;Y1Vdp4P&R9fwp4?aXB``fTzqGFb$Q+ z6imPc*atsFora*NO@F%MXiV1mUqVA`vlo-_Cbq=7MP{IWsDWNXef~M-;0=t#mNU#! z<YNuu=~#}h;Nv*#8S}&A6I3E6a5w&qU3LC<vk>{{PtXsCVg_!*bi9MwgekMk9!baQ z#GOzj?uV-2Ak@+gM<rH(T9W5bm09Ar5p~@cXlvK*r!fjIp_ZV>Z1W3d5XKU}kF~HI zb)0@f?SXr!f&HH~YaE2W#4)JEnqXz(s9m3qdJp8H672UZ_16QY(2<ExV-%L5Hs3MS zfZwA^cOKiI{~YsqF0zTNeAMT|Fa+m0pRYvSzaGQ!L(~NKqY^qfhtleTD|G0_o5&Hi zJfAb0=PA_bIEpIyRcwWiFcDimZ$2M|4Tx=2Wj0{t=EZE{*cZ(63Q*74g-YN%n}#;m z1&qPKxn?t_Vl(2wsLzX0r(y?cEia?q{eNRU?E0dq+<4TI&PVP364b=pUNW!VQ1l?4 zhWgxohDHjF<EXXqnrAW#!G^?f*adr{Hq&y{`7UwdpHPYah7B-yzNu&iHX?41J~$q| zaXKo2**Hq)e=ZHJ>2>tO#0BQnn~u700BY@qVHGSw4QQj@;qPE5mSQX(L_OywYAGI} z1`c}Joc{>ab8;|H=f4{boznrR0k@zpeu7$~FVP*3qi(El;<KntdmeKz`W0R}Sb%l$ z53GuzubNF4i>buTP)j%(-5KASNkaqALEZ2Y2H;ZEOxB|(Zb2{n6m|V>r~fO|_1~aM zeFl~ACDirTP)l(eRjE1)&6inAv^Bs?8hXGy)D6o}$8a@j;GItYUexu6(H~EvN_!Ez z;tkZm>5I&lP8&=n9)bzD5Ve#$P|rWPi26s<xJ^d`tg+b4EDQCZ_D<Xx<A{5pPQ?^d zq9v&7wxB9fhTU-o=Ad7(`L&ym+O+df3GBk^SW!&<)$uDG)zE8+S@STACT@gHu^R@X z?O2R@zy{P>Zo?HW-V->Ic;f5kU)i2ORV-?$`Ar#*ZHdQX7JgvU(9C|pxmf)T^9PFM zsM5WSf%pw-Q=Ua7dId-01JoWGzKoNBKO^5?*5Kv5w(&IP;|p(^--s31gV_5m^TxFM z(9o`)g&N>F)FyfrBXAk&UA+~R@eyo-0dJc>nq{K)z#<I6<=7B6VLLpHbue;;xi16t zyh1Ec?$6WE1FmBb-o-)av(h*kwZ?m~3m(8&3|VE~eCgPYcrcQiRe}>RXSLbwWtd3( zE$Y4T7uLnP@91Z^&AQOg=9q!6;1(Q;?betzdk3|9FQQ5pyw)T(9E*r|p(c>I&YYHx zIG8vWHPA-X-Z_j~>T{^ddavhsjBnMWp^{F*Ok9Qc@eEGElN-z)=>D$RjDt{Xy2yzy zpf+Rpd!|1DQ;BC`8kS-!yoO37uEhMnNyp0X|4B4d`bDVB)?h8%iP~&Gpf~=C0eHvJ zW25O0LCv@p7UB#XiWhM>=CBjPu>?bL5BlN{?^Aybe2I=0cpsxN`2(|=9&;RpHRvzG zC|rb^@rS4cccW%j?sySZ`Uj|lqdqhfY>c`;3pHN<52?Rqx`+-PvrX6tKSv+DirP%K z(GN##GUt6F_9mW-webv&#D~}qhyR<O=J*-rVftqCf_fRlh>I~B-?yE{4OHn<x0p5S zj(YG5=#T4AGu(n6xDS)?5bD@HM4g(TQu79!fLX*l&=dc}AavVmo)dzqs2xv3Ytb5& zKo``2Bd`HJf$6vm6Y&`8`YIopV;F!Ph?`+Ed<x_6Lu`o0F%bX8wix)a*`z&@#B6IV z4Lx8Z&d1+SGnr9lGOs`-bPi+iIx5kiPt4LKU>oAD$o8@3;c{&GDL*o>9F<V7ZRR_p z2(<_1VCA3xSJ8;3V-srA96=>;3!lQC+s%y!a4K;*s<d4`Gc%rxRf#`CZN>vm{5?KT zd<E;{gdOIXFTonbUtpNd|0x<O=}pucJ;Z1X*lEsf66%IRC$_N`@uwJ$CvhU)#DO^c zbAD#w=Z<N+s3!4djK##=W<tHtcB5k;4Q-Mk&IhAVGZ~Ni+(zCp*0UIfjlVGO@D8Yi zhoUMq3G?t8>dUOnmwe~rSEy6fcaK@>IjHx^{ynU}HqB8wYNF>}v%71d9$XJ~VRL*1 zTcb*S7$fj|RB7*E8b<CjmFtE5iKn2hJAyOu7fi=7Uzzv9y056e2G~kRU)+K5SaZMW zZ-Z@#J7ar%2?OvjD#0Hx2Ct(g5cIX#tnsM0IYwhHX5u*PfF-Dk+_0TS!~yfbj;M<C zK~G$O(O8Tva4UM_FQ^&cMqS_Jpm`4r$4<o4a60ZpEoI9?=8f4IV~GdgWVC0~(2L{_ zdSTpQ^QKEgU6_taWGLz!k9M4fk;HRRl~{w(_!0W!3CHtToA@_uh=JdjH)<;+QQLZt z#u#0IZaCmub3O;75-LIuoP)mj5;nyps08+-68H~B;T=rD;3H<Uc0?cI!A@L&dd_V0 zWPED@4Xsr%s<b7jL`pFZKgP~@2J2wlQS*bN6ILT$jDENV$KobbVo~MhG^Ak?@qAQ* z+i@bE!nTZWb@|S`YUiQWWDDkEgJb5wld%!;EL24{qAF5~pWvrB8z&v-Pf2(iyW-;~ z%)fqLjXDLtqdpHfX%d`>wq7I)Xy_P~U}O9iwN`(k297;tO4$<whzqd`PRDlm1<pnH z)8;t~up{wi?2UJ^J9e)ym3<RaiC0umf0g<u9cg$BbFk|7=F6rx>exMpDYzfA@BwNK z(|$0&0o!9f@o3bWayx2Cj-r<A3^u?=sDxwBn2C-)L;Y3CVmg$-GSr%vV>I5!HW+c% z9IO7Q0al|bR)#tqKVTuA$87BWquEOfQJ*iv`M3&0G2tikBI{t&&`k0$1_z-MnuR(> zFQ76m#$Y^-UU&tyG&iw2Mx8T%zE8p?#IIr}+<{fl{bw^lZ`9}QFbwSpG$Lrch)r<~ zYOPLUZHzr{zHB;RAn|Zaz)6^lD{&wmK_$}UKW2t)u@-S(%)+Ut&$pr`@)dT|`Tw3q z6desNn38tDp~Qvw3LZcu)bFCXZUfdQ-h+DJ6~~9D83kT4C67mao`k8GjSF!Kwm{Fz z`nPO0+0kfB$5WVy>(CF6p(^kb>IL#Q)<mBx=2aVwvBb?$pAW!r9EtI0JN@tC8^l{s z6YX}@9Loai%=p$e8fjSN7xTbO)RGLxarg{+;V<|R{*FQT-Zj&|-SJD*00&XeyNs$- z-Cxad?S#(|FGNoaxK5I~p#}|aOm)mam97J-q<t_FCp!HLP;0mnn_(%c#FtUeiM+wD zCajOD;1pbqOHg~F#c$^NUcXWQI6CG!9UnTL!*2A4+%y9ZMIE~tSQi(gA8tk6zYCS< zCDie<Zkad?b$trPV7}v2$7Q#uze@cX9a_tisFFQGB@pvFM+wK{GW-iQqc?7wV_Sw* ziN8RV^oZk0$Fr#CUqCIP^@o{=H!7jpHjU0S+M!A}4^`@748l#AfxA(g?-6=n$Q|=} z1SS$E;0hdoCHMgKoOO5klEK~B65Z~ZH)=YD5Zg0pq|qqGF?a|wvE_a9=9`SVaVx6- z8Y-cN56pu{VmspXn2nb)9UK2?e!PytKE$gq0`Flo20yIa3;h10L7$a}W3k60Q=0AA zg!nA(L;t_be-r)=hZAT2ZN4qnVFq!8<*FR`anw>QLVtV%BXJ#S33j6@{dHx``j^wt z+E<_pEtjh@Q#Z$2sFJ6l5^9Y_I2Hr&GIqqf*aEZMT$OLg$*4qDV-&uN?zk7L;{mM0 z_|_R3RqzoiV^<Yd<%=W$wYlO^4`_k9E+2ES4{9^6L_KgPYR??SWIT_LVTik{^0bUX zt@$KO#kpwfcx<ELgFm2-)kReQEz}Jm9<Ivs-VhaMp%Tf%8TdF3#qUt}HS=^?(fBy_ z#c9|SkDwBE_i|M(Sv@b8U0JFjbUeog3s4ycdAlnA`~N>to2DGY@mFk)UOukMS8Nt4 z9)+FoElk4ms7)B`YwqiT!-xwo0S}-Ox$A42($@5IRsQR=rl^75M6K~hs7;gN@2dRG z)(YDYm!L|06;=9&r~w13y3GGS2x}0RVm^M2HL+HJ8Mqm0ujJb_RQh>N#}f1<K8S&M z0+ql;9FNzrI}QpoOSKX8A}K@d>Ix@5k6I$nYGyC^qLwZLqp_#cZ$Cjp3A}^K@O{)S z{SsBm{piAbSO*`V);uD}oQkEWJ@YmO<9n!GzXSE0J*d<3HMYiYu{{P<cj-U<+EyNo z26S9N?e?m{rgV|0Qm3F2djj>q7f}y<8CCjX)G=I-s@O-U1oomTcL-I9W2pO1VKqF9 zLHho`K|>e1Ld=7FP`fn@LopY7;|SDDx1k2whbs9AjKv>O&+({X`m3T6tcj{jLsX(! zs5fFRdN97VmWIxE32NZ4FdqLzt!@39#vD}t7)-%p)Qt9`W_%EpKsh$X3e@vFL(O|7 z9aX^`)P1>V=hDcd(G^#sj?-1tT1AJsD!&bfpepekM&nx;hC5KZ`~>P)T|-qWJlq`H z38<x;hdNcOQLp0dXvOpxHg050>G>ve+={bP!i$qydKTYJK3Y7arC;&l<RPW|Q|h=% z&!-Nm?o;^W<ifFI6ALGlw(fW!rqsRQTzKiZ+1skQrzfV4D*kbCZ1Jweb^aH0H;shi z)XGNb;No{Zil1K|RlIK5!{SEEib_{6f63+6vrB3GTeHG^JN*CI8@Ap}sFIhTU;6gB zec@i2lM5%09of2c?4J$2s`SpwEnDK|s^<Q`?y?U&U8BwTO9zCyQkQlLb=9aGPhqa7 a5_{&!rOEUz-5KhtU-?nl&!Mg&*M9+E<31$- diff --git a/changedetectionio/translations/es/LC_MESSAGES/messages.po b/changedetectionio/translations/es/LC_MESSAGES/messages.po index 89931980..b1370281 100644 --- a/changedetectionio/translations/es/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/es/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "Importando 5.000 de las primeras URL de tu lista, el resto se puede impo #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importado de la lista en {duration:.2f}s, {skipped_count} omitido." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} importado de la lista en {duration}s, {skipped_count} omitido." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "La estructura JSON parece no válida, ¿estaba rota?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importado de Distill.io en {duration:.2f}s, {skipped_count} omitido." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} importado de Distill.io en {duration}s, {skipped_count} omitido." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -194,22 +194,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} importado de Wachete .xlsx en {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} importado de Wachete .xlsx en {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} importado desde .xlsx personalizado en {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} importado desde .xlsx personalizado en {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Lista de URL" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX y Wachete" @@ -245,6 +241,7 @@ msgstr "Las URL que no pasen la validación permanecerán en el área de texto." msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Copie y pegue el archivo de 'exportación' del monitor Distill.io, este debería ser un archivo JSON." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -374,8 +371,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -399,14 +396,6 @@ msgstr "Filtros globales" msgid "UI Options" msgstr "Opciones de interfaz de usuario" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Copias de seguridad" @@ -1249,6 +1238,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "Estas configuraciones son <strong><i>agregadas</i></strong> a cualquier configuración de monitor existente." @@ -1974,6 +1964,7 @@ msgstr "" "Bueno para sitios web que simplemente mueven el contenido y desea saber cuándo se agrega contenido NUEVO, compara " "nuevas líneas con todo el historial de este monitor." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2241,6 +2232,7 @@ msgstr "" "<p>¿Está seguro de que desea borrar el historial de los elementos seleccionados?</p><p>Esta acción no se puede " "deshacer.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2254,9 +2246,9 @@ msgid "Delete Watches?" msgstr "¿Eliminar monitores?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" -"<p>¿Está seguro de que desea eliminar los monitores seleccionados?</strong></p><p>Esta acción no se puede " +"<p><strong>¿Está seguro de que desea eliminar los monitores seleccionados?</strong></p><p>Esta acción no se puede " "deshacer.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2756,10 +2748,6 @@ msgstr "Valor vacío no permitido." msgid "Invalid value." msgstr "Valor no válido." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Etiqueta de grupo" @@ -2995,9 +2983,10 @@ msgstr "Coincide con todo lo siguiente" msgid "Match any of the following" msgstr "Coincide con cualquiera de los siguientes" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" -msgstr "Usar página<title>en la lista" +msgstr "Usar página <title> en la lista" #: changedetectionio/forms.py msgid "Number of history items per watch to keep" @@ -3094,6 +3083,7 @@ msgstr "Actualizaciones de UI en tiempo real habilitadas" msgid "Favicons Enabled" msgstr "Favicones habilitados" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "Usar <title> de la página en la lista general de monitores" @@ -3483,9 +3473,10 @@ msgstr "La URL que se está viendo." msgid "The UUID of the watch." msgstr "El UUID del monitor." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" -msgstr "El título de la página del monitor, utiliza<title>si no se establece, vuelve a la URL" +msgstr "El título de la página del monitor, utiliza <title> si no se establece, vuelve a la URL" #: changedetectionio/templates/_common_fields.html msgid "The watch group / tag" @@ -3621,6 +3612,7 @@ msgstr "" "¡Use las <a target=\"newwindow\" href=\"%(url)s\">URL de notificación de AppRise</a> para notificar a casi cualquier " "servicio!" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<i>Lea la wiki de servicios de notificación aquí para obtener notas de configuración importantes</i>" @@ -3984,6 +3976,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/fr/LC_MESSAGES/messages.mo b/changedetectionio/translations/fr/LC_MESSAGES/messages.mo index 650de02571103aaaaec6059b0e5d5ef73a1ea860..72799afcc3645dc2327da4b143c0a7fdf00d8db9 100644 GIT binary patch delta 7799 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 LGNG!@Qw#qG0%FlP delta 7935 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 diff --git a/changedetectionio/translations/fr/LC_MESSAGES/messages.po b/changedetectionio/translations/fr/LC_MESSAGES/messages.po index 13a62a71..e037af5e 100644 --- a/changedetectionio/translations/fr/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/fr/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "Importation de 5 000 des premières URL de votre liste, le reste peut ê #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importées de la liste en {duration:.2f}s, {skipped_count} ignorées." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} importées de la liste en {duration}s, {skipped_count} ignorées." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "La structure JSON semble invalide, est-elle corrompue ?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} importées de Distill.io en {duration:.2f}s, {skipped_count} ignorées." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} importées de Distill.io en {duration}s, {skipped_count} ignorées." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -194,22 +194,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} importées de Wachete .xlsx en {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} importées de Wachete .xlsx en {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} importées de .xlsx personnalisé en {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} importées de .xlsx personnalisé en {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Liste d'URL" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX et Wachete" @@ -243,6 +239,7 @@ msgstr "Les URL qui ne passent pas la validation resteront dans la zone de texte msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -370,8 +367,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -395,14 +392,6 @@ msgstr "Filtres globaux" msgid "UI Options" msgstr "Options de l'interface utilisateur" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "SAUVEGARDES" @@ -1217,6 +1206,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1926,6 +1916,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2183,6 +2174,7 @@ msgstr "Effacer les historiques" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "D'ACCORD" @@ -2196,7 +2188,7 @@ msgid "Delete Watches?" msgstr "Supprimer les montres ?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2696,10 +2688,6 @@ msgstr "Valeur vide non autorisée." msgid "Invalid value." msgstr "Valeur invalide." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Groupe / Étiquette" @@ -2935,9 +2923,10 @@ msgstr "Faites correspondre tous les éléments suivants" msgid "Match any of the following" msgstr "Faites correspondre l'un des éléments suivants" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" -msgstr "Utiliser la page <titre> dans la liste" +msgstr "Utiliser la page <title> dans la liste" #: changedetectionio/forms.py msgid "Number of history items per watch to keep" @@ -3034,9 +3023,10 @@ msgstr "Mises à jour en temps réel hors ligne" msgid "Favicons Enabled" msgstr "Favicons Activés" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" -msgstr "Utiliser la page <titre> dans la liste de présentation des moniteurs" +msgstr "Utiliser la page <title> dans la liste de présentation des moniteurs" #: changedetectionio/forms.py msgid "API access token security check enabled" @@ -3423,6 +3413,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "L'UUID du moniteur." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3559,6 +3550,7 @@ msgstr "Plus d'infos ici" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3922,6 +3914,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/it/LC_MESSAGES/messages.mo b/changedetectionio/translations/it/LC_MESSAGES/messages.mo index a49ecffaf0a60ae6a0ef61b8f16c2ee41167c7d0..b85b7493246630a2faa5e8b3b062d3869e2d8778 100644 GIT binary patch delta 5351 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 delta 5490 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 P>2?xIGXpgFiYoIz9xz{3 diff --git a/changedetectionio/translations/it/LC_MESSAGES/messages.po b/changedetectionio/translations/it/LC_MESSAGES/messages.po index 789dd5dd..744ada14 100644 --- a/changedetectionio/translations/it/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/it/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "Importazione delle prime 5.000 URL dalla tua lista, il resto può essere #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Importate dalla lista in {duration:.2f}s, {skipped_count} Ignorate." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} Importate dalla lista in {duration}s, {skipped_count} Ignorate." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "La struttura JSON sembra non valida, è danneggiata?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Importate da Distill.io in {duration:.2f}s, {skipped_count} Ignorate." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} Importate da Distill.io in {duration}s, {skipped_count} Ignorate." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -194,22 +194,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} importate da Wachete .xlsx in {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} importate da Wachete .xlsx in {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} importate da .xlsx personalizzato in {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} importate da .xlsx personalizzato in {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Lista URL" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX & Wachete" @@ -243,6 +239,7 @@ msgstr "" msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -368,8 +365,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -393,14 +390,6 @@ msgstr "Filtri globali" msgid "UI Options" msgstr "Opzioni interfaccia" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Backup" @@ -1213,6 +1202,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1917,6 +1907,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2174,6 +2165,7 @@ msgstr "Cancella cronologie" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2187,7 +2179,7 @@ msgid "Delete Watches?" msgstr "Eliminare monitoraggi?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2685,10 +2677,6 @@ msgstr "Valore vuoto non consentito." msgid "Invalid value." msgstr "Valore non valido." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Gruppo / Etichetta" @@ -2924,6 +2912,7 @@ msgstr "Corrisponde a tutti i seguenti" msgid "Match any of the following" msgstr "Corrisponde a uno qualsiasi dei seguenti" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "Usa <title> pagina nell'elenco" @@ -3023,6 +3012,7 @@ msgstr "Aggiornamenti UI in tempo reale attivi" msgid "Favicons Enabled" msgstr "Favicon attive" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "Usa <title> pagina nell'elenco osservati" @@ -3412,6 +3402,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "L'UUID del monitor." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3548,6 +3539,7 @@ msgstr "" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3909,6 +3901,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/ja/LC_MESSAGES/messages.mo b/changedetectionio/translations/ja/LC_MESSAGES/messages.mo index 562ad453e7fa3fd9e718a90ef403b3c051b993f5..31ab75642182da41650e2a7cd733b50cc82f6f00 100644 GIT binary patch delta 13759 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 delta 13862 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 LKeC(Z$GQFsk5v=V diff --git a/changedetectionio/translations/ja/LC_MESSAGES/messages.po b/changedetectionio/translations/ja/LC_MESSAGES/messages.po index 098f827d..f9cee922 100644 --- a/changedetectionio/translations/ja/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/ja/LC_MESSAGES/messages.po @@ -161,8 +161,8 @@ msgstr "リストの最初の5,000件のURLをインポートしています。 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} 件をリストから {duration:.2f}秒でインポートしました。{skipped_count} 件をスキップしました。" +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} 件をリストから {duration}秒でインポートしました。{skipped_count} 件をスキップしました。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -174,8 +174,8 @@ msgstr "JSONの構造が無効のようです。ファイルが壊れていま #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} 件を Distill.io から {duration:.2f}秒でインポートしました。{skipped_count} 件をスキップしました。" +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} 件を Distill.io から {duration}秒でインポートしました。{skipped_count} 件をスキップしました。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -193,22 +193,18 @@ msgstr "行番号 {} の処理中にエラーが発生しました。すべて #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} 件を Wachete .xlsx から {duration:.2f}秒でインポートしました" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} 件を Wachete .xlsx から {duration}秒でインポートしました" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} 件をカスタム .xlsx から {duration:.2f}秒でインポートしました" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} 件をカスタム .xlsx から {duration}秒でインポートしました" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URLリスト" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX & Wachete" @@ -243,6 +239,7 @@ msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON msgstr "Distill.io ウォッチの「エクスポート」ファイルをコピーして貼り付けてください。JSONファイルである必要があります。" # 訳注: 日本語を斜体にすると字形が崩れるため、強調表示は<strong>に置き換える。 +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -370,8 +367,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -395,14 +392,6 @@ msgstr "グローバルフィルタ" msgid "UI Options" msgstr "UI オプション" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "バックアップ" @@ -1219,6 +1208,7 @@ msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "タグ名に基づく自動生成色を使用する場合はチェックを外してください。" # 訳注: 日本語を斜体にすると字形が崩れるため、<strong> のみで強調し <i> は外す +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "これらの設定は既存のすべてのウォッチ設定に<strong>追加</strong>されます。" @@ -1930,6 +1920,7 @@ msgid "" msgstr "コンテンツを移動させるだけのウェブサイトに適しています。新しいコンテンツが追加されたときに知りたい場合に便利で、このウォッチのすべての履歴と新しい行を比較します。" # 訳注: 日本語を斜体にすると字形が崩れるため、参照は「」で囲む。 +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "サイトが行を並べ替えることで発生する不要な変更検知を減らすのに役立ちます。下の「ユニーク行をチェック」と組み合わせてください。" @@ -2191,6 +2182,7 @@ msgstr "履歴をすべてクリア" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>選択した項目の履歴をクリアしてもよいですか?</p><p>この操作は元に戻せません。</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2204,8 +2196,8 @@ msgid "Delete Watches?" msgstr "ウォッチを削除しますか?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>選択したウォッチを削除してもよいですか?</strong></p><p>この操作は元に戻せません。</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>選択したウォッチを削除してもよいですか?</strong></p><p>この操作は元に戻せません。</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2702,10 +2694,6 @@ msgstr "空の値は許可されていません。" msgid "Invalid value." msgstr "無効な値です。" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "グループタグ" @@ -2941,6 +2929,7 @@ msgstr "以下のすべてに一致" msgid "Match any of the following" msgstr "以下のいずれかに一致" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "リストでページの <title> を使用" @@ -3040,6 +3029,7 @@ msgstr "リアルタイムUI更新を有効化" msgid "Favicons Enabled" msgstr "ファビコンを有効化" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "ウォッチ一覧リストでページの <title> を使用" @@ -3429,6 +3419,7 @@ msgstr "監視中のURL。" msgid "The UUID of the watch." msgstr "ウォッチのUUID。" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "ウォッチのページタイトル。設定されていない場合は <title> を使用し、それもなければURLにフォールバックします。" @@ -3572,6 +3563,7 @@ msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a msgstr "<a target=\"newwindow\" href=\"%(url)s\">AppRise 通知URL</a> を使えば、ほぼすべてのサービスへの通知に対応できます!" # 訳注: 日本語を斜体にすると字形が崩れるため、強調表示は<strong>に置き換える。 +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<strong>重要な設定に関するメモについては、通知サービスのWikiをこちらでお読みください</strong>" @@ -3941,6 +3933,7 @@ msgid "Note!: //text() function does not work where the <element> contains <![CD msgstr "注意: <element> が <![CDATA[]]> を含む場合、//text() 関数は動作しません" # 訳注: 日本語を斜体にすると字形が崩れるため、強調表示は<strong>に置き換える。 +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "1行につき1つのCSS、xPath 1 & 2、JSON Path/JQセレクタを指定してください。一致した<strong>すべての</strong>ルールが使用されます。" diff --git a/changedetectionio/translations/ko/LC_MESSAGES/messages.mo b/changedetectionio/translations/ko/LC_MESSAGES/messages.mo index 1953859622d99d56dfc46e23479c30b30821fdce..3d1727a588e4f9db74bf75c7d7fa3293a822da40 100644 GIT binary patch delta 16083 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 delta 16204 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 diff --git a/changedetectionio/translations/ko/LC_MESSAGES/messages.po b/changedetectionio/translations/ko/LC_MESSAGES/messages.po index 9d62c841..ca558e3c 100644 --- a/changedetectionio/translations/ko/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/ko/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "목록의 처음 5,000개 URL만 가져옵니다. 나머지는 다시 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "목록에서 {count}개를 {duration:.2f}초 만에 가져왔습니다. {skipped_count}개는 건너뛰었습니다." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "목록에서 {count}개를 {duration}초 만에 가져왔습니다. {skipped_count}개는 건너뛰었습니다." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "JSON 구조가 올바르지 않습니다. 파일이 손상되었나요?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "Distill.io에서 {count}개를 {duration:.2f}초 만에 가져왔습니다. {skipped_count}개는 건너뛰었습니다." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "Distill.io에서 {count}개를 {duration}초 만에 가져왔습니다. {skipped_count}개는 건너뛰었습니다." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -192,22 +192,18 @@ msgstr "{}행 처리 중 오류가 발생했습니다. 모든 셀 데이터 형 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "Wachete .xlsx에서 {count}개를 {duration:.2f}초 만에 가져왔습니다." +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "Wachete .xlsx에서 {count}개를 {duration}초 만에 가져왔습니다." #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "사용자 지정 .xlsx에서 {count}개를 {duration:.2f}초 만에 가져왔습니다." +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "사용자 지정 .xlsx에서 {count}개를 {duration}초 만에 가져왔습니다." #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URL 목록" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX 및 Wachete" @@ -241,6 +237,7 @@ msgstr "유효성 검사를 통과하지 못한 URL은 텍스트 영역에 유 msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Distill.io 모니터링 '내보내기' 파일을 복사해 붙여 넣어 주세요. JSON 파일이어야 합니다." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -368,9 +365,9 @@ msgid "AI / LLM configuration removed." msgstr "AI / LLM 설정이 제거되었습니다." #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." -msgstr "AI 요약 캐시가 지워졌습니다(%(count)s개 파일 제거됨)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." +msgstr "AI 요약 캐시가 지워졌습니다({}개 파일 제거됨)." #: changedetectionio/blueprint/settings/templates/notification-log.html msgid "Notification debug log" @@ -393,14 +390,6 @@ msgstr "전역 필터" msgid "UI Options" msgstr "UI 옵션" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "백업" @@ -1219,6 +1208,7 @@ msgstr "사용자 지정 색상" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "체크하지 않으면 태그 이름을 기준으로 자동 생성된 색상을 사용합니다." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "이 설정은 기존 모니터링 설정에 <strong><i>추가</i></strong>됩니다." @@ -1925,6 +1915,7 @@ msgid "" "lines against all history for this watch." msgstr "사이트가 콘텐츠 위치만 자주 바꾸고 새 콘텐츠가 추가될 때만 알고 싶을 때 유용합니다. 새 줄을 이 모니터링의 전체 기록과 비교합니다." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "사이트가 줄 순서를 섞어 발생하는 변경 감지를 줄이는 데 도움이 됩니다. 아래의 <i>고유한 줄 확인</i>과 함께 사용해 보세요." @@ -2182,6 +2173,7 @@ msgstr "기록 지우기" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>선택한 항목의 기록을 지우시겠습니까?</p><p>이 작업은 되돌릴 수 없습니다.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "확인" @@ -2195,8 +2187,8 @@ msgid "Delete Watches?" msgstr "모니터링을 삭제하시겠습니까?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>선택한 모니터링을 삭제하시겠습니까?</p><p>이 작업은 되돌릴 수 없습니다.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>선택한 모니터링을 삭제하시겠습니까?</strong></p><p>이 작업은 되돌릴 수 없습니다.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2693,10 +2685,6 @@ msgstr "빈 값은 허용되지 않습니다." msgid "Invalid value." msgstr "값이 잘못되었습니다." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "그룹 / 태그" @@ -2932,6 +2920,7 @@ msgstr "다음 모두와 일치" msgid "Match any of the following" msgstr "다음 중 하나와 일치" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "목록에 페이지 <title> 사용" @@ -3031,6 +3020,7 @@ msgstr "실시간 UI 업데이트 활성화" msgid "Favicons Enabled" msgstr "파비콘 활성화" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "모니터링 목록에 페이지 <title> 사용" @@ -3420,9 +3410,10 @@ msgstr "모니터링 중인 URL입니다." msgid "The UUID of the watch." msgstr "모니터링 UUID입니다." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" -msgstr "모니터링의 페이지 제목입니다. 설정되지 않았으면 <title>을 사용하고, 없으면 URL을 사용합니다." +msgstr "모니터링의 페이지 제목입니다. 설정되지 않았으면 <title> 을 사용하고, 없으면 URL을 사용합니다." #: changedetectionio/templates/_common_fields.html msgid "The watch group / tag" @@ -3556,6 +3547,7 @@ msgstr "더보기" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "거의 모든 서비스에 알림을 보내려면 <a target=\"newwindow\" href=\"%(url)s\">AppRise 알림 URL</a>을 사용하세요." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<i>중요한 설정 참고 사항은 여기의 알림 서비스 위키를 읽어 주세요</i>" @@ -3917,6 +3909,7 @@ msgstr "이 그룹의 AI 기능을 사용하려면 <a href=\"%(url)s\">설정 msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "참고: <element>에 <![CDATA[]]>가 포함된 경우 //text() 함수는 동작하지 않습니다." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "한 줄에 CSS, XPath 1/2, JSON Path/JQ 선택자를 하나씩 입력하세요. 일치하는 규칙은 <i>모두</i> 사용됩니다." diff --git a/changedetectionio/translations/messages.pot b/changedetectionio/translations/messages.pot index 6f2a7138..c20548a5 100644 --- a/changedetectionio/translations/messages.pot +++ b/changedetectionio/translations/messages.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: changedetection.io 0.55.3\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2026-04-30 19:35+0900\n" +"POT-Creation-Date: 2026-05-02 18:29+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -159,7 +159,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -172,7 +172,7 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." msgstr "" #: changedetectionio/blueprint/imports/importer.py @@ -191,22 +191,18 @@ msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" msgstr "" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr "" @@ -240,6 +236,7 @@ msgstr "" msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -365,8 +362,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -390,14 +387,6 @@ msgstr "" msgid "UI Options" msgstr "" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "" @@ -1210,6 +1199,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "" @@ -1914,6 +1904,7 @@ msgid "" "lines against all history for this watch." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2171,6 +2162,7 @@ msgstr "" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "" @@ -2184,7 +2176,7 @@ msgid "Delete Watches?" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" msgstr "" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html @@ -2682,10 +2674,6 @@ msgstr "" msgid "Invalid value." msgstr "" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "" - #: changedetectionio/forms.py msgid "Group tag" msgstr "" @@ -2921,6 +2909,7 @@ msgstr "" msgid "Match any of the following" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "" @@ -3020,6 +3009,7 @@ msgstr "" msgid "Favicons Enabled" msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "" @@ -3409,6 +3399,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3545,6 +3536,7 @@ msgstr "" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3906,6 +3898,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.mo index 41f45929e92172fe7a7cd11d883947efce086f76..c08a4fa36122f729dd6edf8d8939a2c467b0b8a0 100644 GIT binary patch delta 11898 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 K!vM#dj{gHtqBouZ delta 12004 zcmYM)30##`{>Sm>vdJbpA_&SZ;sPj$fV%?j7H%18E{Tv^g-d06)wHbC6ms89ZBZwS ztV}I)&q>WTmt3aQ!dx;n6*HaBm-GDpGp}CrKIc65p5^!Zo#&=ATi3Z&tao#s4RTvx z@t>0}mKBK?YN_|X|7>b(S$T9fV@JG&!!fIgWqIK$Y>V$=EBqa^F)78eqH!3O;0$!d zYZ!|+(BHD0R%oi3C;<a_kb;k4Thteq;3#xWGySJ=3H?*p0>?GAtPtFcS-2ZR@jhz7 zpk|ikjkT}_#$au1fRU_kwWm>^fhRByU%{5R5%q;i)W)u(BIHQt%UBn+a3|Y=sE9m^ z1Mo$3$CK!T=dchjV_VG6V1ul0&7z?l%|?Z8z1{y0M$oT9{;@)uTh<8dg1Pu12I5_e zNAFBCPl|0PB+AwhBrDc@oPfKqA7&ChCsDHAprH-yM*gvW;=fvB2=UZOdZ7nyK{xya zb8rVH;awz`Rt&pW#L_Snvut}J|5(HMFGYAYDuR2niT?^3*BE#bXEUoW{)x%>0Ew2> zfPCl+gHX?BVOv~)b@4}x!M{)&3ZoKhVq0v4J+Kx|LO(1+MQ%+i;vYq$f&u0D80w_I zpiXqjwhDDJFT&Cp192c0VmI7|h3L`7<a#J-p)siMO-5~eCMIGTM&ULm4J~{ewP2;~ zUDOUe+nVtR)QOT&6SuI<N1d!MYJt(Hd0xO^d<_$DrQP3)`rHZBMw}OEc+&7~M`2+o z>beX@ZD1s}$H_>YS-Y?f-oc(2%tM;iFf79L*c*L2m`DymZM+yl{{-Go89|3A}c z$iOW#U`6wm(FU5KPTCq3;_m2%OED5xp(fse1j{;v$>`11;FV!zpa&MAJ~!HS5-LKk zqNncv5*lF)tVP|^&rm1akM;2vY=qu<W@DMCh1#PQ9*x{6YcndR7g67L%{T9ZdYDGP z0qS-Yq8q-6ty$k%LZcW@U@vUf$$Ve|DpyNU*XeDnjXO~r{t-3tHGCSQsmyUWAD={z zF6IR_65Z)fMb+BN=#7ieshzH+Q5Qc)RreXx3!;8kQ@u_cO#c;3#!A~@@}dp4My0B& z-G3a%(jS3J)p6APw@@1h?ry#p-<|k-GLU8uWFtjk<zqd3-0r`CT6hkI;HRjnKa48E z3-~Ce_b@+BFXJHkS8xJ$<wM%YZuG!&sN(*$C-K+7T?T64L)1xXJYrccSPPe7IBMao zsB3iyz3?oK#!Ae=zU-nD%di+d3e2zISWKZm54FxNOvHmu8d~rVRE{3leK!h08w<us z7=b>x5ViBQ7>*yIB69>)6IIv}1ACj#^}s^<gE0+vpf6rS&F}o12Aj29`dC(D?2Ssv zbd1B-F&^JXZS;He$MdL=-ozjb=xd5L4wafD)NN>ksW=e%nXu+!EFMHs?6fY^(8NAe zTqBG?U5|X!iMpXS@+2zcvoIaYFbNN!LVDfq-^C~B$2?|EI?Z-21~a}4*|YUNChGpX z_cx($gx)-8irRTAd%O^}@DNmFMq*7Ihl<2>RCSl3QuF~Tl{+y4_t>7rBKlRBfrB6C zhl%yAg)~%b7cm?wQ73XCamtZ5Y6F3&P}adZ*v%d<MxE?gd;De8JZn*r+<{8bm#B?> zZ;zisXDtTK*#oyx8~GbmWDl?f1`IIwwlg-R|2QgTb5Idkj-7Bl>U-BP8}$<z4LPU{ z3_!ANjYS<~|3Koeo!((UMHtAX&B9@*DqVpw_#P@EUt{$Nu!8<69D{R7ICX6OgYB_k zFuxzT0JWj7Fdu(HZ6t1pd80NTLi}qp(2aq*I2;v`85oAkP@%0r<@^9Pz#p(7KE$W6 z;ZXDWg{bHMLT%&(YT-J=Ok{^)BK;z}KgUT!RX-1P@|~D~cTiOx#fv-|3sBdy6jcjr zunum-96W$3Uf1C!C4Q)lhhZc(#Fp5}?$1Pb`p&g9w4-<I2S-sMx`NH|A-2Wll&-3M zA}T_!pi;6D^Kb*|4R;k)6Hz0~0*OdgtVXDf&qk$oq3JuVw`e3Wuo>O)NAtisjf%*x zsD-18&230Ur79D3-TGny4#gPUiYl(-=!%{t=77Ga=gm+D?1N#t|HU*k;Z#)BuChOH z3Kin3sA~5j(JI#3sPU%Q0efH#EJJN*DJnu6P$}Dq0eBg;@O^BD{v$~Z>syb~sE1>) zGtR|QJb}7?-A0)W%tUSUO;kiGZ1-RY{qIm4sYDg)b<~C*U>B@C+H7bTHlaTsok=uy z(P)5|&=Z5XQ#wH;YQkpdi#h0rolp_zhe}x~YD3SX7JL=;y|<88fwd9+&~vOQ)-Y^B zzt>peA4_981DbF>YN0PtMRNqTp(algUd%*=@(^nLCv?LLs0dubM0|junDC6Lg&d@g ztx@QK-=ePl$!Cba7mXVXXvg=_AKjicFOColpr433K_=>X9;RVmjK*204ZVwb_#rBS zRk#2H$Y&sKK&9|g)P|2cX~fgGf{H}oIP+pjM}1*1YT;)w7^k5RE<jcD8dT)=U<97C z`}a`u)f#W+&%!wRgHWHJj-lvWNkebCk5EPUHFm@+$Q)MM1k0L&8&Dxjm}pMg8kPHe zR7ktq_O>lVZFs2NpMZ+UWK;y-#0=KA*3r;CJ%tMOSyW2?z*MZlnwb2Y$#n}<L|S1o zcEb{!hzsy%)It-VH^nv=RosVAZ@^oq=V>qK%}f3}(dfs(cuc~>)ekJ|wr$)bvyn%z zA<w5_3U0<sJcBtH`l4CrQPlHEn2#H=4&Fqi+JCYMeL8;2`c@YjeKCqSN8vcsM#}I@ z+>W}xllgEjJc#`<a;jN)0%p_y5LJX%Q8jWKgV1G~iEt?DwuGZnR~M`Q{Xd?Da?%zR znn!F$pguSS>*5S7!naT<@Se`w55qA5i%|!di@HslP&M!oYT<*Z6dy)!JUgBEEBBWe zsNOlM>Tjdo1D-FL(1oHVNW+%c93!z5RebYM3ob%MZWXq{gZ6XJ8K#E(QO~0=1oLJP zN=;D6fF>A<;rJBlgfmbZDz~4nM}2WKa<#49sM^VxX>P|HRLD1A7H-2Pc+-9!`?C2n zWezGb!<;m#s~6id@H1+{_*cwCFQPW^2C9nJU@ZO{RgBj#9V2F$=RHxk;(1gm*P&`> zJI0~Mt0r>EsFXVMX=uSB)X6@_C-6IT$7ZjY=UJFWe?BTTdr%wu1{>fn*cp9aH?`Ck zx!+ci-CvH{_$I86N3n+P{~a313_L_HOrC9OAsw}WR#=1`P&s`MeeidT#@ndRh0QUk zi$YiWnWzPGP(?Qg!*DDn;4A2(`@flna<L6P@h~>RA5jyz&NbCq19eM+P}emUwea)y zb0;byub~?*M-}TD%*V6HUaiD8%&WTsYqGxe0}Vesk4^CgDt8I<Ox3nTJ@0}#d4Ib< z92K!~s0F7WA+=sYMf7#li9g0XJc9au=zKF@3_A6NR2sTYEl~YFs1FWAUo1gIW&(CW zCu+e%SPze4D*l0rTy&X9MR(M^BQP3gV0~PVirnEc;-5(4I|fw6_fQ*1Ddz_TGcg}$ zVsku<Dk`@(%>vmNM8CJ)AAte%r(qzLVKlD8X1EW7vC6jQ0^+X;V)*4y$kTDYgTFAq zLi%SG(#EVs=FjspQ43tdTzrVSwz-Q<an3>&*FhYo&!K8)*b*~70{!XFL2q2)q@fAl z!KZK=PQ>`7=HCIA<8$-_mhp!Qd=)!ki{<A2PDAB(H7b(7p%(O8VQMD`mBMJ$eQ%6W z*bQ5u^C=qXG~U6Ecm|b%*p=pAD3Vbp%0)dNiP5;l_895_H}FYxU1d&IjEZb2YW!vF zkC#!o&s|-8J)Krp8p`n)jK_~L4u3+O>>*CYyfyqV;Q`cwwbz=HG(deXAN9Ras9euO z9c(W?fmJvR`@dysXeTD<{@<jbVhdkq{$gMRj;Fs9J+Rq&V>YT5+F>fr!BG4h6|wIz z5>MOXRhUWNe}h>t9~JV+xDU7EIM%nOy={u(Hmb@!-Z8JzR+vKn6;uvC!A`gr6S3yI z=ANgcHuMCly62%zz7Dmalc-eOM%@ap_e|vKpi`mDqTz{MPz&|49c+(}#(s=Xz_EA) zdt&R2=2pzb2>N$041+eA8c0Shn1LCXk4ZQg6}b(Yh`+AG4hBN-Yt%LT8MWiPs0n;F zn|_pSD#kM20e!Iub&ygF#~GM~EA9RX)H*j%wc)~5(t(@*i})ANXv2UHmZ3JV5<B8n z%*J~dg&FUgNc6()^f%(`ScSuJ<`z@kmr)!06IBBbP^oSHf!XM2Y(jsElZF=DjM~6n ztc~AbSG<I7nDL>xhS^w?{$P9*$6yQGg$i*Msu)u$%sW04HGdu|H3QKb$D>l<oJvCr zFGT%Y>RN1ypJM|4iTXm=N9LNvVm|$R)PiqdH15Ot_$&IM-&PaqD9ok*D0<)`%)^y9 zf%UD6G)fp4@Ui*8e$<W+V+>wEZOr2nliOHqO}`~h!AZ!)vF_nGT>Ggh#;|QB5=}9P z@oZG&x})YR#Ax0Bi8KZ<uo$1lzfd78`pi`K7}UKzj_DY>-AvR41L!|y_e)UMc_K#O z9n=AWc9<egM}0oewjYM-3&k|*;uMU>6{sEWMlJjUYQo^1CWlQ>Z?ZfbfbXGxBWiqZ zHar!l)4zn8Z`2ni#q-gH{t8qoR-@CM#@jUfakKq_ov4uR!a7*I%cNums;ZaaWPAs^ zVd9rmK9*uBR-vkU^lp>u<)|7uk12Q!L$U520;Ub5?=eM_jk=eeaS9foa&`<Ax^ozf z*D(zP_nL@wz>f3_QJ-6lgYg5*#Grj<{w}Eb`(u9`y3c7syn_Ml@E&UC?)%MsO-Dca zBT+^90><EcRKzM!8{C5-cnst4SJbuiK4AW?rvoO^pNR>$3ANF0oiuW2oJV)8chH<L z0kx4l)Q-nvTbzQL_zQHyyLSH{98JIZS7zdMs2bXes-1&449}zH%|B#nz&U}2PB0nk z;p?c4Y(#JTz;*{}q61hLf5FD+__s+x3aU2pQ4#8mNjL!~;3{m1wZ1lQ%3kQA3$u-e z7T$q1@HA>e7tjlDpmKd5wSgvw&B;2W`U5Z?Ct__}j{4qKyZ;4x(?5ZV*m>0VDzW;1 z|8qTJ9{6H74+610Hbmuo4CdiX48*Td6P`td^b!VR_oL>;Gz6Q_Uyadt6g%Q|dpzSC z6PYLR1?tb5L!&o(9y9lJAgWkOPz%jNrDPfMPO;YD2pssW`IFH;)CL=UXBI9+ZG0{2 z{jd!cnOfhQ)TN*z)&rdlX_VRnt8Dk8zHkZs(B%hHq=A@CzdLH<vrz8`&mYatZ9I0O zKL`u(Z6wFmJyb;gK@V(n+|1YPIMcLcU@Qa8a0_aJ3)mPNpD?f7LadGiDl*G3A9rId z^gd}K6oa}}^)U)tU@Pp4D%v+u8>qlk{OlyhP$(|j9|$;Q?tKdOWxNReaVKhm!x)TL zupe4KnT<S#o^)5E7I+sGp)DAKsi#dObJ2%>Z&c(5J83Alv(XpJunn$4-QRPlFWkUJ z_yDz`hG(k(*A*)VQ|K>2eeWxDMX$3aay79j{q|TJ$73|kMWw{~J`Gj-S^EPq=gdj7 zQMvDricm3XqB&TIyHF>N{Ezuu0!GnKM}4jUb%2?u6fMRM_&!GBO-xph0)94siIjsg zdGH#l1_FLDC+&~1^h+=hXJbuVi8|3H)JFE9a(@Kl@Ei_A*YoD2L$Ephd8pbtfEh~C zUo;f@h8N7qTc8%`hdR-4jKP;M9@nE@REJOtev5VSJnF^ca?$)BmV8mqpT}H$4YTkY zRPMch<;BPPR&yF**cZp(7*vkW;5&E~Rdfq~GYh|m9`rxNdbkbK@FYf{Po+6=A`YkD z2eq;7sL$_1)zn3FdeZolhC+J}wGrP-rfTC+<5{R&c12yAL8ueFfi-YD7T_LK#A^Lc zzA+t@>%*v!|Bl*V?aQX$>@xAM&%h7{TH~vzFC0YW_9AM+2dET9UNJwP4N%W}qBdM? z_ot#xxCG;H8!B~Y?D2<Khkm`QrlxYP68{7S1~JeDXW)1|igPjdn%Thj=tKVo*2D*> zll%T*46%(wZ7kmIw?ZwLi{Ur~^KcTn;%+C6P#XKu4^LxDyo}0u(slEGXo*TedsM{w zU>Q!vjTrE!Iq42;PyZ}7#+V!C1=SO^u|=pN+=9c<`8$nN8a-~B7lsp4=zoOG@B-?2 z?OWz~XUw5L1>4|fsD<vKCQkax{K;r2>R?;20q#fLlI!T^pulhQldbz7a>wLqHtK_0 za37w+!MOUa(NSemGZeEKKY^_<_@1eaM^Pyngc0}@y5UT8$JbCPn}_kZxcWKy-$^5a zf!(%eP+z!<+Ry_m#iYN@eO`{r;bu(2Td0&o-8UP_#X9s0P#YM70a%KP$P85Omtytb z|E;7E&cG&A4eUo%{ST-KZlV^vi;>voAM?f=fI87|Y>A^W7vDog;yMQ5eat}r2j;fq zqBs44=v1SahC)(`+Q?!I!4FXj9zgB*0=|ruH~_~!G?DungX#Z<UGZ<!g87!iipI&P z8d`}e!lO6|D=mk!`cJV>Ivmxx{usk}5a!~j4p|E7i)~T&_!-Q>a?Ho0_VX}TNA-f8 zPzy}K5x58&;zNwZhE!ez_Q3vF;^uTz=VT89%JE6m{qFAWu%==mcEHo9$V7WMsw0w( z`Z4K;kKtU5!r!nby4P@2N2CwxHkH^eL8a^~Y>LO6G<<2ed72XkqCOCd6EPXP;ac>< zKTr!*p<dl#UM9rRs1&usR+x*5<V&cCEW<SX2z9_;Q9sMhTQoG0kGG@x9)}>;(`t|Y z*b!Aky>T3lKo2~PDzfva>i)wXw|pGcuksqGTFApUuncuuVtvg9x+3#Bt^PE!crXfe zJvLw<?m*p!BerKy8@htkRgKz+e@!!CEmWxEQAOJu3-B4#M)#uT`vw)sa~Q4P|4TF! z0dGIEKrre=aj5Zh?2WBZ?}ai{F)l{E`98yBthC32{mt_XtjBmiR1r=@eg7?NhVNo3 z>sx1NDCd3wrg&<hevFDxMfL&eepg}~CIp%jc1CTa2vrlaP}RKw_2T*xd*EeMM6!b% z)i0)gsLz+8yC#@lQPTLPOZob=@bcD~9_3e4kCl(f^eLZ}`b5R&Y4scxC!59vdzF-q zD;YJaNy*rXd%1^VD|QwC9A2?v`f~wp*-e@jmG>`CD9<jh_kW%4rm>;CX?3IGMEQ01 z@{DC+<%5@ADWAI5tNi+srz^TG8|83$q;ti`%RR!pJN|F}?G=>`Tnl>js#tqwZe7<t x1>GuA?r#XLo@h~IfTRAR`~HsT|L^uRt&staEO%{X@}hQuj*w5b1vp-G{1;5RM^yj- diff --git a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po index 63dacadb..b314ea97 100644 --- a/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/pt_BR/LC_MESSAGES/messages.po @@ -161,8 +161,8 @@ msgstr "Importando as primeiras 5.000 URLs da sua lista, o restante pode ser imp #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Importados da lista em {duration:.2f}s, {skipped_count} Ignorados." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} Importados da lista em {duration}s, {skipped_count} Ignorados." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -174,8 +174,8 @@ msgstr "A estrutura do JSON parece inválida, ele está corrompido?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Importados do Distill.io em {duration:.2f}s, {skipped_count} Ignorados." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} Importados do Distill.io em {duration}s, {skipped_count} Ignorados." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -193,22 +193,18 @@ msgstr "Erro ao processar a linha {}, verifique se os tipos de dados das célula #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} importados do Wachete .xlsx em {duration:.2f}s" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} importados do Wachete .xlsx em {duration}s" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} importados do .xlsx personalizado em {duration:.2f}s" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} importados do .xlsx personalizado em {duration}s" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Lista de URLs" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX & Wachete" @@ -242,6 +238,7 @@ msgstr "URLs que não passarem na validação permanecerão na caixa de texto." msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Copie e cole seu arquivo de 'exportação' do Distill.io, que deve ser um arquivo JSON." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -371,8 +368,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -396,14 +393,6 @@ msgstr "Filtros Globais" msgid "UI Options" msgstr "Opções de Interface" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Backups" @@ -1236,6 +1225,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "Estas configurações são <strong><i>adicionadas</i></strong> a quaisquer configurações de monitoramento existentes." @@ -1959,6 +1949,7 @@ msgstr "" "Útil para sites que apenas movem o conteúdo de lugar. Se você quer saber quando um NOVO conteúdo é adicionado, isso " "compara novas linhas contra todo o histórico." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2220,6 +2211,7 @@ msgstr "Limpar Históricos" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>Tem certeza que deseja limpar o histórico para os itens selecionados?</p><p>Esta ação não pode ser desfeita.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "OK" @@ -2233,8 +2225,10 @@ msgid "Delete Watches?" msgstr "Excluir Monitoramentos?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>Tem certeza que deseja excluir os monitoramentos selecionados?</strong></p><p>Esta ação não pode ser desfeita.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "" +"<p><strong>Tem certeza que deseja excluir os monitoramentos selecionados?</strong></p><p>Esta ação não pode ser " +"desfeita.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2731,10 +2725,6 @@ msgstr "Valor vazio não permitido." msgid "Invalid value." msgstr "Valor inválido." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Tag de grupo" @@ -2970,6 +2960,7 @@ msgstr "Corresponder a TODOS os seguintes" msgid "Match any of the following" msgstr "Corresponder a QUALQUER um dos seguintes" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "Usar <title> da página na lista" @@ -3069,6 +3060,7 @@ msgstr "Atualizações de Interface em Tempo Real Ativadas" msgid "Favicons Enabled" msgstr "Favicons Ativados" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "Usar <title> da página na lista de visão geral" @@ -3458,6 +3450,7 @@ msgstr "A URL que está sendo monitorada." msgid "The UUID of the watch." msgstr "O UUID do monitoramento." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "O título da página do monitoramento, usa <title> se não definido, ou a URL" @@ -3596,6 +3589,7 @@ msgstr "" "Use as <a target=\"newwindow\" href=\"%(url)s\">URLs de Notificação AppRise</a> para enviar notificações para quase " "qualquer serviço!" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<i>Por favor, leia a wiki dos serviços de notificação aqui para notas importantes de configuração</i>" @@ -3957,6 +3951,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/tr/LC_MESSAGES/messages.mo b/changedetectionio/translations/tr/LC_MESSAGES/messages.mo index 8d5cb3ab820b5d2809e19677b297d99185e55c96..01c219ee814d4b599bd6009a77e56b45df705061 100644 GIT binary patch delta 11996 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 delta 12115 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%0Dm$>%3=5kc%qKL=3|fSd3e-9|rF; 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 diff --git a/changedetectionio/translations/tr/LC_MESSAGES/messages.po b/changedetectionio/translations/tr/LC_MESSAGES/messages.po index c6196867..a19fdf52 100644 --- a/changedetectionio/translations/tr/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/tr/LC_MESSAGES/messages.po @@ -165,8 +165,8 @@ msgstr "Listenizden ilk 5.000 URL içe aktarılıyor, geri kalanı daha sonra te #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} kayıt listeden {duration:.2f} saniyede içe aktarıldı, {skipped_count} atlandı." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} kayıt listeden {duration} saniyede içe aktarıldı, {skipped_count} atlandı." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -178,8 +178,8 @@ msgstr "JSON yapısı geçersiz görünüyor, bozuk olabilir mi?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} kayıt Distill.io'dan {duration:.2f} saniyede içe aktarıldı, {skipped_count} atlandı." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} kayıt Distill.io'dan {duration} saniyede içe aktarıldı, {skipped_count} atlandı." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -197,22 +197,18 @@ msgstr "Satır numarası {} işlenirken hata oluştu, tüm hücre veri tiplerini #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} kayıt Wachete .xlsx dosyasından {duration:.2f} saniyede içe aktarıldı" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} kayıt Wachete .xlsx dosyasından {duration} saniyede içe aktarıldı" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} kayıt özel .xlsx dosyasından {duration:.2f} saniyede içe aktarıldı" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} kayıt özel .xlsx dosyasından {duration} saniyede içe aktarıldı" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URL Listesi" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX ve Wachete" @@ -248,6 +244,7 @@ msgstr "Doğrulamadan geçemeyen URL'ler metin alanında kalacaktır." msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Distill.io izleyici 'dışa aktarım' dosyanızı kopyalayıp yapıştırın, bu bir JSON dosyası olmalıdır." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -375,8 +372,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -400,14 +397,6 @@ msgstr "Genel Filtreler" msgid "UI Options" msgstr "Arayüz Seçenekleri" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Yedeklemeler" @@ -1246,6 +1235,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "Bu ayarlar, mevcut izleyici yapılandırmalarına <strong><i>eklenerek</i></strong> uygulanır." @@ -1962,6 +1952,7 @@ msgstr "" "Yalnızca içeriği hareket ettiren web siteleri için iyidir ve YENİ içerik eklendiğinde bilmek istersiniz, yeni " "satırları bu izleyicinin tüm geçmişiyle karşılaştırır." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2225,6 +2216,7 @@ msgstr "Geçmişleri Temizle" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>Seçili öğeler için geçmişi temizlemek istediğinizden emin misiniz?</p><p>Bu işlem geri alınamaz.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "Tamam" @@ -2238,8 +2230,8 @@ msgid "Delete Watches?" msgstr "İzleyiciler Silinsin mi?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>Seçili izleyicileri silmek istediğinizden emin misiniz?</p><p>Bu işlem geri alınamaz.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>Seçili izleyicileri silmek istediğinizden emin misiniz?</strong></p><p>Bu işlem geri alınamaz.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2736,10 +2728,6 @@ msgstr "Boş değere izin verilmez." msgid "Invalid value." msgstr "Geçersiz değer." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Grup etiketi" @@ -2975,6 +2963,7 @@ msgstr "Aşağıdakilerin tümünü eşleştir" msgid "Match any of the following" msgstr "Aşağıdakilerden herhangi birini eşleştir" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "Listede sayfa <title>'ını kullan" @@ -3074,6 +3063,7 @@ msgstr "Gerçek Zamanlı Arayüz Güncellemeleri Etkin" msgid "Favicons Enabled" msgstr "Favicon'lar Etkin" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "İzleyici genel bakış listesinde sayfa <title>'ını kullan" @@ -3463,6 +3453,7 @@ msgstr "İzlenen URL." msgid "The UUID of the watch." msgstr "İzleyicinin UUID'si." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "İzleyicinin sayfa başlığı, ayarlanmamışsa <title> kullanır, URL'ye geri döner" @@ -3601,6 +3592,7 @@ msgstr "" "<a target=\"newwindow\" href=\"%(url)s\">AppRise Bildirim URL'leri</a> ile hemen hemen her hizmete bildirim " "gönderebilirsiniz!" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<i>Önemli yapılandırma notları için lütfen buradaki bildirim hizmetleri wiki'sini okuyun</i>" @@ -3964,6 +3956,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/uk/LC_MESSAGES/messages.mo b/changedetectionio/translations/uk/LC_MESSAGES/messages.mo index 3a4d57d0a5311edf9e639bf6409ef47e2f7c5491..703af266bca0693ef793bc36486c78ed4552b22f 100644 GIT binary patch delta 11307 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 MkG++<J4-A44`6kg761SM delta 11424 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 F{{k8Jrse<u diff --git a/changedetectionio/translations/uk/LC_MESSAGES/messages.po b/changedetectionio/translations/uk/LC_MESSAGES/messages.po index 61fe7b17..c7d53690 100644 --- a/changedetectionio/translations/uk/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/uk/LC_MESSAGES/messages.po @@ -159,8 +159,8 @@ msgstr "Імпортуються перші 5000 URL з вашого списк #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Імпортовано зі списку за {duration:.2f}с, {skipped_count} Пропущено." +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} Імпортовано зі списку за {duration}с, {skipped_count} Пропущено." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -172,8 +172,8 @@ msgstr "Структура JSON виглядає некоректною, мож #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} Імпортовано з Distill.io за {duration:.2f}с, {skipped_count} Пропущено." +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} Імпортовано з Distill.io за {duration}с, {skipped_count} Пропущено." #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -191,22 +191,18 @@ msgstr "Помилка обробки рядка {}, перевірте прав #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} імпортовано з Wachete .xlsx за {duration:.2f}с" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} імпортовано з Wachete .xlsx за {duration}с" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} імпортовано з власного .xlsx за {duration:.2f}с" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} імпортовано з власного .xlsx за {duration}с" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "Список URL" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX та Wachete" @@ -240,6 +236,7 @@ msgstr "URL, що не пройшли перевірку, залишаться msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON file." msgstr "Скопіюйте та вставте вміст файлу експорту з Distill.io (файл JSON)." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -369,8 +366,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -394,14 +391,6 @@ msgstr "Глобальні фільтри" msgid "UI Options" msgstr "Налаштування інтерфейсу" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "Резервні копії" @@ -1226,6 +1215,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "Ці налаштування <strong><i>додаються</i></strong> до будь-яких існуючих конфігурацій завдань." @@ -1943,6 +1933,7 @@ msgstr "" "Корисно для сайтів, які просто переміщують контент, коли ви хочете знати лише про НОВИЙ контент. Порівнює нові рядки " "з усією історією цього завдання." +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "" @@ -2204,6 +2195,7 @@ msgstr "Очистити історії" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>Ви впевнені, що хочете очистити історію для вибраних елементів?</p><p>Цю дію неможливо скасувати.</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "ОК" @@ -2217,8 +2209,8 @@ msgid "Delete Watches?" msgstr "Видалити завдання?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>Ви впевнені, що хочете видалити вибрані завдання?</p><p>Цю дію неможливо скасувати.</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>Ви впевнені, що хочете видалити вибрані завдання?</strong></p><p>Цю дію неможливо скасувати.</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2715,10 +2707,6 @@ msgstr "Порожнє значення неприпустиме." msgid "Invalid value." msgstr "Неприпустиме значення." -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "Тег групи" @@ -2954,6 +2942,7 @@ msgstr "Збіг усіх наступних умов" msgid "Match any of the following" msgstr "Збіг будь-якої з наступних умов" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "Використовувати <title> сторінки у списку" @@ -3053,6 +3042,7 @@ msgstr "Оновлення UI в реальному часі увімкнено" msgid "Favicons Enabled" msgstr "Фавіконки увімкнено" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "Використовувати <title> сторінки у списку огляду завдань" @@ -3442,6 +3432,7 @@ msgstr "URL, за яким ведеться спостереження." msgid "The UUID of the watch." msgstr "UUID завдання." +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "Заголовок сторінки завдання, використовує <title>, якщо не задано - URL" @@ -3580,6 +3571,7 @@ msgstr "" "Використовуйте <a target=\"newwindow\" href=\"%(url)s\">URL сповіщень AppRise</a> для сповіщень практично в будь-який" " сервіс!" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<i>Будь ласка, прочитайте вікі по сервісах сповіщень тут для важливих нотаток щодо конфігурації</i>" @@ -3941,6 +3933,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/zh/LC_MESSAGES/messages.mo b/changedetectionio/translations/zh/LC_MESSAGES/messages.mo index c50133b9187a71483919282023d4fcf2c55769c5..844ae72671b3c0c8193aeb3a43d7ea4bd26acf74 100644 GIT binary patch delta 11138 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%0Ae}k@4{E$LREI-5i1w$uP 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 delta 11246 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 diff --git a/changedetectionio/translations/zh/LC_MESSAGES/messages.po b/changedetectionio/translations/zh/LC_MESSAGES/messages.po index 36aab44d..2d1c2b55 100644 --- a/changedetectionio/translations/zh/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/zh/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "仅导入列表前 5,000 个 URL,其余可稍后继续导入。" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "从列表导入 {count} 条,用时 {duration:.2f} 秒,跳过 {skipped_count} 条。" +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "从列表导入 {count} 条,用时 {duration} 秒,跳过 {skipped_count} 条。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "JSON 结构无效,文件是否损坏?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "从 Distill.io 导入 {count} 条,用时 {duration:.2f} 秒,跳过 {skipped_count} 条。" +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "从 Distill.io 导入 {count} 条,用时 {duration} 秒,跳过 {skipped_count} 条。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -192,22 +192,18 @@ msgstr "处理第 {} 行时出错,请检查单元格数据类型是否正确 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "从 Wachete .xlsx 导入 {count} 条,用时 {duration:.2f} 秒" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "从 Wachete .xlsx 导入 {count} 条,用时 {duration} 秒" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "从自定义 .xlsx 导入 {count} 条,用时 {duration:.2f} 秒" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "从自定义 .xlsx 导入 {count} 条,用时 {duration} 秒" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URL 列表" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX 与 Wachete" @@ -242,6 +238,7 @@ msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON msgstr "复制并粘贴 Distill.io 监控的“导出”文件(JSON)。" # TN: CJK scripts degrade when italicized; emphasis is rendered with <strong> instead. +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -370,8 +367,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -395,14 +392,6 @@ msgstr "全局过滤器" msgid "UI Options" msgstr "界面选项" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "备份" @@ -1215,6 +1204,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "这些设置会<strong><i>应用</i></strong>到现有的所有监控项配置中。" @@ -1920,6 +1910,7 @@ msgid "" msgstr "适合仅移动内容的网站,想知道新增内容时使用,会将新行与该监控项的全部历史进行比对。" # TN: CJK scripts degrade when italicized; reference is wrapped in “” instead. +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "有助于减少因行顺序变化导致的变更,可结合下方的“检查唯一行”一起使用。" @@ -2177,6 +2168,7 @@ msgstr "清除历史记录" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>确定要清除所选项的历史记录吗?</p><p>此操作不可撤销。</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "确定" @@ -2190,8 +2182,8 @@ msgid "Delete Watches?" msgstr "删除监控项?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>确定要删除所选监控项吗?</p><p>此操作不可撤销。</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>确定要删除所选监控项吗?</strong></p><p>此操作不可撤销。</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2688,10 +2680,6 @@ msgstr "不允许为空。" msgid "Invalid value." msgstr "值无效。" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "分组 / 标签" @@ -2927,6 +2915,7 @@ msgstr "匹配以下全部" msgid "Match any of the following" msgstr "匹配以下任意" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "列表中使用页面 <title>" @@ -3026,6 +3015,7 @@ msgstr "启用实时界面更新" msgid "Favicons Enabled" msgstr "启用站点图标" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "在监控概览列表中使用页面 <title>" @@ -3092,7 +3082,7 @@ msgstr "移除密码" #: changedetectionio/forms.py msgid "Render anchor tag content" -msgstr "渲染 <a> 标签内容" +msgstr "渲染 a 标签内容" #: changedetectionio/forms.py msgid "Allow anonymous access to watch history page when password is enabled" @@ -3415,6 +3405,7 @@ msgstr "被监控的 URL。" msgid "The UUID of the watch." msgstr "监视器的UUID。" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "监控项的页面标题,未设置时使用 <title>,否则回退为 URL" @@ -3552,6 +3543,7 @@ msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a msgstr "使用 <a target=\"newwindow\" href=\"%(url)s\">AppRise通知URL</a>,向几乎任何服务发送通知!" # TN: CJK scripts degrade when italicized; emphasis is rendered with <strong> instead. +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "<strong>请阅读通知服务 Wiki 以了解重要配置说明</strong>" @@ -3913,6 +3905,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.mo index 5d7895a19f574593d8546c0f00db073fc149eb4f..bdbc9feb91052b1c3d96e4aa7c261912c5bed0f4 100644 GIT binary patch delta 9190 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 Ub7H^$@ICL3d!ou0?J0cjUpn2}>Hq)$ delta 9290 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 ORgq-Iyi+mnh5rJ>GWRtA diff --git a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po index 3208ab9e..0b2349c5 100644 --- a/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po +++ b/changedetectionio/translations/zh_Hant_TW/LC_MESSAGES/messages.po @@ -160,8 +160,8 @@ msgstr "正在匯入清單中的前 5,000 個 URL,其餘的可以再次匯入 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from list in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} 已從清單匯入,耗時 {duration:.2f} 秒,跳過 {skipped_count} 筆。" +msgid "{count} Imported from list in {duration}s, {skipped_count} Skipped." +msgstr "{count} 已從清單匯入,耗時 {duration} 秒,跳過 {skipped_count} 筆。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read JSON file, was it broken?" @@ -173,8 +173,8 @@ msgstr "JSON 結構看起來無效,檔案是否已損毀?" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} Imported from Distill.io in {duration:.2f}s, {skipped_count} Skipped." -msgstr "{count} 已從 Distill.io 匯入,耗時 {duration:.2f} 秒,跳過 {skipped_count} 筆。" +msgid "{count} Imported from Distill.io in {duration}s, {skipped_count} Skipped." +msgstr "{count} 已從 Distill.io 匯入,耗時 {duration} 秒,跳過 {skipped_count} 筆。" #: changedetectionio/blueprint/imports/importer.py msgid "Unable to read export XLSX file, something wrong with the file?" @@ -192,22 +192,18 @@ msgstr "處理第 {} 行時發生錯誤,請檢查所有儲存格資料類型 #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from Wachete .xlsx in {duration:.2f}s" -msgstr "{count} 已從 Wachete .xlsx 匯入,耗時 {duration:.2f} 秒" +msgid "{count} imported from Wachete .xlsx in {duration}s" +msgstr "{count} 已從 Wachete .xlsx 匯入,耗時 {duration} 秒" #: changedetectionio/blueprint/imports/importer.py #, python-brace-format -msgid "{count} imported from custom .xlsx in {duration:.2f}s" -msgstr "{count} 已從自訂 .xlsx 匯入,耗時 {duration:.2f} 秒" +msgid "{count} imported from custom .xlsx in {duration}s" +msgstr "{count} 已從自訂 .xlsx 匯入,耗時 {duration} 秒" #: changedetectionio/blueprint/imports/templates/import.html msgid "URL List" msgstr "URL 列表" -#: changedetectionio/blueprint/imports/templates/import.html -msgid "Distill.io" -msgstr "Distill.io" - #: changedetectionio/blueprint/imports/templates/import.html msgid ".XLSX & Wachete" msgstr ".XLSX 和 Wachete" @@ -242,6 +238,7 @@ msgid "Copy and Paste your Distill.io watch 'export' file, this should be a JSON msgstr "複製並貼上您的 Distill.io 監測任務「匯出」檔案,這應該是一個 JSON 檔案。" # TN: CJK scripts degrade when italicized; emphasis is rendered with <strong> instead. +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/imports/templates/import.html msgid "" "This is <i>experimental</i>, supported fields are <code>name</code>, <code>uri</code>, <code>tags</code>, " @@ -369,8 +366,8 @@ msgid "AI / LLM configuration removed." msgstr "" #: changedetectionio/blueprint/settings/llm.py -#, python-format -msgid "AI summary cache cleared (%(count)s file(s) removed)." +#, python-brace-format +msgid "AI summary cache cleared ({} file(s) removed)." msgstr "" #: changedetectionio/blueprint/settings/templates/notification-log.html @@ -394,14 +391,6 @@ msgstr "全域過濾器" msgid "UI Options" msgstr "介面選項" -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "API" -msgstr "API" - -#: changedetectionio/blueprint/settings/templates/settings.html -msgid "RSS" -msgstr "RSS" - #: changedetectionio/blueprint/settings/templates/settings.html msgid "Backups" msgstr "備份" @@ -1214,6 +1203,7 @@ msgstr "" msgid "Leave unchecked to use the auto-generated colour based on the tag name." msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/tags/templates/edit-tag.html msgid "These settings are <strong><i>added</i></strong> to any existing watch configurations." msgstr "這些設定會<strong><i>新增</i></strong>至任何現有的監測設定中。" @@ -1919,6 +1909,7 @@ msgid "" msgstr "適用於內容僅會移動的網站,且您想知道何時新增了「新」內容,此功能會將新行與此監測任務的所有歷史記錄進行比較。" # TN: CJK scripts degrade when italicized; UI label reference is wrapped in 「」 instead. +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/blueprint/ui/templates/edit.html msgid "Helps reduce changes detected caused by sites shuffling lines around, combine with <i>check unique lines</i> below." msgstr "有助於減少因網站重新排列行而檢測到的變更,結合下方的「檢查獨特行」使用。" @@ -2176,6 +2167,7 @@ msgstr "清除歷史記錄" msgid "<p>Are you sure you want to clear history for the selected items?</p><p>This action cannot be undone.</p>" msgstr "<p>您確定要清除所選項目的歷史記錄嗎?</p><p>此動作無法復原。</p>" +#. Universally recognized; typically left as-is. dennis-ignore: W302 #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "OK" msgstr "確定" @@ -2189,8 +2181,8 @@ msgid "Delete Watches?" msgstr "刪除監測任務?" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html -msgid "<p>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" -msgstr "<p>您確定要刪除所選的監測任務嗎?</strong></p><p>此動作無法復原。</p>" +msgid "<p><strong>Are you sure you want to delete the selected watches?</strong></p><p>This action cannot be undone.</p>" +msgstr "<p><strong>您確定要刪除所選的監測任務嗎?</strong></p><p>此動作無法復原。</p>" #: changedetectionio/blueprint/watchlist/templates/watch-overview.html msgid "Queued size" @@ -2687,10 +2679,6 @@ msgstr "不允許空值。" msgid "Invalid value." msgstr "數值無效。" -#: changedetectionio/blueprint/imports/templates/import.html changedetectionio/forms.py -msgid "URL" -msgstr "URL" - #: changedetectionio/forms.py msgid "Group tag" msgstr "群組 / 標籤" @@ -2926,6 +2914,7 @@ msgstr "符合以下所有條件" msgid "Match any of the following" msgstr "符合以下任一條件" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in list" msgstr "在列表中使用頁面 <title>" @@ -3025,6 +3014,7 @@ msgstr "已啟用即時 UI 更新" msgid "Favicons Enabled" msgstr "啟用網站圖示 (Favicons)" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/forms.py msgid "Use page <title> in watch overview list" msgstr "在監測概覽列表中使用頁面 <title>" @@ -3414,6 +3404,7 @@ msgstr "" msgid "The UUID of the watch." msgstr "監測任務的 UUID。" +#. dennis-ignore: W303 - False positive caused by <title>. https://github.com/mozilla/dennis/issues/213 #: changedetectionio/templates/_common_fields.html msgid "The page title of the watch, uses <title> if not set, falls back to URL" msgstr "" @@ -3550,6 +3541,7 @@ msgstr "更多資訊" msgid "Use <a target=\"newwindow\" href=\"%(url)s\">AppRise Notification URLs</a> for notification to just about any service!" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/_common_fields.html msgid "<i>Please read the notification services wiki here for important configuration notes</i>" msgstr "" @@ -3911,6 +3903,7 @@ msgstr "" msgid "Note!: //text() function does not work where the <element> contains <![CDATA[]]>" msgstr "" +#. CJK fonts lack native italics; allow substitution with conventional local styling. dennis-ignore: W303 #: changedetectionio/templates/edit/include_subtract.html msgid "One CSS, xPath 1 & 2, JSON Path/JQ selector per line, <i>any</i> rules that matches will be used." msgstr "" diff --git a/setup.cfg b/setup.cfg index e213977e..309d5d2f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -7,7 +7,7 @@ mapping_file = babel.cfg output_file = changedetectionio/translations/messages.pot input_paths = changedetectionio keywords = _ _l gettext pgettext:1c,2 -add_comments = TRANSLATORS: +add_comments = TRANSLATORS:,dennis-ignore: # Options to reduce unnecessary changes in .pot files sort_by_file = true width = 120