Skip to content

Commit 121c52b

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent df1e216 commit 121c52b

File tree

9 files changed

+273
-150
lines changed

9 files changed

+273
-150
lines changed

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/workflows/.github/workflow
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
1818
![98.38% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-98.38%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.58%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-4.57%25-0.svg)
2020
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
2121
<!-- [[[end]]] -->
2222

c-api/arg.po

Lines changed: 37 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-20 14:50+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:32+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -392,20 +392,35 @@ msgstr ""
392392
msgid "Numbers"
393393
msgstr "Liczby"
394394

395+
msgid ""
396+
"These formats allow representing Python numbers or single characters as C "
397+
"numbers. Formats that require :class:`int`, :class:`float` or :class:"
398+
"`complex` can also use the corresponding special methods :meth:`~object."
399+
"__index__`, :meth:`~object.__float__` or :meth:`~object.__complex__` to "
400+
"convert the Python object to the required type."
401+
msgstr ""
402+
403+
msgid ""
404+
"For signed integer formats, :exc:`OverflowError` is raised if the value is "
405+
"out of range for the C type. For unsigned integer formats, no range checking "
406+
"is done --- the most significant bits are silently truncated when the "
407+
"receiving field is too small to receive the value."
408+
msgstr ""
409+
395410
msgid "``b`` (:class:`int`) [unsigned char]"
396411
msgstr ""
397412

398413
msgid ""
399-
"Convert a nonnegative Python integer to an unsigned tiny int, stored in a C :"
400-
"c:expr:`unsigned char`."
414+
"Convert a nonnegative Python integer to an unsigned tiny integer, stored in "
415+
"a C :c:expr:`unsigned char`."
401416
msgstr ""
402417

403418
msgid "``B`` (:class:`int`) [unsigned char]"
404419
msgstr ""
405420

406421
msgid ""
407-
"Convert a Python integer to a tiny int without overflow checking, stored in "
408-
"a C :c:expr:`unsigned char`."
422+
"Convert a Python integer to a tiny integer without overflow checking, stored "
423+
"in a C :c:expr:`unsigned char`."
409424
msgstr ""
410425

411426
msgid "``h`` (:class:`int`) [short int]"
@@ -531,7 +546,7 @@ msgid ""
531546
"required type, :exc:`TypeError` is raised."
532547
msgstr ""
533548

534-
msgid "``O&`` (object) [*converter*, *anything*]"
549+
msgid "``O&`` (object) [*converter*, *address*]"
535550
msgstr ""
536551

537552
msgid ""
@@ -554,15 +569,20 @@ msgid ""
554569
msgstr ""
555570

556571
msgid ""
557-
"If the *converter* returns ``Py_CLEANUP_SUPPORTED``, it may get called a "
558-
"second time if the argument parsing eventually fails, giving the converter a "
559-
"chance to release any memory that it had already allocated. In this second "
560-
"call, the *object* parameter will be ``NULL``; *address* will have the same "
561-
"value as in the original call."
572+
"If the *converter* returns :c:macro:`!Py_CLEANUP_SUPPORTED`, it may get "
573+
"called a second time if the argument parsing eventually fails, giving the "
574+
"converter a chance to release any memory that it had already allocated. In "
575+
"this second call, the *object* parameter will be ``NULL``; *address* will "
576+
"have the same value as in the original call."
562577
msgstr ""
563578

564-
msgid "``Py_CLEANUP_SUPPORTED`` was added."
565-
msgstr "``Py_CLEANUP_SUPPORTED`` został dodany."
579+
msgid ""
580+
"Examples of converters: :c:func:`PyUnicode_FSConverter` and :c:func:"
581+
"`PyUnicode_FSDecoder`."
582+
msgstr ""
583+
584+
msgid ":c:macro:`!Py_CLEANUP_SUPPORTED` was added."
585+
msgstr ""
566586

567587
msgid "``p`` (:class:`bool`) [int]"
568588
msgstr ""
@@ -588,14 +608,6 @@ msgstr ""
588608
"odpowiadać poszczególnym jednostkom formatu w *elementach*. Jednostki "
589609
"formatu dla sekwencji mogą być zagnieżdżane."
590610

