@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.14\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-10-25 14:12 +0000\n "
14+ "POT-Creation-Date :2025-11-01 14:13 +0000\n "
1515"PO-Revision-Date :2025-09-16 00:01+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
@@ -190,21 +199,21 @@ msgstr ""
190199
191200msgid ""
192201"This method is called to process arbitrary data (e.g. text nodes and the "
193- "content of``< script>...</script> `` and ``< style>...</style> ``)."
202+ "content ofelements like `` script`` and ``style``)."
194203msgstr ""
195204
196205msgid ""
197206"This method is called to process a named character reference of the form "
198207"``&name;`` (e.g. ``>``), where *name* is a general entity reference (e.g. "
199- "``'gt'``). This method isnever called if *convert_charrefs* is``True`` ."
208+ "``'gt'``). This method isonly called if *convert_charrefs* isfalse ."
200209msgstr ""
201210
202211msgid ""
203212"This method is called to process decimal and hexadecimal numeric character "
204213"references of the form :samp:`&#{NNN};` and :samp:`&#x{NNN};`. For example, "
205214"the decimal equivalent for ``>`` is ``>``, whereas the hexadecimal is "
206- "``>``; in this case the method will receive ``'62'`` or ``'x3E'``. "
207- "This method isnever called if *convert_charrefs* is``True`` ."
215+ "``>``; in this case the method will receive ``'62'`` or ``'x3E'``.This "
216+ "method isonly called if *convert_charrefs* isfalse ."
208217msgstr ""
209218
210219msgid ""
@@ -328,8 +337,8 @@ msgid ""
328337msgstr ""
329338
330339msgid ""
331- "The content of ``script`` and ``style``elements is returned as is, without "
332- "further parsing:"
340+ "The content ofelements like ``script`` and ``style`` is returned as is, "
341+ "without further parsing:"
333342msgstr ""
334343
335344msgid ""
@@ -341,10 +350,10 @@ msgid ""
341350"End tag : style\n"
342351"\n"
343352">>> parser.feed('<script type=\" text/javascript\" >'\n"
344- "... 'alert(\" <strong>hello!</strong>\" );</script>')\n"
353+ "... 'alert(\" <strong>hello! ☺ </strong>\" );</script>')\n"
345354"Start tag: script\n"
346355" attr: ('type', 'text/javascript')\n"
347- "Data : alert(\" <strong>hello!</strong>\" );\n"
356+ "Data : alert(\" <strong>hello! ☺ </strong>\" );\n"
348357"End tag : script"
349358msgstr ""
350359
@@ -377,8 +386,8 @@ msgstr ""
377386
378387msgid ""
379388"Feeding incomplete chunks to :meth:`~HTMLParser.feed` works, but :meth:"
380- "`~HTMLParser.handle_data` might be called more than once(unless "
381- "*convert_charrefs* isset to ``True``) :"
389+ "`~HTMLParser.handle_data` might be called more than onceif "
390+ "*convert_charrefs* isfalse :"
382391msgstr ""
383392
384393msgid ""