Skip to content

Commit f64224a

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
Co-Authored-By: python-doc bot
1 parent d70397a commit f64224a

File tree

21 files changed

+226
-75
lines changed

21 files changed

+226
-75
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.49%25-0.svg)](https://translations.python.org/#pl)
19-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.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)
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.49%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.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)
2020
<!-- [[[end]]] -->
2121

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

c-api/dict.po

Lines changed: 85 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-19 14:14+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"
@@ -469,6 +469,90 @@ msgid ""
469469
"always succeeds."
470470
msgstr ""
471471

472+
msgid "Ordered Dictionaries"
473+
msgstr ""
474+
475+
msgid ""
476+
"Python's C API provides interface for :class:`collections.OrderedDict` from "
477+
"C. Since Python 3.7, dictionaries are ordered by default, so there is "
478+
"usually little need for these functions; prefer ``PyDict*`` where possible."
479+
msgstr ""
480+
481+
msgid ""
482+
"Type object for ordered dictionaries. This is the same object as :class:"
483+
"`collections.OrderedDict` in the Python layer."
484+
msgstr ""
485+
486+
msgid ""
487+
"Return true if *od* is an ordered dictionary object or an instance of a "
488+
"subtype of the :class:`~collections.OrderedDict` type. This function always "
489+
"succeeds."
490+
msgstr ""
491+
492+
msgid ""
493+
"Return true if *od* is an ordered dictionary object, but not an instance of "
494+
"a subtype of the :class:`~collections.OrderedDict` type. This function "
495+
"always succeeds."
496+
msgstr ""
497+
498+
msgid "Analogous to :c:type:`PyDictKeys_Type` for ordered dictionaries."
499+
msgstr ""
500+
501+
msgid "Analogous to :c:type:`PyDictValues_Type` for ordered dictionaries."
502+
msgstr ""
503+
504+
msgid "Analogous to :c:type:`PyDictItems_Type` for ordered dictionaries."
505+
msgstr ""
506+
507+
msgid "Return a new empty ordered dictionary, or ``NULL`` on failure."
508+
msgstr ""
509+
510+
msgid "This is analogous to :c:func:`PyDict_New`."
511+
msgstr ""
512+
513+
msgid ""
514+
"Insert *value* into the ordered dictionary *od* with a key of *key*. Return "
515+
"``0`` on success or ``-1`` with an exception set on failure."
516+
msgstr ""
517+
518+
msgid "This is analogous to :c:func:`PyDict_SetItem`."
519+
msgstr ""
520+
521+
msgid ""
522+
"Remove the entry in the ordered dictionary *od* with key *key*. Return ``0`` "
523+
"on success or ``-1`` with an exception set on failure."
524+
msgstr ""
525+
526+
msgid "This is analogous to :c:func:`PyDict_DelItem`."
527+
msgstr ""
528+
529+
msgid "These are :term:`soft deprecated` aliases to ``PyDict`` APIs:"
530+
msgstr ""
531+
532+
msgid "``PyODict``"
533+
msgstr ""
534+
535+
msgid "``PyDict``"
536+
msgstr ""
537+
538+
msgid ":c:func:`PyDict_GetItem`"
539+
msgstr ":c:func:`PyDict_GetItem`"
540+
541+
msgid ":c:func:`PyDict_GetItemWithError`"
542+
msgstr ":c:func:`PyDict_GetItemWithError`"
543+
544+
msgid ":c:func:`PyDict_GetItemString`"
545+
msgstr ":c:func:`PyDict_GetItemString`"
546+
547+
msgid ":c:func:`PyDict_Contains`"
548+
msgstr ""
549+
550+
msgid ":c:func:`PyDict_Size`"
551+
msgstr ""
552+
553+
msgid ":c:func:`PyDict_GET_SIZE`"
554+
msgstr ""
555+
472556
msgid "object"
473557
msgstr "obiekt"
474558

c-api/float.po

Lines changed: 33 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 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-19 14:14+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"
@@ -106,6 +106,12 @@ msgid ""
106106
"C11 standard ``<math.h>`` header."
107107
msgstr ""
108108

109+
msgid "Equivalent to :c:macro:`!INFINITY`."
110+
msgstr ""
111+
112+
msgid "The macro is :term:`soft deprecated`."
113+
msgstr ""
114+
109115
msgid ""
110116
"The definition (accurate for a :c:expr:`double` type) of the :data:`math.e` "
111117
"constant."
@@ -145,6 +151,32 @@ msgstr ""
145151
msgid "return PyFloat_FromDouble(copysign(INFINITY, sign));"
146152
msgstr ""
147153

