Skip to content

Commit 9ffef30

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 730ca05 commit 9ffef30

55 files changed

Lines changed: 290 additions & 231 deletions

Some content is hidden

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

README.en.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1616
''')
1717
]]] -->
1818
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml)
19-
[![core 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl)
20-
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.69%25-0.svg)](https://translations.python.org/#pl)
21-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.45%25-0.svg)](https://translations.python.org/#pl)
19+
[![core 99.87%](https://img.shields.io/badge/core-99.87%25-0.svg)](https://translations.python.org/#pl)
20+
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.68%25-0.svg)](https://translations.python.org/#pl)
21+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.44%25-0.svg)](https://translations.python.org/#pl)
2222
[![lint errors count](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=lint%20errors)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml)
2323

2424
<!-- [[[end]]] -->

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1616
''')
1717
]]] -->
1818
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-and-build.yml)
19-
[![podstawowe artykuły 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl)
20-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.69%25-0.svg)](https://translations.python.org/#pl)
21-
[![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)
19+
[![podstawowe artykuły 99.87%](https://img.shields.io/badge/podstawowe_artykuły-99.87%25-0.svg)](https://translations.python.org/#pl)
20+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.68%25-0.svg)](https://translations.python.org/#pl)
21+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-12.44%25-0.svg)](https://translations.python.org/#pl)
2222
[![liczba błędów lintowania](https://shields.io/badge/dynamic/xml?url=https%3A%2F%2Ftranslations.python.org%2Fbuild-details.html&query=%2F%2Ftr%5Btd%5B%40data-label%3D%27language%27%20and%20contains%28.%2C%20%27%28pl%29%27%29%5D%5D%20%20%20%2F%2Ftd%5B%40data-label%3D%27lint%27%5D%2Fa%2Ftext()&label=b%C5%82%C4%99dy%20lintowania)](https://github.com/python/python-docs-pl/actions/workflows/lint.yml)
2323

2424
<!-- [[[end]]] -->

c-api/exceptions.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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-07-19 14:48+0000\n"
14+
"POT-Creation-Date: 2026-07-31 15:58+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"
@@ -151,6 +151,23 @@ msgid ""
151151
"chained exceptions and notes."
152152
msgstr ""
153153

154+
msgid "Legacy variant of :c:func:`PyErr_DisplayException`."
155+
msgstr ""
156+
157+
msgid ""
158+
"Print the exception *value* with its traceback to :data:`sys.stderr`. If "
159+
"*value* has no traceback set, *tb* is used as its traceback. The first "
160+
"argument is ignored."
161+
msgstr ""
162+
163+
msgid ""
164+
"If :data:`sys.stderr` is ``None``, nothing is printed. If :data:`sys.stderr` "
165+
"is not set, the exception is dumped to the C ``stderr`` stream instead."
166+
msgstr ""
167+
168+
msgid "Use :c:func:`PyErr_DisplayException` instead."
169+
msgstr ""
170+
154171
msgid "Raising exceptions"
155172
msgstr ""
156173

@@ -971,7 +988,7 @@ msgid ""
971988
"requires special recursion handling. In addition to protecting the stack, :"
972989
"c:member:`~PyTypeObject.tp_repr` also needs to track objects to prevent "
973990
"cycles. The following two functions facilitate this functionality. "
974-
"Effectively, these are the C equivalent to :func:`reprlib.recursive_repr`."
991+
"Effectively, these are the C equivalent to :deco:`reprlib.recursive_repr`."
975992
msgstr ""
976993

977994
msgid ""

c-api/float.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.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-07-11 14:46+0000\n"
14+
"POT-Creation-Date: 2026-07-29 15:50+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/init_config.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-07-27 16:10+0000\n"
15+
"POT-Creation-Date: 2026-07-31 15:58+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Blessing Oluronbi, 2026\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1481,10 +1481,10 @@ msgstr ""
14811481
msgid "See also :c:member:`PyConfig.exec_prefix`."
14821482
msgstr ""
14831483

1484-
msgid "Python base executable: :data:`sys._base_executable`."
1484+
msgid "Python base executable: ``sys._base_executable``."
14851485
msgstr ""
14861486

1487-
msgid "Set by the :envvar:`__PYVENV_LAUNCHER__` environment variable."
1487+
msgid "Set by the ``__PYVENV_LAUNCHER__`` environment variable."
14881488
msgstr ""
14891489

14901490
msgid "Set from :c:member:`PyConfig.executable` if ``NULL``."
@@ -2019,8 +2019,8 @@ msgid "On macOS, use :envvar:`PYTHONEXECUTABLE` environment variable if set."
20192019
msgstr ""
20202020

20212021
msgid ""
2022-
"If the ``WITH_NEXT_FRAMEWORK`` macro is defined, use :envvar:"
2023-
"`__PYVENV_LAUNCHER__` environment variable if set."
2022+
"If the ``WITH_NEXT_FRAMEWORK`` macro is defined, use ``__PYVENV_LAUNCHER__`` "
2023+
"environment variable if set."
20242024
msgstr ""
20252025

20262026
msgid ""
@@ -2265,7 +2265,7 @@ msgstr ""
22652265
msgid ""
22662266
"The :mod:`warnings` module adds :data:`sys.warnoptions` in the reverse "
22672267
"order: the last :c:member:`PyConfig.warnoptions` item becomes the first item "
2268-
"of :data:`warnings.filters` which is checked first (highest priority)."
2268+
"of ``warnings.filters`` which is checked first (highest priority)."
22692269
msgstr ""
22702270

22712271
msgid ""

c-api/intro.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-07-21 15:29+0000\n"
14+
"POT-Creation-Date: 2026-07-31 15:58+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"
@@ -1367,7 +1367,7 @@ msgid ""
13671367
msgstr ""
13681368

13691369
msgid ""
1370-
"Defining :c:macro:`Py_TRACE_REFS` enables reference tracing (see the :option:"
1370+
"Defining ``Py_TRACE_REFS`` enables reference tracing (see the :option:"
13711371
"`configure --with-trace-refs option <--with-trace-refs>`). When defined, a "
13721372
"circular doubly linked list of active objects is maintained by adding two "
13731373
"extra fields to every :c:type:`PyObject`. Total allocations are tracked as "

c-api/structures.po

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-07-11 14:46+0000\n"
14+
"POT-Creation-Date: 2026-07-31 15:58+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"
@@ -474,16 +474,13 @@ msgstr ""
474474
msgid ""
475475
"The method will be passed the type object as the first parameter rather than "
476476
"an instance of the type. This is used to create *class methods*, similar to "
477-
"what is created when using the :func:`classmethod` built-in function."
477+
"what is created when using the :deco:`classmethod` built-in decorator."
478478
msgstr ""
479-
"Metodzie zostanie przekazany typ obiektu jako pierwszy parametr zamiast "
480-
"instancji tego typu. Jest to używane aby tworzyć *metody klasowe*, podobnie "
481-
"do tego, co jest tworzone przy użyciu wbudowanej funkcji :func:`classmethod`."
482479

483480
msgid ""
484481
"The method will be passed ``NULL`` as the first parameter rather than an "
485482
"instance of the type. This is used to create *static methods*, similar to "
486-
"what is created when using the :func:`staticmethod` built-in function."
483+
"what is created when using the :deco:`staticmethod` built-in decorator."
487484
msgstr ""
488485

489486
msgid ""

deprecations/pending-removal-in-3.15.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-07-11 14:46+0000\n"
15+
"POT-Creation-Date: 2026-07-31 15:58+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Blessing Oluronbi, 2026\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -136,7 +136,7 @@ msgid ""
136136
msgstr ""
137137

138138
msgid ""
139-
"The :func:`!typing.no_type_check_decorator` decorator function has been "
139+
"The :deco:`!typing.no_type_check_decorator` decorator function has been "
140140
"deprecated since Python 3.13. After eight years in the :mod:`typing` module, "
141141
"it has yet to be supported by any major type checker."
142142
msgstr ""

faq/programming.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.15\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2026-07-13 16:24+0000\n"
16+
"POT-Creation-Date: 2026-07-31 15:58+0000\n"
1717
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2026\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -2799,8 +2799,8 @@ msgid "How do I cache method calls?"
27992799
msgstr ""
28002800

28012801
msgid ""
2802-
"The two principal tools for caching methods are :func:`functools."
2803-
"cached_property` and :func:`functools.lru_cache`. The former stores results "
2802+
"The two principal tools for caching methods are :deco:`functools."
2803+
"cached_property` and :deco:`functools.lru_cache`. The former stores results "
28042804
"at the instance level and the latter at the class level."
28052805
msgstr ""
28062806

glossary.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.15\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-07-21 15:29+0000\n"
15+
"POT-Creation-Date: 2026-07-31 15:58+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2026\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -661,7 +661,7 @@ msgstr "dekorator"
661661
msgid ""
662662
"A function returning another function, usually applied as a function "
663663
"transformation using the ``@wrapper`` syntax. Common examples for "
664-
"decorators are :func:`classmethod` and :func:`staticmethod`."
664+
"decorators are :deco:`classmethod` and :deco:`staticmethod`."
665665
msgstr ""
666666

667667
msgid ""
@@ -1077,7 +1077,7 @@ msgid ""
10771077
msgstr ""
10781078

10791079
msgid ""
1080-
"See also the :term:`single dispatch` glossary entry, the :func:`functools."
1080+
"See also the :term:`single dispatch` glossary entry, the :deco:`functools."
10811081
"singledispatch` decorator, and :pep:`443`."
10821082
msgstr ""
10831083

0 commit comments

Comments
 (0)