Skip to content

Commit 49e7d01

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 4c45197 commit 49e7d01

54 files changed

Lines changed: 428 additions & 394 deletions

Some content is hidden

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1515
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
18-
![47.60% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-47.60%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.52%25-0.svg)
18+
![47.54% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-47.54%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.51%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: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
14+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -623,18 +623,11 @@ msgstr ""
623623

624624
msgid ""
625625
"It is possible to pass \"long\" integers (integers whose value exceeds the "
626-
"platform's :const:`LONG_MAX`) however no proper range checking is done --- "
626+
"platform's :c:macro:`LONG_MAX`) however no proper range checking is done --- "
627627
"the most significant bits are silently truncated when the receiving field is "
628628
"too small to receive the value (actually, the semantics are inherited from "
629629
"downcasts in C --- your mileage may vary)."
630630
msgstr ""
631-
"Możliwe jest przekazywanie liczb całkowitych \"długich\" (liczb całkowitych, "
632-
"których wartość przekracza wartość stałej :const:`LONG_MAX` określoną dla "
633-
"danej architektury) chociaż żadne właściwe sprawdzenie zakresu nie jest "
634-
"wykonywane - najbardziej znaczące cyfry dwójkowe są w milczeniu obcinane, "
635-
"gdy docelowy obszar pamięci jest zbyt mały, aby przyjąć wartość (w "
636-
"rzeczywistości składnia jest odziedziczona po rzutowaniu z języka C --- "
637-
"twoje doświadczenia mogą się różnić)."
638631

639632
msgid ""
640633
"A few other characters have a meaning in a format string. These may not "
@@ -768,7 +761,7 @@ msgstr ""
768761
msgid ""
769762
"A simpler form of parameter retrieval which does not use a format string to "
770763
"specify the types of the arguments. Functions which use this method to "
771-
"retrieve their parameters should be declared as :const:`METH_VARARGS` in "
764+
"retrieve their parameters should be declared as :c:macro:`METH_VARARGS` in "
772765
"function or method tables. The tuple containing the actual parameters "
773766
"should be passed as *args*; it must actually be a tuple. The length of the "
774767
"tuple must be at least *min* and no more than *max*; *min* and *max* may be "

c-api/call.po

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
14+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -87,7 +87,7 @@ msgid ""
8787
msgstr ""
8888

8989
msgid ""
90-
"Classes can implement the vectorcall protocol by enabling the :const:"
90+
"Classes can implement the vectorcall protocol by enabling the :c:macro:"
9191
"`Py_TPFLAGS_HAVE_VECTORCALL` flag and setting :c:member:`~PyTypeObject."
9292
"tp_vectorcall_offset` to the offset inside the object structure where a "
9393
"*vectorcallfunc* appears. This is a pointer to a function with the following "
@@ -110,7 +110,7 @@ msgid "*nargsf* is the number of positional arguments plus possibly the"
110110
msgstr ""
111111

112112
msgid ""
113-
":const:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of "
113+
":c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` flag. To get the actual number of "
114114
"positional arguments from *nargsf*, use :c:func:`PyVectorcall_NARGS`."
115115
msgstr ""
116116

@@ -137,7 +137,7 @@ msgstr ""
137137

138138
msgid ""
139139
"Whenever they can do so cheaply (without additional allocation), callers are "
140-
"encouraged to use :const:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will "
140+
"encouraged to use :c:macro:`PY_VECTORCALL_ARGUMENTS_OFFSET`. Doing so will "
141141
"allow callables such as bound methods to make their onward calls (which "
142142
"include a prepended *self* argument) very efficiently."
143143
msgstr ""
@@ -207,7 +207,7 @@ msgstr ""
207207
msgid ""
208208
"This is a specialized function, intended to be put in the :c:member:"
209209
"`~PyTypeObject.tp_call` slot or be used in an implementation of ``tp_call``. "
210-
"It does not check the :const:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does "
210+
"It does not check the :c:macro:`Py_TPFLAGS_HAVE_VECTORCALL` flag and it does "
211211
"not fall back to ``tp_call``."
212212
msgstr ""
213213

@@ -441,14 +441,14 @@ msgid ""
441441
"method is given as a Python string *name*. The object whose method is called "
442442
"is *args[0]*, and the *args* array starting at *args[1]* represents the "
443443
"arguments of the call. There must be at least one positional argument. "
444-
"*nargsf* is the number of positional arguments including *args[0]*, plus :"
445-
"const:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` may "
444+
"*nargsf* is the number of positional arguments including *args[0]*, plus :c:"
445+
"macro:`PY_VECTORCALL_ARGUMENTS_OFFSET` if the value of ``args[0]`` may "
446446
"temporarily be changed. Keyword arguments can be passed just like in :c:func:"
447447
"`PyObject_Vectorcall`."
448448
msgstr ""
449449

450450
msgid ""
451-
"If the object has the :const:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this "
451+
"If the object has the :c:macro:`Py_TPFLAGS_METHOD_DESCRIPTOR` feature, this "
452452
"will call the unbound method object with the full *args* vector as arguments."
453453
msgstr ""
454454

c-api/complex.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.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -81,7 +81,7 @@ msgstr ""
8181

8282
msgid ""
8383
"If *divisor* is null, this method returns zero and sets :c:data:`errno` to :"
84-
"c:data:`EDOM`."
84+
"c:macro:`EDOM`."
8585
msgstr ""
8686

8787
msgid ""
@@ -91,7 +91,7 @@ msgstr ""
9191

9292
msgid ""
9393
"If *num* is null and *exp* is not a positive real number, this method "
94-
"returns zero and sets :c:data:`errno` to :c:data:`EDOM`."
94+
"returns zero and sets :c:data:`errno` to :c:macro:`EDOM`."
9595
msgstr ""
9696

9797
msgid "Complex Numbers as Python Objects"

c-api/dict.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-14 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/exceptions.po

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
14+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -181,7 +181,7 @@ msgid ""
181181
"constructs a tuple object whose first item is the integer :c:data:`errno` "
182182
"value and whose second item is the corresponding error message (gotten from :"
183183
"c:func:`strerror`), and then calls ``PyErr_SetObject(type, object)``. On "
184-
"Unix, when the :c:data:`errno` value is :const:`EINTR`, indicating an "
184+
"Unix, when the :c:data:`errno` value is :c:macro:`EINTR`, indicating an "
185185
"interrupted system call, this calls :c:func:`PyErr_CheckSignals`, and if "
186186
"that set the error indicator, leaves it set to that. The function always "
187187
"returns ``NULL``, so a wrapper function around a system call can write "
@@ -527,13 +527,13 @@ msgid ""
527527
msgstr ""
528528

529529
msgid ""
530-
"The default Python signal handler for :const:`SIGINT` raises the :exc:"
530+
"The default Python signal handler for :c:macro:`SIGINT` raises the :exc:"
531531
"`KeyboardInterrupt` exception."
532532
msgstr ""
533533

534534
msgid ""
535-
"Simulate the effect of a :const:`SIGINT` signal arriving. This is equivalent "
536-
"to ``PyErr_SetInterruptEx(SIGINT)``."
535+
"Simulate the effect of a :c:macro:`SIGINT` signal arriving. This is "
536+
"equivalent to ``PyErr_SetInterruptEx(SIGINT)``."
537537
msgstr ""
538538

539539
msgid ""
@@ -555,8 +555,8 @@ msgid ""
555555
msgstr ""
556556

557557
msgid ""
558-
"If the given signal isn't handled by Python (it was set to :data:`signal."
559-
"SIG_DFL` or :data:`signal.SIG_IGN`), it will be ignored."
558+
"If the given signal isn't handled by Python (it was set to :py:const:`signal."
559+
"SIG_DFL` or :py:const:`signal.SIG_IGN`), it will be ignored."
560560
msgstr ""
561561

562562
msgid ""
@@ -635,15 +635,15 @@ msgid ""
635635
msgstr ""
636636

637637
msgid ""
638-
"Return the cause (either an exception instance, or :const:`None`, set by "
638+
"Return the cause (either an exception instance, or ``None``, set by "
639639
"``raise ... from ...``) associated with the exception as a new reference, as "
640640
"accessible from Python through :attr:`__cause__`."
641641
msgstr ""
642642

643643
msgid ""
644644
"Set the cause associated with the exception to *cause*. Use ``NULL`` to "
645645
"clear it. There is no type check to make sure that *cause* is either an "
646-
"exception instance or :const:`None`. This steals a reference to *cause*."
646+
"exception instance or ``None``. This steals a reference to *cause*."
647647
msgstr ""
648648

649649
msgid ""
@@ -716,9 +716,9 @@ msgid "Marks a point where a recursive C-level call is about to be performed."
716716
msgstr ""
717717

718718
msgid ""
719-
"If :const:`USE_STACKCHECK` is defined, this function checks if the OS stack "
720-
"overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it sets a :"
721-
"exc:`MemoryError` and returns a nonzero value."
719+
"If :c:macro:`USE_STACKCHECK` is defined, this function checks if the OS "
720+
"stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it "
721+
"sets a :exc:`MemoryError` and returns a nonzero value."
722722
msgstr ""
723723

724724
msgid ""

c-api/file.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -115,9 +115,9 @@ msgstr ""
115115

116116
msgid ""
117117
"Write object *obj* to file object *p*. The only supported flag for *flags* "
118-
"is :const:`Py_PRINT_RAW`; if given, the :func:`str` of the object is written "
119-
"instead of the :func:`repr`. Return ``0`` on success or ``-1`` on failure; "
120-
"the appropriate exception will be set."
118+
"is :c:macro:`Py_PRINT_RAW`; if given, the :func:`str` of the object is "
119+
"written instead of the :func:`repr`. Return ``0`` on success or ``-1`` on "
120+
"failure; the appropriate exception will be set."
121121
msgstr ""
122122

123123
msgid ""

c-api/float.po

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
14+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1616
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -122,9 +122,9 @@ msgid ""
122122
"The pack routines write 2, 4 or 8 bytes, starting at *p*. *le* is an :c:expr:"
123123
"`int` argument, non-zero if you want the bytes string in little-endian "
124124
"format (exponent last, at ``p+1``, ``p+3``, or ``p+6`` ``p+7``), zero if you "
125-
"want big-endian format (exponent first, at *p*). The :c:data:`PY_BIG_ENDIAN` "
126-
"constant can be used to use the native endian: it is equal to ``1`` on big "
127-
"endian processor, or ``0`` on little endian processor."
125+
"want big-endian format (exponent first, at *p*). The :c:macro:"
126+
"`PY_BIG_ENDIAN` constant can be used to use the native endian: it is equal "
127+
"to ``1`` on big endian processor, or ``0`` on little endian processor."
128128
msgstr ""
129129

130130
msgid ""
@@ -157,9 +157,9 @@ msgid ""
157157
"The unpack routines read 2, 4 or 8 bytes, starting at *p*. *le* is an :c:"
158158
"expr:`int` argument, non-zero if the bytes string is in little-endian format "
159159
"(exponent last, at ``p+1``, ``p+3`` or ``p+6`` and ``p+7``), zero if big-"
160-
"endian (exponent first, at *p*). The :c:data:`PY_BIG_ENDIAN` constant can be "
161-
"used to use the native endian: it is equal to ``1`` on big endian processor, "
162-
"or ``0`` on little endian processor."
160+
"endian (exponent first, at *p*). The :c:macro:`PY_BIG_ENDIAN` constant can "
161+
"be used to use the native endian: it is equal to ``1`` on big endian "
162+
"processor, or ``0`` on little endian processor."
163163
msgstr ""
164164

165165
msgid ""

c-api/import.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:41+0000\n"
15+
"POT-Creation-Date: 2023-07-21 14:44+0000\n"
1616
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
1717
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -123,10 +123,10 @@ msgid ""
123123
"object read from a Python bytecode file or obtained from the built-in "
124124
"function :func:`compile`, load the module. Return a new reference to the "
125125
"module object, or ``NULL`` with an exception set if an error occurred. "
126-
"*name* is removed from :attr:`sys.modules` in error cases, even if *name* "
127-
"was already in :attr:`sys.modules` on entry to :c:func:"
126+
"*name* is removed from :data:`sys.modules` in error cases, even if *name* "
127+
"was already in :data:`sys.modules` on entry to :c:func:"
128128
"`PyImport_ExecCodeModule`. Leaving incompletely initialized modules in :"
129-
"attr:`sys.modules` is dangerous, as imports of such modules have no way to "
129+
"data:`sys.modules` is dangerous, as imports of such modules have no way to "
130130
"know that the module object is an unknown (and probably damaged with respect "
131131
"to the module author's intents) state."
132132
msgstr ""

0 commit comments

Comments
 (0)