154+
msgid ""
155+
"Return ``1`` if the given floating-point number *X* is finite, that is, it "
156+
"is normal, subnormal or zero, but not infinite or NaN. Return ``0`` "
157+
"otherwise."
158+
msgstr ""
159+
160+
msgid ""
161+
"The macro is :term:`soft deprecated`. Use :c:macro:`!isfinite` instead."
162+
msgstr ""
163+
164+
msgid ""
165+
"Return ``1`` if the given floating-point number *X* is positive or negative "
166+
"infinity. Return ``0`` otherwise."
167+
msgstr ""
168+
169+
msgid "The macro is :term:`soft deprecated`. Use :c:macro:`!isinf` instead."
170+
msgstr ""
171+
172+
msgid ""
173+
"Return ``1`` if the given floating-point number *X* is a not-a-number (NaN) "
174+
"value. Return ``0`` otherwise."
175+
msgstr ""
176+
177+
msgid "The macro is :term:`soft deprecated`. Use :c:macro:`!isnan` instead."
178+
msgstr ""
179+
148180
msgid "Pack and Unpack functions"
149181
msgstr ""
150182

c-api/intro.po

Lines changed: 9 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 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-19 14:14+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"
@@ -271,6 +271,14 @@ msgstr ""
271271
msgid "Return the size of a structure (``type``) ``member`` in bytes."
272272
msgstr ""
273273

274+
msgid ""
275+
"This is a :term:`soft deprecated` alias to :c:func:`!memcpy`. Use :c:func:`!"
276+
"memcpy` directly instead."
277+
msgstr ""
278+
279+
msgid "The macro is :term:`soft deprecated`."
280+
msgstr ""
281+
274282
msgid "Return the minimum value between ``x`` and ``y``."
275283
msgstr ""
276284

c-api/structures.po

Lines changed: 7 additions & 10 deletions
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-17 14:14+0000\n"
14+
"POT-Creation-Date: 2025-11-19 14:14+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"
@@ -711,15 +711,12 @@ msgid ""
711711
msgstr ""
712712

713713
msgid ""
714-
"Can only be used as part of :c:member:`Py_tp_members <PyTypeObject."
715-
"tp_members>` :c:type:`slot <PyType_Slot>` when creating a class using "
716-
"negative :c:member:`~PyType_Spec.basicsize`. It is mandatory in that case."
717-
msgstr ""
718-
719-
msgid ""
720-
"This flag is only used in :c:type:`PyType_Slot`. When setting :c:member:"
721-
"`~PyTypeObject.tp_members` during class creation, Python clears it and sets :"
722-
"c:member:`PyMemberDef.offset` to the offset from the ``PyObject`` struct."
714+
"Can only be used as part of the :c:data:`Py_tp_members` :c:type:`slot "
715+
"<PyType_Slot>` when creating a class using negative :c:member:`~PyType_Spec."
716+
"basicsize`. It is mandatory in that case. When setting :c:member:"
717+
"`~PyTypeObject.tp_members` from the slot during class creation, Python "
718+
"clears the flag and sets :c:member:`PyMemberDef.offset` to the offset from "
719+
"the ``PyObject`` struct."
723720
msgstr ""
724721

725722
msgid ""

c-api/type.po

Lines changed: 13 additions & 13 deletions
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 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-19 14:14+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"
@@ -385,9 +385,9 @@ msgstr ""
385385

386386
msgid ""
387387
"The *bases* argument can be used to specify base classes; it can either be "
388-
"only one class or a tuple of classes. If *bases* is ``NULL``, the "
389-
"*Py_tp_bases* slot is used instead. If that also is ``NULL``, the "
390-
"*Py_tp_base* slot is used instead. If that also is ``NULL``, the new type "
388+
"only one class or a tuple of classes. If *bases* is ``NULL``, the :c:data:"
389+
"`Py_tp_bases` slot is used instead. If that also is ``NULL``, the :c:data:"
390+
"`Py_tp_base` slot is used instead. If that also is ``NULL``, the new type "
391391
"derives from :class:`object`."
392392
msgstr ""
393393

@@ -564,13 +564,13 @@ msgid ""
564564
"prefix. For example, use:"
565565
msgstr ""
566566

567-
msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`"
567+
msgid ":c:data:`Py_tp_dealloc` to set :c:member:`PyTypeObject.tp_dealloc`"
568568
msgstr ""
569569

570-
msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`"
570+
msgid ":c:data:`Py_nb_add` to set :c:member:`PyNumberMethods.nb_add`"
571571
msgstr ""
572572

573-
msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`"
573+
msgid ":c:data:`Py_sq_length` to set :c:member:`PySequenceMethods.sq_length`"
574574
msgstr ""
575575

576576
msgid ""
@@ -603,8 +603,8 @@ msgstr ""
603603
msgid ""
604604
"If it is not possible to switch to a ``MANAGED`` flag (for example, for "
605605
"vectorcall or to support Python older than 3.12), specify the offset in :c:"
606-
"member:`Py_tp_members <PyTypeObject.tp_members>`. See :ref:`PyMemberDef "
607-
"documentation <pymemberdef-offsets>` for details."
606+
"data:`Py_tp_members`. See :ref:`PyMemberDef documentation <pymemberdef-"
607+
"offsets>` for details."
608608
msgstr ""
609609