591-
msgid ""
592-
"It is possible to pass \"long\" integers (integers whose value exceeds the "
593-
"platform's :c:macro:`LONG_MAX`) however no proper range checking is done --- "
594-
"the most significant bits are silently truncated when the receiving field is "
595-
"too small to receive the value (actually, the semantics are inherited from "
596-
"downcasts in C --- your mileage may vary)."
597-
msgstr ""
598-
599611
msgid ""
600612
"A few other characters have a meaning in a format string. These may not "
601613
"occur inside nested parentheses. They are:"
@@ -963,6 +975,9 @@ msgid ""
963975
"argument list."
964976
msgstr ""
965977

978+
msgid "``O&`` (object) [*converter*, *anything*]"
979+
msgstr ""
980+
966981
msgid ""
967982
"Convert *anything* to a Python object through a *converter* function. The "
968983
"function is called with *anything* (which should be compatible with :c:expr:"

c-api/object.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-27 14:52+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:32+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -379,6 +379,12 @@ msgid ""
379379
"on failure. This is equivalent to the Python statement ``del o[key]``."
380380
msgstr ""
381381

382+
msgid ""
383+
"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :"
384+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
385+
"`PyObject*`."
386+
msgstr ""
387+
382388
msgid ""
383389
"This is equivalent to the Python expression ``dir(o)``, returning a "
384390
"(possibly empty) list of strings appropriate for the object argument, or "

c-api/unicode.po

Lines changed: 34 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-20 14:50+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:32+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -788,33 +788,52 @@ msgstr ""
788788

789789
msgid ""
790790
"To encode file names to :class:`bytes` during argument parsing, the "
791-
"``\"O&\"`` converter should be used, passing :c:func:`PyUnicode_FSConverter` "
792-
"as the conversion function:"
791+
"``\"O&\"`` converter should be used, passing :c:func:`!"
792+
"PyUnicode_FSConverter` as the conversion function:"
793793
msgstr ""
794794

795795
msgid ""
796-
"ParseTuple converter: encode :class:`str` objects -- obtained directly or "
797-
"through the :class:`os.PathLike` interface -- to :class:`bytes` using :c:"
798-
"func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is. "
799-
"*result* must be a :c:expr:`PyBytesObject*` which must be released when it "
800-
"is no longer used."
796+
":ref:`PyArg_Parse\\* converter <arg-parsing>`: encode :class:`str` objects "
797+
"-- obtained directly or through the :class:`os.PathLike` interface -- to :"
798+
"class:`bytes` using :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` "
799+
"objects are output as-is. *result* must be an address of a C variable of "
800+
"type :c:expr:`PyObject*` (or :c:expr:`PyBytesObject*`). On success, set the "
801+
"variable to a new :term:`strong reference` to a :ref:`bytes object "
802+
"<bytesobjects>` which must be released when it is no longer used and return "
803+
"a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null bytes are "
804+
"not allowed in the result. On failure, return ``0`` with an exception set."
805+
msgstr ""
806+
807+
msgid ""
808+
"If *obj* is ``NULL``, the function releases a strong reference stored in the "
809+
"variable referred by *result* and returns ``1``."
801810
msgstr ""
802811

803812
msgid "Accepts a :term:`path-like object`."
804813
msgstr ""
805814

806815
msgid ""
807816
"To decode file names to :class:`str` during argument parsing, the ``\"O&\"`` "
808-
"converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the "
817+
"converter should be used, passing :c:func:`!PyUnicode_FSDecoder` as the "
809818
"conversion function:"
810819
msgstr ""
811820

