Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7f1a126

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 4446813 commit 7f1a126

File tree

9 files changed

+275
-147
lines changed

9 files changed

+275
-147
lines changed

c-api/arg.po

Lines changed: 36 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-01-03 14:16+0000\n"
16+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -393,20 +393,35 @@ msgstr ""
393393
msgid "Numbers"
394394
msgstr "Liczby"
395395

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

399414
msgid ""
400-
"Convert a nonnegative Python integer to an unsigned tiny int, stored in a C :"
401-
"c:expr:`unsigned char`."
415+
"Convert a nonnegative Python integer to an unsigned tiny integer, stored in "
416+
"a C :c:expr:`unsigned char`."
402417
msgstr ""
403418

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

407422
msgid ""
408-
"Convert a Python integer to a tiny int without overflow checking, stored in "
409-
"a C :c:expr:`unsigned char`."
423+
"Convert a Python integer to a tiny integer without overflow checking, stored "
424+
"in a C :c:expr:`unsigned char`."
410425
msgstr ""
411426

412427
msgid "``h`` (:class:`int`) [short int]"
@@ -532,7 +547,7 @@ msgid ""
532547
"required type, :exc:`TypeError` is raised."
533548
msgstr ""
534549

535-
msgid "``O&`` (object) [*converter*, *anything*]"
550+
msgid "``O&`` (object) [*converter*, *address*]"
536551
msgstr ""
537552

538553
msgid ""
@@ -555,15 +570,20 @@ msgid ""
555570
msgstr ""
556571

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

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

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

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

1012+
msgid "``O&`` (object) [*converter*, *anything*]"
1013+
msgstr ""
1014+
10001015
msgid ""
10011016
"Convert *anything* to a Python object through a *converter* function. The "
10021017
"function is called with *anything* (which should be compatible with :c:expr:"

c-api/init.po

Lines changed: 7 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
#
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-12-27 14:16+0000\n"
15+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1476,6 +1476,11 @@ msgid ""
14761476
"extensions should use to store interpreter-specific state information."
14771477
msgstr ""
14781478

1479+
msgid ""
1480+
"Return a :term:`strong reference` to the ``__main__`` `module object "
1481+
"<moduleobjects>`_ for the given interpreter."
1482+
msgstr ""
1483+
14791484
msgid "Type of a frame evaluation function."
14801485
msgstr ""
14811486

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
#
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-12-27 14:16+0000\n"
16+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1818
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -518,6 +518,12 @@ msgid ""
518518
"on failure. This is equivalent to the Python statement ``del o[key]``."
519519
msgstr ""
520520

521+
msgid ""
522+
"This is the same as :c:func:`PyObject_DelItem`, but *key* is specified as a :"
523+
"c:expr:`const char*` UTF-8 encoded bytes string, rather than a :c:expr:"
524+
"`PyObject*`."
525+
msgstr ""
526+
521527
msgid ""
522528
"This is equivalent to the Python expression ``dir(o)``, returning a "
523529
"(possibly empty) list of strings appropriate for the object argument, or "

c-api/unicode.po

Lines changed: 33 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-03 14:16+0000\n"
15+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1717
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -824,33 +824,52 @@ msgstr ""
824824

825825
msgid ""
826826
"To encode file names to :class:`bytes` during argument parsing, the "
827-
"``\"O&\"`` converter should be used, passing :c:func:`PyUnicode_FSConverter` "
828-
"as the conversion function:"
827+
"``\"O&\"`` converter should be used, passing :c:func:`!"
828+
"PyUnicode_FSConverter` as the conversion function:"
829829
msgstr ""
830830

831831
msgid ""
832-
"ParseTuple converter: encode :class:`str` objects -- obtained directly or "
833-
"through the :class:`os.PathLike` interface -- to :class:`bytes` using :c:"
834-
"func:`PyUnicode_EncodeFSDefault`; :class:`bytes` objects are output as-is. "
835-
"*result* must be a :c:expr:`PyBytesObject*` which must be released when it "
836-
"is no longer used."
832+
":ref:`PyArg_Parse\\* converter <arg-parsing>`: encode :class:`str` objects "
833+
"-- obtained directly or through the :class:`os.PathLike` interface -- to :"
834+
"class:`bytes` using :c:func:`PyUnicode_EncodeFSDefault`; :class:`bytes` "
835+
"objects are output as-is. *result* must be an address of a C variable of "
836+
"type :c:expr:`PyObject*` (or :c:expr:`PyBytesObject*`). On success, set the "
837+
"variable to a new :term:`strong reference` to a :ref:`bytes object "
838+
"<bytesobjects>` which must be released when it is no longer used and return "
839+
"a non-zero value (:c:macro:`Py_CLEANUP_SUPPORTED`). Embedded null bytes are "
840+
"not allowed in the result. On failure, return ``0`` with an exception set."
841+
msgstr ""
842+
843+
msgid ""
844+
"If *obj* is ``NULL``, the function releases a strong reference stored in the "
845+
"variable referred by *result* and returns ``1``."
837846
msgstr ""
838847

