Skip to content

Commit 39dca9e

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b85a07d commit 39dca9e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+170
-55
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1515
]]] -->
1616
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
1717
[![core 98.83%](https://img.shields.io/badge/core-98.83%25-0.svg)](https://translations.python.org/#pl)
18-
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.36%25-0.svg)](https://translations.python.org/#pl)
18+
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.35%25-0.svg)](https://translations.python.org/#pl)
1919
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.27%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1515
]]] -->
1616
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
1717
[![podstawowe artykuły 98.83%](https://img.shields.io/badge/podstawowe_artykuły-98.83%25-0.svg)](https://translations.python.org/#pl)
18-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.36%25-0.svg)](https://translations.python.org/#pl)
18+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.35%25-0.svg)](https://translations.python.org/#pl)
1919
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.27%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

c-api/dict.po

Lines changed: 46 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: 2026-04-01 14:58+0000\n"
14+
"POT-Creation-Date: 2026-04-13 15:10+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -78,6 +78,12 @@ msgid ""
7878
"is equivalent to the Python expression ``key in p``."
7979
msgstr ""
8080

81+
msgid ""
82+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
83+
"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:"
84+
"`bytes`."
85+
msgstr ""
86+
8187
msgid ""
8288
"This is the same as :c:func:`PyDict_Contains`, but *key* is specified as a :"
8389
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
@@ -144,6 +150,12 @@ msgid ""
144150
"`PyDict_GetItemWithError` function instead."
145151
msgstr ""
146152

153+
msgid ""
154+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
155+
"may become invalid if another thread modifies the dictionary concurrently. "
156+
"Prefer :c:func:`PyDict_GetItemRef`, which returns a :term:`strong reference`."
157+
msgstr ""
158+
147159
msgid ""
148160
"Calling this API without an :term:`attached thread state` had been allowed "
149161
"for historical reason. It is no longer allowed."
@@ -168,6 +180,13 @@ msgid ""
168180
"function with your own :c:func:`PyUnicode_FromString` *key* instead."
169181
msgstr ""
170182

183+
msgid ""
184+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
185+
"may become invalid if another thread modifies the dictionary concurrently. "
186+
"Prefer :c:func:`PyDict_GetItemStringRef`, which returns a :term:`strong "
187+
"reference`."
188+
msgstr ""
189+
171190
msgid ""
172191
"Similar to :c:func:`PyDict_GetItemRef`, but *key* is specified as a :c:expr:"
173192
"`const char*` UTF-8 encoded bytes string, rather than a :c:expr:`PyObject*`."
@@ -182,6 +201,13 @@ msgid ""
182201
"the insertion."
183202
msgstr ""
184203

204+
msgid ""
205+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
206+
"may become invalid if another thread modifies the dictionary concurrently. "
207+
"Prefer :c:func:`PyDict_SetDefaultRef`, which returns a :term:`strong "
208+
"reference`."
209+
msgstr ""
210+
185211
msgid ""
186212
"Inserts *default_value* into the dictionary *p* with a key of *key* if the "
187213
"key is not already present in the dictionary. If *result* is not ``NULL``, "
@@ -332,6 +358,13 @@ msgid ""
332358
"or ``-1`` if an exception was raised."
333359
msgstr ""
334360

361+
msgid ""
362+
"In the :term:`free-threaded build`, when *b* is a :class:`dict` (with the "
363+
"standard iterator), both *a* and *b* are locked for the duration of the "
364+
"operation. When *b* is a non-dict mapping, only *a* is locked; *b* may be "
365+
"concurrently modified by another thread."
366+
msgstr ""
367+
335368
msgid ""
336369
"This is the same as ``PyDict_Merge(a, b, 1)`` in C, and is similar to ``a."
337370
"update(b)`` in Python except that :c:func:`PyDict_Update` doesn't fall back "
@@ -355,13 +388,25 @@ msgid ""
355388
" a[key] = value"
356389
msgstr ""
357390

391+
msgid ""
392+
"In the :term:`free-threaded <free threading>` build, only *a* is locked. The "
393+
"iteration over *seq2* is not synchronized; *seq2* may be concurrently "
394+
"modified by another thread."
395+
msgstr ""
396+
358397
msgid ""
359398
"Register *callback* as a dictionary watcher. Return a non-negative integer "
360399
"id which must be passed to future calls to :c:func:`PyDict_Watch`. In case "
361400
"of error (e.g. no more watcher IDs available), return ``-1`` and set an "
362401
"exception."
363402
msgstr ""
364403

404+
msgid ""
405+
"This function is not internally synchronized. In the :term:`free-threaded "
406+
"<free threading>` build, callers should ensure no concurrent calls to :c:"
407+
"func:`PyDict_AddWatcher` or :c:func:`PyDict_ClearWatcher` are in progress."
408+
msgstr ""
409+
365410
msgid ""
366411
"Clear watcher identified by *watcher_id* previously returned from :c:func:"
367412
"`PyDict_AddWatcher`. Return ``0`` on success, ``-1`` on error (e.g. if the "

c-api/file.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/lifecycle.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-21 14:21+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/object.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/set.po

Lines changed: 18 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: 2026-04-05 14:30+0000\n"
14+
"POT-Creation-Date: 2026-04-13 15:10+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -103,6 +103,11 @@ msgid ""
103103
"(``c=set(s)``)."
104104
msgstr ""
105105

106+
msgid ""
107+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
108+
"*iterable* is a :class:`set`, :class:`frozenset` or :class:`dict`."
109+
msgstr ""
110+
106111
msgid ""
107112
"Return a new :class:`frozenset` containing objects returned by the "
108113
"*iterable*. The *iterable* may be ``NULL`` to create a new empty frozenset. "
@@ -133,6 +138,12 @@ msgid ""
133138
"instance of a subtype."
134139
msgstr ""
135140

141+
msgid ""
142+
"The operation is atomic on :term:`free threading <free-threaded build>` when "
143+
"*key* is :class:`str`, :class:`int`, :class:`float`, :class:`bool` or :class:"
144+
"`bytes`."
145+
msgstr ""
146+
136147
msgid ""
137148
"Add *key* to a :class:`set` instance. Also works with :class:`frozenset` "
138149
"instances (like :c:func:`PyTuple_SetItem` it can be used to fill in the "
@@ -170,6 +181,12 @@ msgid ""
170181
"`set` or its subtype."
171182
msgstr ""
172183

184+
msgid ""
185+
"In the :term:`free-threaded build`, the set is emptied before its entries "
186+
"are cleared, so other threads will observe an empty set rather than "
187+
"intermediate states."
188+
msgstr ""
189+
173190
msgid "Deprecated API"
174191
msgstr ""
175192

faq/design.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-21 14:21+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/logging-cookbook.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+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/asyncio-protocol.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-03-23 14:50+0000\n"
14+
"POT-Creation-Date: 2026-04-11 14:31+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)