@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.11\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-10-13 16:41 +0000\n "
14+ "POT-Creation-Date :2025-11-01 16:25 +0000\n "
1515"PO-Revision-Date :2025-09-22 16:50+0000\n "
1616"Last-Translator :python-doc bot, 2025\n "
1717"Language-Team :Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n "
@@ -39,9 +39,15 @@ msgid "Create a parser instance able to parse invalid markup."
3939msgstr ""
4040
4141msgid ""
42- "If *convert_charrefs* is ``True`` (the default), all character references "
43- "(except the ones in ``script``/``style`` elements) are automatically "
44- "converted to the corresponding Unicode characters."
42+ "If *convert_charrefs* is true (the default), all character references "
43+ "(except the ones in elements like ``script`` and ``style``) are "
44+ "automatically converted to the corresponding Unicode characters."
45+ msgstr ""
46+
47+ msgid ""
48+ "If *scripting* is false (the default), the content of the ``noscript`` "
49+ "element is parsed normally; if it's true, it's returned as is without being "
50+ "parsed."
4551msgstr ""
4652
4753msgid ""
@@ -63,6 +69,9 @@ msgstr ""
6369msgid "The default value for argument *convert_charrefs* is now ``True``."
6470msgstr ""
6571
72+ msgid "Added the *scripting* parameter."
73+ msgstr ""
74+
6675msgid "Example HTML Parser Application"
6776msgstr ""
6877
@@ -157,21 +166,21 @@ msgstr ""
157166
158167msgid ""
159168"This method is called to process arbitrary data (e.g. text nodes and the "
160- "content of``< script>...</script> `` and ``< style>...</style> ``)."
169+ "content ofelements like `` script`` and ``style``)."
161170msgstr ""
162171
163172msgid ""
164173"This method is called to process a named character reference of the form "
165174"``&name;`` (e.g. ``>``), where *name* is a general entity reference (e.g. "
166- "``'gt'``). This method isnever called if *convert_charrefs* is``True`` ."
175+ "``'gt'``). This method isonly called if *convert_charrefs* isfalse ."
167176msgstr ""
168177
169178msgid ""
170179"This method is called to process decimal and hexadecimal numeric character "
171180"references of the form :samp:`&#{NNN};` and :samp:`&#x{NNN};`. For example, "
172181"the decimal equivalent for ``>`` is ``>``, whereas the hexadecimal is "
173- "``>``; in this case the method will receive ``'62'`` or ``'x3E'``. "
174- "This method isnever called if *convert_charrefs* is``True`` ."
182+ "``>``; in this case the method will receive ``'62'`` or ``'x3E'``.This "
183+ "method isonly called if *convert_charrefs* isfalse ."
175184msgstr ""
176185
177186msgid ""
@@ -240,8 +249,8 @@ msgid "Parsing an element with a few attributes and a title::"
240249msgstr ""
241250
242251msgid ""
243- "The content of ``script`` and ``style``elements is returned as is, without "
244- "further parsing::"
252+ "The content ofelements like ``script`` and ``style`` is returned as is, "
253+ "without further parsing::"
245254msgstr ""
246255
247256msgid "Parsing comments::"
@@ -254,8 +263,8 @@ msgstr ""
254263
255264msgid ""
256265"Feeding incomplete chunks to :meth:`~HTMLParser.feed` works, but :meth:"
257- "`~HTMLParser.handle_data` might be called more than once(unless "
258- "*convert_charrefs* isset to ``True``) ::"
266+ "`~HTMLParser.handle_data` might be called more than onceif "
267+ "*convert_charrefs* isfalse ::"
259268msgstr ""
260269
261270msgid "Parsing invalid HTML (e.g. unquoted attributes) also works::"