Skip to content

Commit f438a83

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

32 files changed

+209
-51
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
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 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.48%25-0.svg)](https://translations.python.org/#pl)
19-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.46%25-0.svg)](https://translations.python.org/#pl)
19+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.45%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

2222
*Przeczytaj to w innym języku: [polski](README.md)*

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
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 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.48%25-0.svg)](https://translations.python.org/#pl)
19-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.46%25-0.svg)](https://translations.python.org/#pl)
19+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.45%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

2222
*Read this in another language: [English](README.en.md)*

c-api/exceptions.po

Lines changed: 4 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-11-13 18:32+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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"
@@ -904,6 +904,9 @@ msgid ""
904904
"recursion depth limit."
905905
msgstr ""
906906

907+
msgid "The :c:func:`PyUnstable_ThreadState_SetStackProtection` function."
908+
msgstr ""
909+
907910
msgid ""
908911
"This function is now also available in the :ref:`limited API <limited-c-"
909912
"api>`."

c-api/import.po

Lines changed: 7 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-11-15 14:12+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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"
@@ -325,6 +325,12 @@ msgid ""
325325
"initialization."
326326
msgstr ""
327327

328+
msgid ""
329+
"The table of built-in modules used by Python initialization. Do not use this "
330+
"directly; use :c:func:`PyImport_AppendInittab` and :c:func:"
331+
"`PyImport_ExtendInittab` instead."
332+
msgstr ""
333+
328334
msgid "Import the module *mod_name* and get its attribute *attr_name*."
329335
msgstr ""
330336

c-api/init.po

Lines changed: 52 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-11-21 14:14+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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"
@@ -1618,6 +1618,57 @@ msgid ""
16181618
"See also :c:func:`PyEval_SetTrace` and :c:func:`PyEval_SetProfile` functions."
16191619
msgstr ""
16201620

1621+
msgid ""
1622+
"Set the stack protection start address and stack protection size of a Python "
1623+
"thread state."
1624+
msgstr ""
1625+
1626+
msgid ""
1627+
"On success, return ``0``. On failure, set an exception and return ``-1``."
1628+
msgstr ""
1629+
1630+
msgid ""
1631+
"CPython implements :ref:`recursion control <recursion>` for C code by "
1632+
"raising :py:exc:`RecursionError` when it notices that the machine execution "
1633+
"stack is close to overflow. See for example the :c:func:"
1634+
"`Py_EnterRecursiveCall` function. For this, it needs to know the location of "
1635+
"the current thread's stack, which it normally gets from the operating "
1636+
"system. When the stack is changed, for example using context switching "
1637+
"techniques like the Boost library's ``boost::context``, you must call :c:"
1638+
"func:`~PyUnstable_ThreadState_SetStackProtection` to inform CPython of the "
1639+
"change."
1640+
msgstr ""
1641+
1642+
msgid ""
1643+
"Call :c:func:`~PyUnstable_ThreadState_SetStackProtection` either before or "
1644+
"after changing the stack. Do not call any other Python C API between the "
1645+
"call and the stack change."
1646+
msgstr ""
1647+
1648+
msgid ""
1649+
"See :c:func:`PyUnstable_ThreadState_ResetStackProtection` for undoing this "
1650+
"operation."
1651+
msgstr ""
1652+
1653+
msgid ""
1654+
"This function was added in a bugfix release, and extensions that use it will "
1655+
"be incompatible with Python 3.14.0. Most packaging tools for Python are not "
1656+
"able to handle this incompatibility automatically, and will need explicit "
1657+
"configuration. When using PyPA standards (wheels and source distributions), "
1658+
"specify ``Requires-Python: != 3.14.0.*`` in `core metadata <https://"
1659+
"packaging.python.org/en/latest/specifications/core-metadata/#requires-"
1660+
"python>`_."
1661+
msgstr ""
1662+
1663+
msgid ""
1664+
"Reset the stack protection start address and stack protection size of a "
1665+
"Python thread state to the operating system defaults."
1666+
msgstr ""
1667+
1668+
msgid ""
1669+
"See :c:func:`PyUnstable_ThreadState_SetStackProtection` for an explanation."
1670+
msgstr ""
1671+
16211672
msgid "Get the current interpreter."
16221673
msgstr ""
16231674

c-api/init_config.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: 2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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/intro.po

Lines changed: 17 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-11-19 19:26+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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"
@@ -410,6 +410,22 @@ msgid ""
410410
"Eastern Hemisphere.\");"
411411
msgstr ""
412412

413+
msgid "Compute the length of a statically allocated C array at compile time."
414+
msgstr ""
415+
416+
msgid ""
417+
"The *array* argument must be a C array with a size known at compile time. "
418+
"Passing an array with an unknown size, such as a heap-allocated array, will "
419+
"result in a compilation error on some compilers, or otherwise produce "
420+
"incorrect results."
421+
msgstr ""
422+
423+
msgid "This is roughly equivalent to::"
424+
msgstr ""
425+
426+
msgid "sizeof(array) / sizeof((array)[0])"
427+
msgstr ""
428+
413429
msgid "Objects, Types and Reference Counts"
414430
msgstr "Przedmioty, ich Rodzaje i Liczby Odwołań"
415431

c-api/mapping.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: 2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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/memory.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: 2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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/monitoring.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: 2025-11-05 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-25 14:15+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)