Skip to content

Commit 7049b17

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent 8cc4706 commit 7049b17

File tree

205 files changed

+1585
-1220
lines changed

Some content is hidden

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

205 files changed

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

about.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.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

bugs.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
16+
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2023\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/abstract.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.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Krzysztof Wierzbicki <krzwierz79@gmail.com>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/allocation.po

Lines changed: 15 additions & 14 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: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Waldemar Stoczkowski, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -41,26 +41,27 @@ msgstr ""
4141

4242
msgid ""
4343
"Allocate a new Python object using the C structure type *TYPE* and the "
44-
"Python type object *type*. Fields not defined by the Python object header "
45-
"are not initialized; the object's reference count will be one. The size of "
46-
"the memory allocation is determined from the :c:member:`~PyTypeObject."
47-
"tp_basicsize` field of the type object."
44+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
45+
"Python object header are not initialized; the object's reference count will "
46+
"be one. The size of the memory allocation is determined from the :c:member:"
47+
"`~PyTypeObject.tp_basicsize` field of the type object."
4848
msgstr ""
4949

5050
msgid ""
5151
"Allocate a new Python object using the C structure type *TYPE* and the "
52-
"Python type object *type*. Fields not defined by the Python object header "
53-
"are not initialized. The allocated memory allows for the *TYPE* structure "
54-
"plus *size* fields of the size given by the :c:member:`~PyTypeObject."
55-
"tp_itemsize` field of *type*. This is useful for implementing objects like "
56-
"tuples, which are able to determine their size at construction time. "
57-
"Embedding the array of fields into the same allocation decreases the number "
58-
"of allocations, improving the memory management efficiency."
52+
"Python type object *typeobj* (``PyTypeObject*``). Fields not defined by the "
53+
"Python object header are not initialized. The allocated memory allows for "
54+
"the *TYPE* structure plus *size* (``Py_ssize_t``) fields of the size given "
55+
"by the :c:member:`~PyTypeObject.tp_itemsize` field of *typeobj*. This is "
56+
"useful for implementing objects like tuples, which are able to determine "
57+
"their size at construction time. Embedding the array of fields into the "
58+
"same allocation decreases the number of allocations, improving the memory "
59+
"management efficiency."
5960
msgstr ""
6061

6162
msgid ""
62-
"Releases memory allocated to an object using :c:func:`PyObject_New` or :c:"
63-
"func:`PyObject_NewVar`. This is normally called from the :c:member:"
63+
"Releases memory allocated to an object using :c:macro:`PyObject_New` or :c:"
64+
"macro:`PyObject_NewVar`. This is normally called from the :c:member:"
6465
"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
6566
"fields of the object should not be accessed after this call as the memory is "
6667
"no longer a valid Python object."

c-api/apiabiversion.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.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -138,7 +138,7 @@ msgstr ""
138138
msgid "Use this for numeric comparisons, e.g. ``#if PY_VERSION_HEX >= ...``."
139139
msgstr ""
140140

141-
msgid "This version is also available via the symbol :data:`Py_Version`."
141+
msgid "This version is also available via the symbol :c:var:`Py_Version`."
142142
msgstr ""
143143

144144
msgid ""

c-api/arg.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.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -737,7 +737,7 @@ msgstr ""
737737

738738
msgid ""
739739
"This is an example of the use of this function, taken from the sources for "
740-
"the :mod:`_weakref` helper module for weak references::"
740+
"the :mod:`!_weakref` helper module for weak references::"
741741
msgstr ""
742742

743743
msgid ""
@@ -834,7 +834,7 @@ msgid "``u`` (:class:`str`) [const wchar_t \\*]"
834834
msgstr ""
835835

836836
msgid ""
837-
"Convert a null-terminated :c:expr:`wchar_t` buffer of Unicode (UTF-16 or "
837+
"Convert a null-terminated :c:type:`wchar_t` buffer of Unicode (UTF-16 or "
838838
"UCS-4) data to a Python Unicode object. If the Unicode buffer pointer is "
839839
"``NULL``, ``None`` is returned."
840840
msgstr ""

c-api/buffer.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: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -67,7 +67,7 @@ msgstr ""
6767
msgid ""
6868
"An example consumer of the buffer interface is the :meth:`~io.BufferedIOBase."
6969
"write` method of file objects: any object that can export a series of bytes "
70-
"through the buffer interface can be written to a file. While :meth:`write` "
70+
"through the buffer interface can be written to a file. While :meth:`!write` "
7171
"only needs read-only access to the internal contents of the object passed to "
7272
"it, other methods such as :meth:`~io.BufferedIOBase.readinto` need write "
7373
"access to the contents of their argument. The buffer interface allows "
@@ -281,7 +281,7 @@ msgid ""
281281
msgstr ""
282282

