Skip to content

Commit 5ada3ef

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent d97275b commit 5ada3ef

8 files changed

Lines changed: 48 additions & 9 deletions

File tree

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.601%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.600%25-0.svg)
1717
![5 Translators](https://img.shields.io/badge/Translators-5-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.601%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.600%25-0.svg)
1717
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
1818
<!-- [[[end]]] -->
1919

installing/index.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-07 15:48+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/html.parser.po

Lines changed: 19 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-09 16:07+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -168,7 +168,8 @@ msgid ""
168168
"*attrs* argument is a list of ``(name, value)`` pairs containing the "
169169
"attributes found inside the tag's ``<>`` brackets. The *name* will be "
170170
"translated to lower case, and quotes in the *value* have been removed, and "
171-
"character and entity references have been replaced."
171+
"character and entity references have been replaced. For empty attributes, "
172+
"*value* is ``None``."
172173
msgstr ""
173174

174175
msgid ""
@@ -357,6 +358,22 @@ msgid ""
357358
"End tag : script"
358359
msgstr ""
359360

361+
msgid ""
362+
"Attribute names are converted to lowercase, quotes from attribute values "
363+
"removed, and ``None`` is returned as *value* for empty attributes (such as "
364+
"``checked``):"
365+
msgstr ""
366+
367+
msgid ""
368+
">>> parser.feed(\"<input TYPE='checkbox' checked required='' "
369+
"disabled=disabled>\")\n"
370+
"Start tag: input\n"
371+
" attr: ('type', 'checkbox')\n"
372+
" attr: ('checked', None)\n"
373+
" attr: ('required', '')\n"
374+
" attr: ('disabled', 'disabled')"
375+
msgstr ""
376+
360377
msgid "Parsing comments:"
361378
msgstr ""
362379

library/multiprocessing.po

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-21 15:56+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -3204,6 +3204,18 @@ msgid ""
32043204
"urandom`."
32053205
msgstr ""
32063206

3207+
msgid ""
3208+
"This authentication protects :class:`Listener` and :func:`Client` "
3209+
"connections, which are reachable by address. It is not applied to the "
3210+
"anonymous pipes created by :func:`~multiprocessing.Pipe` or used internally "
3211+
"by :class:`~multiprocessing.Queue`. :mod:`multiprocessing` treats all local "
3212+
"processes running as the same user as trusted; on most operating systems "
3213+
"such processes can access each other's pipe file descriptors regardless. "
3214+
"Applications that require isolation between processes of the same user must "
3215+
"arrange it at the operating-system level -- for example, by running workers "
3216+
"under a different user account or in a sandbox."
3217+
msgstr ""
3218+
32073219
msgid "Logging"
32083220
msgstr "Logowanie"
32093221

library/pkgutil.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-07 15:48+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/subprocess.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-07 15:48+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

whatsnew/changelog.po

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-04-25 15:22+0000\n"
14+
"POT-Creation-Date: 2026-04-27 16:32+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:05+0000\n"
1616
"Last-Translator: python-doc bot, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -117,6 +117,16 @@ msgid ""
117117
"``__next__``."
118118
msgstr ""
119119

120+
msgid ""
121+
":gh:`105936`: Attempting to mutate non-field attributes of :mod:"
122+
"`dataclasses` with both *frozen* and *slots* being ``True`` now raises :"
123+
"class:`~dataclasses.FrozenInstanceError` instead of :class:`TypeError`. "
124+
"Their non-dataclass subclasses can now freely mutate non-field attributes, "
125+
"and the original non-slotted class can be garbage collected. The fix also "
126+
"handles the case of an empty ``__class__`` cell on a function found within "
127+
"the class (:gh:`148947`)."
128+
msgstr ""
129+
120130
msgid ""
121131
":gh:`132631`: Fix \"I/O operation on closed file\" when parsing JSON Lines "
122132
"file with :mod:`JSON CLI <json.tool>`."

0 commit comments

Comments
 (0)