839848
msgid "Accepts a :term:`path-like object`."
840849
msgstr ""
841850

842851
msgid ""
843852
"To decode file names to :class:`str` during argument parsing, the ``\"O&\"`` "
844-
"converter should be used, passing :c:func:`PyUnicode_FSDecoder` as the "
853+
"converter should be used, passing :c:func:`!PyUnicode_FSDecoder` as the "
845854
"conversion function:"
846855
msgstr ""
847856

848857
msgid ""
849-
"ParseTuple converter: decode :class:`bytes` objects -- obtained either "
850-
"directly or indirectly through the :class:`os.PathLike` interface -- to :"
851-
"class:`str` using :c:func:`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` "
852-
"objects are output as-is. *result* must be a :c:expr:`PyUnicodeObject*` "
853-
"which must be released when it is no longer used."
858+
":ref:`PyArg_Parse\\* converter <arg-parsing>`: decode :class:`bytes` objects "
859+
"-- obtained either directly or indirectly through the :class:`os.PathLike` "
860+
"interface -- to :class:`str` using :c:func:"
861+
"`PyUnicode_DecodeFSDefaultAndSize`; :class:`str` objects are output as-is. "
862+
"*result* must be an address of a C variable of type :c:expr:`PyObject*` (or :"
863+
"c:expr:`PyUnicodeObject*`). On success, set the variable to a new :term:"
864+
"`strong reference` to a :ref:`Unicode object <unicodeobjects>` which must be "
865+
"released when it is no longer used and return a non-zero value (:c:macro:"
866+
"`Py_CLEANUP_SUPPORTED`). Embedded null characters are not allowed in the "
867+
"result. On failure, return ``0`` with an exception set."
868+
msgstr ""
869+
870+
msgid ""
871+
"If *obj* is ``NULL``, release the strong reference to the object referred to "
872+
"by *result* and return ``1``."
854873
msgstr ""
855874

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

library/asyncio-eventloop.po

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.13\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2025-01-03 14:16+0000\n"
17+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
1919
"Last-Translator: Stanislaw Ulbrych, 2024\n"
2020
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -289,6 +289,12 @@ msgid ""
289289
"thread-safe."
290290
msgstr ""
291291

292+
msgid ""
293+
"This function is safe to be called from a reentrant context or signal "
294+
"handler, however, it is not safe or fruitful to use the returned handle in "
295+
"such contexts."
296+
msgstr ""
297+
292298
msgid ""
293299
"Raises :exc:`RuntimeError` if called on a loop that's been closed. This can "
294300
"happen on a secondary thread when the main application is shutting down."
@@ -1006,6 +1012,11 @@ msgid ""
10061012
"*callback* with the specified arguments once *fd* is available for reading."
10071013
msgstr ""
10081014

1015+
msgid ""
1016+
"Any preexisting callback registered for *fd* is cancelled and replaced by "
1017+
"*callback*."
1018+
msgstr ""
1019+
10091020
msgid ""
10101021
"Stop monitoring the *fd* file descriptor for read availability. Returns "
10111022
"``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
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-03 14:16+0000\n"
15+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
1717
"Last-Translator: Igor Zubrycki <[email protected]>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -141,13 +141,13 @@ msgid ""
141141
"join`."
142142
msgstr ""
143143

144-
msgid "Indicate that a formerly enqueued task is complete."
144+
msgid "Indicate that a formerly enqueued work item is complete."
145145
msgstr ""
146146

147147
msgid ""
148-
"Used by queue consumers. For each :meth:`~Queue.get` used to fetch a task, a "
149-
"subsequent call to :meth:`task_done` tells the queue that the processing on "
150-
"the task is complete."
148+
"Used by queue consumers. For each :meth:`~Queue.get` used to fetch a work "
149+
"item, a subsequent call to :meth:`task_done` tells the queue that the "
150+
"processing on the work item is complete."
151151
msgstr ""
152152

153153
msgid ""

library/collections.abc.po

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-03 14:16+0000\n"
15+
"POT-Creation-Date: 2025-01-10 14:17+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
1717
"Last-Translator: Stanislaw Ulbrych, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -261,7 +261,8 @@ msgstr ":class:`Collection`"
261261

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

267268
msgid ":class:`MutableSet`"
@@ -304,6 +305,9 @@ msgstr ":class:`MappingView`"
304305
msgid ":class:`Sized`"
305306
msgstr ":class:`Sized`"
306307

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

0 commit comments

Comments
 (0)