Skip to content

Commit fcc3b52

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent ad574de commit fcc3b52

Some content is hidden

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

111 files changed

+232
-113
lines changed

c-api/concrete.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-02-25 14:44+0000\n"
14+
"POT-Creation-Date: 2026-03-17 14:51+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/gcsupport.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-02-27 14:36+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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/list.po

Lines changed: 35 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-03-15 14:24+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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"
@@ -77,6 +77,12 @@ msgid ""
7777
"instead of a :term:`strong reference`."
7878
msgstr ""
7979

80+
msgid ""
81+
"In the :term:`free-threaded build`, the returned :term:`borrowed reference` "
82+
"may become invalid if another thread modifies the list concurrently. Prefer :"
83+
"c:func:`PyList_GetItemRef`, which returns a :term:`strong reference`."
84+
msgstr ""
85+
8086
msgid "Similar to :c:func:`PyList_GetItem`, but without error checking."
8187
msgstr ""
8288

@@ -107,6 +113,13 @@ msgid ""
107113
"replaced; any reference in *list* at position *i* will be leaked."
108114
msgstr ""
109115

116+
msgid ""
117+
"In the :term:`free-threaded build`, this macro has no internal "
118+
"synchronization. It is normally only used to fill in new lists where no "
119+
"other thread has a reference to the list. If the list may be shared, use :c:"
120+
"func:`PyList_SetItem` instead, which uses a :term:`per-object lock`."
121+
msgstr ""
122+
110123
msgid ""
111124
"Insert the item *item* into list *list* in front of index *index*. Return "
112125
"``0`` if successful; return ``-1`` and set an exception if unsuccessful. "
@@ -134,6 +147,12 @@ msgid ""
134147
"list is not supported."
135148
msgstr ""
136149

150+
msgid ""
151+
"In the :term:`free-threaded build`, when *itemlist* is a :class:`list`, both "
152+
"*list* and *itemlist* are locked for the duration of the operation. For "
153+
"other iterables (or ``NULL``), only *list* is locked."
154+
msgstr ""
155+
137156
msgid ""
138157
"Extend *list* with the contents of *iterable*. This is the same as "
139158
"``PyList_SetSlice(list, PY_SSIZE_T_MAX, PY_SSIZE_T_MAX, iterable)`` and "
@@ -145,6 +164,14 @@ msgid ""
145164
"object. Return 0 on success."
146165
msgstr ""
147166

167+
msgid ""
168+
"In the :term:`free-threaded build`, when *iterable* is a :class:`list`, :"
169+
"class:`set`, :class:`dict`, or dict view, both *list* and *iterable* (or its "
170+
"underlying dict) are locked for the duration of the operation. For other "
171+
"iterables, only *list* is locked; *iterable* may be concurrently modified by "
172+
"another thread."
173+
msgstr ""
174+
148175
msgid ""
149176
"Remove all items from *list*. This is the same as ``PyList_SetSlice(list, "
150177
"0, PY_SSIZE_T_MAX, NULL)`` and analogous to ``list.clear()`` or ``del "
@@ -161,6 +188,13 @@ msgid ""
161188
"failure. This is equivalent to ``list.sort()``."
162189
msgstr ""
163190

191+
msgid ""
192+
"In the :term:`free-threaded build`, element comparison via :meth:`~object."
193+
"__lt__` can execute arbitrary Python code, during which the :term:`per-"
194+
"object lock` may be temporarily released. For built-in types (:class:`str`, :"
195+
"class:`int`, :class:`float`), the lock is not released during comparison."
196+
msgstr ""
197+
164198
msgid ""
165199
"Reverse the items of *list* in place. Return ``0`` on success, ``-1`` on "
166200
"failure. This is the equivalent of ``list.reverse()``."

c-api/picklebuffer.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-02-25 14:44+0000\n"
14+
"POT-Creation-Date: 2026-03-17 14:51+0000\n"
1515
"PO-Revision-Date: 2025-11-17 14:16+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/typeobj.po

Lines changed: 41 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-03-01 14:19+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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"
@@ -3401,6 +3401,34 @@ msgstr ""
34013401
msgid "Return ``0``."
34023402
msgstr ""
34033403

3404+
msgid "**Thread safety:**"
3405+
msgstr ""
3406+
3407+
msgid "In the :term:`free-threaded build`, implementations must ensure:"
3408+
msgstr ""
3409+
3410+
msgid "The export counter increment in step (3) is atomic."
3411+
msgstr ""
3412+
3413+
msgid ""
3414+
"The underlying buffer data remains valid and at a stable memory location for "
3415+
"the lifetime of all exports."
3416+
msgstr ""
3417+
3418+
msgid ""
3419+
"For objects that support resizing or reallocation (such as :class:"
3420+
"`bytearray`), the export counter is checked atomically before such "
3421+
"operations, and :exc:`BufferError` is raised if exports exist."
3422+
msgstr ""
3423+
3424+
msgid "The function is safe to call concurrently from multiple threads."
3425+
msgstr ""
3426+
3427+
msgid ""
3428+
"See also :ref:`thread-safety-memoryview` for the Python-level thread safety "
3429+
"guarantees of :class:`memoryview` objects."
3430+
msgstr ""
3431+
34043432
msgid ""
34053433
"If *exporter* is part of a chain or tree of buffer providers, two main "
34063434
"schemes can be used:"
@@ -3457,6 +3485,18 @@ msgstr ""
34573485
msgid "If the counter is ``0``, free all memory associated with *view*."
34583486
msgstr ""
34593487

3488+
msgid "In the :term:`free-threaded build`:"
3489+
msgstr ""
3490+
3491+
msgid "The export counter decrement in step (1) must be atomic."
3492+
msgstr ""
3493+
3494+
msgid ""
3495+
"Resource cleanup when the counter reaches zero must be done atomically, as "
3496+
"the final release may race with concurrent releases from other threads and "
3497+
"dellocation must only happen once."
3498+
msgstr ""
3499+
34603500
msgid ""
34613501
"The exporter MUST use the :c:member:`~Py_buffer.internal` field to keep "
34623502
"track of buffer-specific resources. This field is guaranteed to remain "

deprecations/pending-removal-in-3.17.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-02-25 14:44+0000\n"
14+
"POT-Creation-Date: 2026-03-17 14:51+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/__future__.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-02-27 14:36+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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/ast.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-02-27 14:36+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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/binascii.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-02-27 14:36+0000\n"
14+
"POT-Creation-Date: 2026-03-19 14:42+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/bz2.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-02-27 14:36+0000\n"
15+
"POT-Creation-Date: 2026-03-19 14:42+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)