@@ -2110,7 +2110,7 @@ autofixer which can automatically sanitize the markup.
21102110URL
21112111~~~
21122112
2113- :Summary: The translation does not contain an URL.
2113+ :Summary: The translation does not contain a URL.
21142114:Scope: translated strings
21152115:Check class: ``weblate.checks.markup.URLCheck ``
21162116:Check identifier: ``url ``
@@ -2120,7 +2120,7 @@ URL
21202120
21212121.. AUTOGENERATED END: check-url
21222122
2123- The translation does not contain an URL. This is triggered only in case the
2123+ The translation does not contain a URL. This is triggered only in case the
21242124unit is marked as containing URL. In that case the translation has to be a
21252125valid URL.
21262126
@@ -2266,7 +2266,7 @@ meant to be used directly as ``.innerHTML`` (rather than ``.textContent``) for
22662266some HTML element. For example, when using the Fluent DOM package.
22672267
22682268The aim of this check is to predict how the value will be parsed as inner HTML,
2269- assuming a HTML5 conforming parser, to catch cases where there would be some
2269+ assuming an HTML5 conforming parser, to catch cases where there would be some
22702270"unintended" loss of the string, without being too strict about technical
22712271parsing errors that do *not * lead to a loss of the string.
22722272
@@ -2280,7 +2280,7 @@ Generally, most Fluent values are not expected to contain any HTML markup.
22802280Therefore, this check does not expect or want translators and developers to have
22812281to care about strictly avoiding *any * technical HTML5 parsing errors (let alone
22822282XHTML parsing errors). Instead, this check will just want to warn them when they
2283- may have unintentionally opened a HTML tag or inserted a character reference.
2283+ may have unintentionally opened an HTML tag or inserted a character reference.
22842284
22852285Moreover, for the Fluent values that intentionally contain HTML tags or
22862286character references, this check will verify some "good practices", such as
@@ -2314,19 +2314,19 @@ Examples:
23142314
23152315 * - ``three <four/> ``
23162316 - yes
2317- - ``four `` is not a HTML void element, so should not self-close.
2317+ - ``four `` is not an HTML void element, so should not self-close.
23182318
23192319 * - ``<a-b>text</a-b> ``
23202320 - no
23212321 - Custom element tag with a matching closing tag.
23222322
23232323 * - ``a <img/> b ``
23242324 - no
2325- - ``img `` is a HTML void element. Self-closing is allowed.
2325+ - ``img `` is an HTML void element. Self-closing is allowed.
23262326
23272327 * - ``a <br> b ``
23282328 - no
2329- - ``br `` is a HTML void element.
2329+ - ``br `` is an HTML void element.
23302330
23312331 * - ``<img class=a/> ``
23322332 - yes
0 commit comments