812821
msgid ""
813-
"ParseTuple converter: decode :class:`bytes` objects -- obtained either "
814-
"directly or indirectly through the :class:`os.PathLike` interface -- to :"
815-
"class:`str` using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` "
816-
"objects are output as-is. *result* must be a :c:expr:`PyUnicodeObject*` "
817-
"which must be released when it is no longer used."
822+
":ref:`PyArg_Parse\\* converter <arg-parsing>`: decode :class:`bytes` objects "
823+
"-- obtained either directly or indirectly through the :class:`os.PathLike` "
824+
"interface -- to :class:`str` using :c:func:"
825+
"`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` objects are output as-is. "
826+
"*result* must be an address of a C variable of type :c:expr:`PyObject*` (or :"
827+
"c:expr:`PyUnicodeObject*`). On success, set the variable to a new :term:"
828+
"`strong reference` to a :ref:`Unicode object <unicodeobjects>` which must be "
829+
"released when it is no longer used and return a non-zero value (:c:macro:"
830+
"`Py_CLEANUP_SUPPORTED`). Embedded null characters are not allowed in the "
831+
"result. On failure, return ``0`` with an exception set."
832+
msgstr ""
833+
834+
msgid ""
835+
"If *obj* is ``NULL``, release the strong reference to the object referred to "
836+
"by *result* and return ``1``."
818837
msgstr ""
819838

820839
msgid "Decode a string from the :term:`filesystem encoding and error handler`."

library/asyncio-eventloop.po

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-20 14:50+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:33+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -286,6 +286,12 @@ msgid ""
286286
"thread-safe."
287287
msgstr ""
288288

289+
msgid ""
290+
"This function is safe to be called from a reentrant context or signal "
291+
"handler, however, it is not safe or fruitful to use the returned handle in "
292+
"such contexts."
293+
msgstr ""
294+
289295
msgid ""
290296
"Raises :exc:`RuntimeError` if called on a loop that's been closed. This can "
291297
"happen on a secondary thread when the main application is shutting down."
@@ -986,6 +992,11 @@ msgid ""
986992
"*callback* with the specified arguments once *fd* is available for reading."
987993
msgstr ""
988994

995+
msgid ""
996+
"Any preexisting callback registered for *fd* is cancelled and replaced by "
997+
"*callback*."
998+
msgstr ""
999+
9891000
msgid ""
9901001
"Stop monitoring the *fd* file descriptor for read availability. Returns "
9911002
"``True`` if *fd* was previously being monitored for reads."

library/asyncio-queue.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-01-03 14:53+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:33+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -114,13 +114,13 @@ msgstr ""
114114
msgid "Return the number of items in the queue."
115115
msgstr ""
116116

117-
msgid "Indicate that a formerly enqueued task is complete."
117+
msgid "Indicate that a formerly enqueued work item is complete."
118118
msgstr ""
119119

120120
msgid ""
121-
"Used by queue consumers. For each :meth:`~Queue.get` used to fetch a task, a "
122-
"subsequent call to :meth:`task_done` tells the queue that the processing on "
123-
"the task is complete."
121+
"Used by queue consumers. For each :meth:`~Queue.get` used to fetch a work "
122+
"item, a subsequent call to :meth:`task_done` tells the queue that the "
123+
"processing on the work item is complete."
124124
msgstr ""
125125

126126
msgid ""

library/collections.abc.po

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SOME DESCRIPTIVE TITLE.
2-
# Copyright (C) 2001-2024, Python Software Foundation
2+
# Copyright (C) 2001-2025, Python Software Foundation
33
# This file is distributed under the same license as the Python package.
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2024-12-20 14:50+0000\n"
14+
"POT-Creation-Date: 2025-01-10 14:49+0000\n"
1515
"PO-Revision-Date: 2024-05-11 00:33+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -260,7 +260,8 @@ msgstr ":class:`Collection`"
260260

261261
msgid ""
262262
"``__le__``, ``__lt__``, ``__eq__``, ``__ne__``, ``__gt__``, ``__ge__``, "
263-
"``__and__``, ``__or__``, ``__sub__``, ``__xor__``, and ``isdisjoint``"
263+
"``__and__``, ``__or__``, ``__sub__``, ``__rsub__``, ``__xor__``, "
264+
"``__rxor__`` and ``isdisjoint``"
264265
msgstr ""
265266

266267
msgid ":class:`MutableSet`"
@@ -303,6 +304,9 @@ msgstr ":class:`MappingView`"
303304
msgid ":class:`Sized`"
304305
msgstr ":class:`Sized`"
305306

307+
msgid "``__init__``, ``__len__`` and ``__repr__``"
308+
msgstr ""
309+
306310
msgid ":class:`ItemsView`"
307311
msgstr ":class:`ItemsView`"
308312

0 commit comments

Comments
 (0)