610610
msgid ""
@@ -633,8 +633,8 @@ msgid ""
633633
msgstr ""
634634

635635
msgid ""
636-
"The field :c:member:`~PyTypeObject.tp_vectorcall` can now set using "
637-
"``Py_tp_vectorcall``. See the field's documentation for details."
636+
"The field :c:member:`~PyTypeObject.tp_vectorcall` can now set using :c:data:"
637+
"`Py_tp_vectorcall`. See the field's documentation for details."
638638
msgstr ""
639639

640640
msgid ""
@@ -645,8 +645,8 @@ msgstr ""
645645
msgid "*pfunc* values may not be ``NULL``, except for the following slots:"
646646
msgstr ""
647647

648-
msgid "``Py_tp_doc``"
649-
msgstr "``Py_tp_doc``"
648+
msgid ":c:data:`Py_tp_doc`"
649+
msgstr ""
650650

651651
msgid ""
652652
":c:data:`Py_tp_token` (for clarity, prefer :c:data:`Py_TP_USE_SPEC` rather "

c-api/typeobj.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-11 14:15+0000\n"
14+
"POT-Creation-Date: 2025-11-19 14:14+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"
@@ -2779,7 +2779,7 @@ msgid ""
27792779
msgstr ""
27802780

27812781
msgid ""
2782-
"For dynamically created classes, the ``Py_tp_bases`` :c:type:`slot "
2782+
"For dynamically created classes, the :c:data:`Py_tp_bases` :c:type:`slot "
27832783
"<PyType_Slot>` can be used instead of the *bases* argument of :c:func:"
27842784
"`PyType_FromSpecWithBases`. The argument form is preferred."
27852785
msgstr ""

howto/isolating-extensions.po

Lines changed: 3 additions & 3 deletions
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-19 14:14+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"
@@ -445,8 +445,8 @@ msgid "Have the :c:macro:`Py_TPFLAGS_HAVE_GC` flag."
445445
msgstr ""
446446

447447
msgid ""
448-
"Define a traverse function using ``Py_tp_traverse``, which visits the type "
449-
"(e.g. using ``Py_VISIT(Py_TYPE(self))``)."
448+
"Define a traverse function using :c:data:`Py_tp_traverse`, which visits the "
449+
"type (e.g. using ``Py_VISIT(Py_TYPE(self))``)."
450450
msgstr ""
451451

452452
msgid ""

library/cmdline.po

Lines changed: 11 additions & 11 deletions
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-19 14:14+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"
@@ -59,8 +59,8 @@ msgstr ":ref:`doctest <doctest-cli>`"
5959
msgid ":mod:`!encodings.rot_13`"
6060
msgstr ":mod:`!encodings.rot_13`"
6161

62-
msgid ":mod:`ensurepip`"
63-
msgstr ":mod:`ensurepip`"
62+
msgid ":ref:`ensurepip <ensurepip-cli>`"
63+
msgstr ""
6464

6565
msgid ":mod:`filecmp`"
6666
msgstr ":mod:`filecmp`"
@@ -77,8 +77,8 @@ msgstr ":ref:`gzip <gzip-cli>`"
7777
msgid ":ref:`http.server <http-server-cli>`"
7878
msgstr ":ref:`http.server <http-server-cli>`"
7979

80-
msgid ":mod:`!idlelib`"
81-
msgstr ":mod:`!idlelib`"
80+
msgid ":ref:`idlelib <idlelib-cli>`"
81+
msgstr ""
8282

8383
msgid ":ref:`inspect <inspect-module-cli>`"
8484
msgstr ":ref:`inspect <inspect-module-cli>`"
@@ -89,8 +89,8 @@ msgstr ":ref:`json <json-commandline>`"
8989
msgid ":ref:`mimetypes <mimetypes-cli>`"
9090
msgstr ":ref:`mimetypes <mimetypes-cli>`"
9191

92-
msgid ":mod:`pdb`"
93-
msgstr ":mod:`pdb`"
92+
msgid ":ref:`pdb <pdb-cli>`"
93+
msgstr ""
9494

9595
msgid ":ref:`pickle <pickle-cli>`"
9696
msgstr ":ref:`pickle <pickle-cli>`"
@@ -167,11 +167,11 @@ msgstr ":ref:`unittest <unittest-command-line-interface>`"
167167
msgid ":ref:`uuid <uuid-cli>`"
168168
msgstr ":ref:`uuid <uuid-cli>`"
169169

170-
msgid ":mod:`venv`"
171-
msgstr ":mod:`venv`"
170+
msgid ":ref:`venv <venv-cli>`"
171+
msgstr ""
172172

173-
msgid ":mod:`webbrowser`"
174-
msgstr ":mod:`webbrowser`"
173+
msgid ":ref:`webbrowser <webbrowser-cli>`"
174+
msgstr ""
175175

176176
msgid ":ref:`zipapp <zipapp-command-line-interface>`"
177177
msgstr ":ref:`zipapp <zipapp-command-line-interface>`"

0 commit comments

Comments
 (0)