283283
msgid ""
284-
"All :c:data:`Py_buffer` fields are unambiguously defined by the request type."
284+
"All :c:type:`Py_buffer` fields are unambiguously defined by the request type."
285285
msgstr ""
286286

287287
msgid "request-independent fields"
@@ -495,8 +495,8 @@ msgid ""
495495
msgstr ""
496496

497497
msgid ""
498-
"Return the implied :c:data:`~Py_buffer.itemsize` from :c:data:`~Py_buffer."
499-
"format`. On error, raise an exception and return -1."
498+
"Return the implied :c:member:`~Py_buffer.itemsize` from :c:member:"
499+
"`~Py_buffer.format`. On error, raise an exception and return -1."
500500
msgstr ""
501501

502502
msgid ""

c-api/bytes.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.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-06-30 14:13+0000\n"
14+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -79,7 +79,7 @@ msgstr ""
7979
msgid "Comment"
8080
msgstr ""
8181

82-
msgid ":attr:`%%`"
82+
msgid "``%%``"
8383
msgstr ""
8484

8585
msgid "*n/a*"
@@ -88,7 +88,7 @@ msgstr ""
8888
msgid "The literal % character."
8989
msgstr ""
9090

91-
msgid ":attr:`%c`"
91+
msgid "``%c``"
9292
msgstr ""
9393

9494
msgid "int"
@@ -97,13 +97,13 @@ msgstr "int"
9797
msgid "A single byte, represented as a C int."
9898
msgstr ""
9999

100-
msgid ":attr:`%d`"
100+
msgid "``%d``"
101101
msgstr ""
102102

103103
msgid "Equivalent to ``printf(\"%d\")``. [1]_"
104104
msgstr ""
105105

106-
msgid ":attr:`%u`"
106+
msgid "``%u``"
107107
msgstr ""
108108

109109
msgid "unsigned int"
@@ -112,7 +112,7 @@ msgstr "nieoznaczony typ int"
112112
msgid "Equivalent to ``printf(\"%u\")``. [1]_"
113113
msgstr ""
114114

115-
msgid ":attr:`%ld`"
115+
msgid "``%ld``"
116116
msgstr ""
117117

118118
msgid "long"
@@ -121,7 +121,7 @@ msgstr ""
121121
msgid "Equivalent to ``printf(\"%ld\")``. [1]_"
122122
msgstr ""
123123

124-
msgid ":attr:`%lu`"
124+
msgid "``%lu``"
125125
msgstr ""
126126

127127
msgid "unsigned long"
@@ -130,7 +130,7 @@ msgstr "nieoznaczony typ długi"
130130
msgid "Equivalent to ``printf(\"%lu\")``. [1]_"
131131
msgstr ""
132132

133-
msgid ":attr:`%zd`"
133+
msgid "``%zd``"
134134
msgstr ""
135135

136136
msgid ":c:type:`\\ Py_ssize_t`"
@@ -139,7 +139,7 @@ msgstr ""
139139
msgid "Equivalent to ``printf(\"%zd\")``. [1]_"
140140
msgstr ""
141141

142-
msgid ":attr:`%zu`"
142+
msgid "``%zu``"
143143
msgstr ""
144144

145145
msgid "size_t"
@@ -148,19 +148,19 @@ msgstr ""
148148
msgid "Equivalent to ``printf(\"%zu\")``. [1]_"
149149
msgstr ""
150150

151-
msgid ":attr:`%i`"
151+
msgid "``%i``"
152152
msgstr ""
153153

154154
msgid "Equivalent to ``printf(\"%i\")``. [1]_"
155155
msgstr ""
156156

157-
msgid ":attr:`%x`"
157+
msgid "``%x``"
158158
msgstr ""
159159

160160
msgid "Equivalent to ``printf(\"%x\")``. [1]_"
161161
msgstr ""
162162

163-
msgid ":attr:`%s`"
163+
msgid "``%s``"
164164
msgstr ""
165165

166166
msgid "const char\\*"
@@ -169,7 +169,7 @@ msgstr ""
169169
msgid "A null-terminated C character array."
170170
msgstr ""
171171

172-
msgid ":attr:`%p`"
172+
msgid "``%p``"
173173
msgstr ""
174174

175175
msgid "const void\\*"

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.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-21 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2022\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:macro:`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:macro:`EDOM`."
94+
"returns zero and sets :c:data:`errno` to :c:macro:`!EDOM`."
9595
msgstr ""
9696

9797
msgid "Complex Numbers as Python Objects"

0 commit comments

Comments
 (0)