Skip to content

Commit 0a15f20

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 59fae0c commit 0a15f20

Some content is hidden

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

46 files changed

+4424
-80
lines changed

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.68% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-47.68%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.49%25-0.svg)
18+
![47.70% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-47.70%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.50%25-0.svg)
2020
![5 tłumaczy](https://img.shields.io/badge/tłumaczy-5-0.svg)
2121
<!-- [[[end]]] -->
2222

c-api/bytearray.po

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2023, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Waldemar Stoczkowski, 2023
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2023-06-09 14:40+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16+
"Last-Translator: Waldemar Stoczkowski, 2023\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Byte Array Objects"
27+
msgstr ""
28+
29+
msgid ""
30+
"This subtype of :c:type:`PyObject` represents a Python bytearray object."
31+
msgstr ""
32+
33+
msgid ""
34+
"This instance of :c:type:`PyTypeObject` represents the Python bytearray "
35+
"type; it is the same object as :class:`bytearray` in the Python layer."
36+
msgstr ""
37+
38+
msgid "Type check macros"
39+
msgstr ""
40+
41+
msgid ""
42+
"Return true if the object *o* is a bytearray object or an instance of a "
43+
"subtype of the bytearray type. This function always succeeds."
44+
msgstr ""
45+
46+
msgid ""
47+
"Return true if the object *o* is a bytearray object, but not an instance of "
48+
"a subtype of the bytearray type. This function always succeeds."
49+
msgstr ""
50+
51+
msgid "Direct API functions"
52+
msgstr ""
53+
54+
msgid ""
55+
"Return a new bytearray object from any object, *o*, that implements the :ref:"
56+
"`buffer protocol <bufferobjects>`."
57+
msgstr ""
58+
59+
msgid ""
60+
"Create a new bytearray object from *string* and its length, *len*. On "
61+
"failure, ``NULL`` is returned."
62+
msgstr ""
63+
64+
msgid ""
65+
"Concat bytearrays *a* and *b* and return a new bytearray with the result."
66+
msgstr ""
67+
68+
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
69+
msgstr ""
70+
71+
msgid ""
72+
"Return the contents of *bytearray* as a char array after checking for a "
73+
"``NULL`` pointer. The returned array always has an extra null byte appended."
74+
msgstr ""
75+
76+
msgid "Resize the internal buffer of *bytearray* to *len*."
77+
msgstr ""
78+
79+
msgid "Macros"
80+
msgstr ""
81+
82+
msgid "These macros trade safety for speed and they don't check pointers."
83+
msgstr ""
84+
85+
msgid "Similar to :c:func:`PyByteArray_AsString`, but without error checking."
86+
msgstr ""
87+
88+
msgid "Similar to :c:func:`PyByteArray_Size`, but without error checking."
89+
msgstr ""
90+
91+
msgid "object"
92+
msgstr "obiekt"
93+
94+
msgid "bytearray"
95+
msgstr ""

c-api/bytes.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#
66
# Translators:
77
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
8+
# Waldemar Stoczkowski, 2023
89
#
910
#, fuzzy
1011
msgid ""
@@ -13,7 +14,7 @@ msgstr ""
1314
"Report-Msgid-Bugs-To: \n"
1415
"POT-Creation-Date: 2023-06-09 14:40+0000\n"
1516
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
17+
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1718
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1819
"MIME-Version: 1.0\n"
1920
"Content-Type: text/plain; charset=UTF-8\n"
@@ -273,7 +274,7 @@ msgid ""
273274
msgstr ""
274275

275276
msgid "object"
276-
msgstr ""
277+
msgstr "obiekt"
277278

278279
msgid "bytes"
279280
msgstr ""

c-api/capsule.po

Lines changed: 184 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,184 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2023, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Waldemar Stoczkowski, 2023
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.11\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2023-06-09 14:40+0000\n"
15+
"PO-Revision-Date: 2023-05-24 02:08+0000\n"
16+
"Last-Translator: Waldemar Stoczkowski, 2023\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Capsules"
27+
msgstr ""
28+
29+
msgid ""
30+
"Refer to :ref:`using-capsules` for more information on using these objects."
31+
msgstr ""
32+
33+
msgid ""
34+
"This subtype of :c:type:`PyObject` represents an opaque value, useful for C "
35+
"extension modules who need to pass an opaque value (as a :c:expr:`void*` "
36+
"pointer) through Python code to other C code. It is often used to make a C "
37+
"function pointer defined in one module available to other modules, so the "
38+
"regular import mechanism can be used to access C APIs defined in dynamically "
39+
"loaded modules."
40+
msgstr ""
41+
42+
msgid "The type of a destructor callback for a capsule. Defined as::"
43+
msgstr ""
44+
45+
msgid ""
46+
"See :c:func:`PyCapsule_New` for the semantics of PyCapsule_Destructor "
47+
"callbacks."
48+
msgstr ""
49+
50+
msgid ""
51+
"Return true if its argument is a :c:type:`PyCapsule`. This function always "
52+
"succeeds."
53+
msgstr ""
54+
55+
msgid ""
56+
"Create a :c:type:`PyCapsule` encapsulating the *pointer*. The *pointer* "
57+
"argument may not be ``NULL``."
58+
msgstr ""
59+
60+
msgid "On failure, set an exception and return ``NULL``."
61+
msgstr ""
62+
63+
msgid ""
64+
"The *name* string may either be ``NULL`` or a pointer to a valid C string. "
65+
"If non-``NULL``, this string must outlive the capsule. (Though it is "
66+
"permitted to free it inside the *destructor*.)"
67+
msgstr ""
68+
69+
msgid ""
70+
"If the *destructor* argument is not ``NULL``, it will be called with the "
71+
"capsule as its argument when it is destroyed."
72+
msgstr ""
73+
74+
msgid ""
75+
"If this capsule will be stored as an attribute of a module, the *name* "
76+
"should be specified as ``modulename.attributename``. This will enable other "
77+
"modules to import the capsule using :c:func:`PyCapsule_Import`."
78+
msgstr ""
79+
80+
msgid ""
81+
"Retrieve the *pointer* stored in the capsule. On failure, set an exception "
82+
"and return ``NULL``."
83+
msgstr ""
84+
85+
msgid ""
86+
"The *name* parameter must compare exactly to the name stored in the capsule. "
87+
"If the name stored in the capsule is ``NULL``, the *name* passed in must "
88+
"also be ``NULL``. Python uses the C function :c:func:`strcmp` to compare "
89+
"capsule names."
90+
msgstr ""
91+
92+
msgid ""
93+
"Return the current destructor stored in the capsule. On failure, set an "
94+
"exception and return ``NULL``."
95+
msgstr ""
96+
97+
msgid ""
98+
"It is legal for a capsule to have a ``NULL`` destructor. This makes a "
99+
"``NULL`` return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :"
100+
"c:func:`PyErr_Occurred` to disambiguate."
101+
msgstr ""
102+
103+
msgid ""
104+
"Return the current context stored in the capsule. On failure, set an "
105+
"exception and return ``NULL``."
106+
msgstr ""
107+
108+
msgid ""
109+
"It is legal for a capsule to have a ``NULL`` context. This makes a ``NULL`` "
110+
"return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :c:func:"
111+
"`PyErr_Occurred` to disambiguate."
112+
msgstr ""
113+
114+
msgid ""
115+
"Return the current name stored in the capsule. On failure, set an exception "
116+
"and return ``NULL``."
117+
msgstr ""
118+
119+
msgid ""
120+
"It is legal for a capsule to have a ``NULL`` name. This makes a ``NULL`` "
121+
"return code somewhat ambiguous; use :c:func:`PyCapsule_IsValid` or :c:func:"
122+
"`PyErr_Occurred` to disambiguate."
123+
msgstr ""
124+
125+
msgid ""
126+
"Import a pointer to a C object from a capsule attribute in a module. The "
127+
"*name* parameter should specify the full name to the attribute, as in "
128+
"``module.attribute``. The *name* stored in the capsule must match this "
129+
"string exactly."
130+
msgstr ""
131+
132+
msgid ""
133+
"Return the capsule's internal *pointer* on success. On failure, set an "
134+
"exception and return ``NULL``."
135+
msgstr ""
136+
137+
msgid "*no_block* has no effect anymore."
138+
msgstr ""
139+
140+
msgid ""
141+
"Determines whether or not *capsule* is a valid capsule. A valid capsule is "
142+
"non-``NULL``, passes :c:func:`PyCapsule_CheckExact`, has a non-``NULL`` "
143+
"pointer stored in it, and its internal name matches the *name* parameter. "
144+
"(See :c:func:`PyCapsule_GetPointer` for information on how capsule names are "
145+
"compared.)"
146+
msgstr ""
147+
148+
msgid ""
149+
"In other words, if :c:func:`PyCapsule_IsValid` returns a true value, calls "
150+
"to any of the accessors (any function starting with :c:func:`PyCapsule_Get`) "
151+
"are guaranteed to succeed."
152+
msgstr ""
153+
154+
msgid ""
155+
"Return a nonzero value if the object is valid and matches the name passed "
156+
"in. Return ``0`` otherwise. This function will not fail."
157+
msgstr ""
158+
159+
msgid "Set the context pointer inside *capsule* to *context*."
160+
msgstr ""
161+
162+
msgid ""
163+
"Return ``0`` on success. Return nonzero and set an exception on failure."
164+
msgstr ""
165+
166+
msgid "Set the destructor inside *capsule* to *destructor*."
167+
msgstr ""
168+
169+
msgid ""
170+
"Set the name inside *capsule* to *name*. If non-``NULL``, the name must "
171+
"outlive the capsule. If the previous *name* stored in the capsule was not "
172+
"``NULL``, no attempt is made to free it."
173+
msgstr ""
174+
175+
msgid ""
176+
"Set the void pointer inside *capsule* to *pointer*. The pointer may not be "
177+
"``NULL``."
178+
msgstr ""
179+
180+
msgid "object"
181+
msgstr "obiekt"
182+
183+
msgid "Capsule"
184+
msgstr ""

0 commit comments

Comments
 (0)