Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitbbf1959

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent397f71c commitbbf1959

File tree

2 files changed

+37
-15
lines changed

2 files changed

+37
-15
lines changed

‎library/html.parser.po‎

Lines changed: 23 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
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."
3939
msgstr""
4040

4141
msgid""
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."
4551
msgstr""
4652

4753
msgid""
@@ -63,6 +69,9 @@ msgstr ""
6369
msgid"The default value for argument *convert_charrefs* is now ``True``."
6470
msgstr""
6571

72+
msgid"Added the *scripting* parameter."
73+
msgstr""
74+
6675
msgid"Example HTML Parser Application"
6776
msgstr""
6877

@@ -190,21 +199,21 @@ msgstr ""
190199

191200
msgid""
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``)."
194203
msgstr""
195204

196205
msgid""
197206
"This method is called to process a named character reference of the form "
198207
"``&name;`` (e.g. ``&gt;``), 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."
200209
msgstr""
201210

202211
msgid""
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 ``&gt;`` is ``&#62;``, whereas the hexadecimal is "
206-
"``&#x3E;``; in this case the method will receive ``'62'`` or ``'x3E'``. "
207-
"Thismethod isnever called if *convert_charrefs* is``True``."
215+
"``&#x3E;``; in this case the method will receive ``'62'`` or ``'x3E'``.This "
216+
"method isonly called if *convert_charrefs* isfalse."
208217
msgstr""
209218

210219
msgid""
@@ -328,8 +337,8 @@ msgid ""
328337
msgstr""
329338

330339
msgid""
331-
"The content of ``script`` and ``style``elementsis returned as is, without "
332-
"further parsing:"
340+
"The content ofelements like``script`` and ``style`` is returned as is, "
341+
"withoutfurther parsing:"
333342
msgstr""
334343

335344
msgid""
@@ -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! &#9786;</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! &#9786;</strong>\");\n"
348357
"End tag : script"
349358
msgstr""
350359

@@ -377,8 +386,8 @@ msgstr ""
377386

378387
msgid""
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:"
382391
msgstr""
383392

384393
msgid""

‎whatsnew/changelog.po‎

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-10-31 14:16+0000\n"
14+
"POT-Creation-Date: 2025-11-01 14:13+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -98,9 +98,22 @@ msgid ""
9898
"Patch by Bénédikt Tran."
9999
msgstr ""
100100

101+
msgid ""
102+
":gh:`137836`: Add support of the \"plaintext\" element, RAWTEXT elements "
103+
"\"xmp\", \"iframe\", \"noembed\" and \"noframes\", and optionally RAWTEXT "
104+
"element \"noscript\" in :class:`html.parser.HTMLParser`."
105+
msgstr ""
106+
107+
msgid ":gh:`136065`: Fix quadratic complexity in :func:`os.path.expandvars`."
108+
msgstr ""
109+
101110
msgid "Library"
102111
msgstr "Biblioteka"
103112

113+
msgid ""
114+
":gh:`140874`: Bump the version of pip bundled in ensurepip to version 25.3"
115+
msgstr ""
116+
104117
msgid ":gh:`120057`: Add :func:`os.reload_environ` to ``os.__all__``."
105118
msgstr ""
106119

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp