Skip to content

Commit 3310d99

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 09160d4 commit 3310d99

28 files changed

+783
-459
lines changed

README.en.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1414
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1515
]]] -->
1616
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
17-
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.20%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
18-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-11.55%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
17+
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.19%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
18+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-11.53%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
1919
![24 Translators](https://img.shields.io/badge/Translators-24-0.svg)
2020
<!-- [[[end]]] -->
2121

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ f'''[![build](https://github.com/python/python-docs-pl/actions/workflows/update-
1414
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1515
]]] -->
1616
[![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml)
17-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.20%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
18-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-11.55%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
17+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.19%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
18+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-11.53%25-0.svg)](https://python-docs-translations.github.io/dashboard/)
1919
![24 tłumaczy](https://img.shields.io/badge/tłumaczy-24-0.svg)
2020
<!-- [[[end]]] -->
2121

c-api/exceptions.po

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.14\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2025-06-13 14:21+0000\n"
16+
"POT-Creation-Date: 2025-06-20 14:21+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
1818
"Last-Translator: Stan Ulbrych, 2025\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -703,6 +703,14 @@ msgid ""
703703
"as the docstring for the exception class."
704704
msgstr ""
705705

706+
msgid ""
707+
"Return non-zero if *ob* is an exception class, zero otherwise. This function "
708+
"always succeeds."
709+
msgstr ""
710+
711+
msgid "Return :c:member:`~PyTypeObject.tp_name` of the exception class *ob*."
712+
msgstr ""
713+
706714
msgid "Exception Objects"
707715
msgstr "Przedmioty Sytuacji Wyjątkowych"
708716

c-api/intro.po

Lines changed: 4 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.14\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2025-06-13 14:21+0000\n"
19+
"POT-Creation-Date: 2025-06-20 14:21+0000\n"
2020
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
2121
"Last-Translator: Krzysztof Abramowicz, 2025\n"
2222
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -204,36 +204,9 @@ msgstr ""
204204

205205
msgid ""
206206
"Several useful macros are defined in the Python header files. Many are "
207-
"defined closer to where they are useful (e.g. :c:macro:`Py_RETURN_NONE`). "
208-
"Others of a more general utility are defined here. This is not necessarily "
209-
"a complete listing."
210-
msgstr ""
211-
212-
msgid ""
213-
"Declare an extension module ``PyInit`` initialization function. The function "
214-
"return type is :c:expr:`PyObject*`. The macro declares any special linkage "
215-
"declarations required by the platform, and for C++ declares the function as "
216-
"``extern \"C\"``."
217-
msgstr ""
218-
219-
msgid ""
220-
"The initialization function must be named :samp:`PyInit_{name}`, where "
221-
"*name* is the name of the module, and should be the only non-\\ ``static`` "
222-
"item defined in the module file. Example::"
223-
msgstr ""
224-
225-
msgid ""
226-
"static struct PyModuleDef spam_module = {\n"
227-
" .m_base = PyModuleDef_HEAD_INIT,\n"
228-
" .m_name = \"spam\",\n"
229-
" ...\n"
230-
"};\n"
231-
"\n"
232-
"PyMODINIT_FUNC\n"
233-
"PyInit_spam(void)\n"
234-
"{\n"
235-
" return PyModuleDef_Init(&spam_module);\n"
236-
"}"
207+
"defined closer to where they are useful (for example, :c:macro:"
208+
"`Py_RETURN_NONE`, :c:macro:`PyMODINIT_FUNC`). Others of a more general "
209+
"utility are defined here. This is not necessarily a complete listing."
237210
msgstr ""
238211

239212
msgid "Return the absolute value of ``x``."

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy