Skip to content

Commit cddf5ce

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent bdc941a commit cddf5ce

File tree

11 files changed

+80
-14
lines changed

11 files changed

+80
-14
lines changed

README.en.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} Translators](https://img.shields.io/badge/Translators-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.672%25-0.svg)
16+
![Total Translation of Documentation](https://img.shields.io/badge/Total-5.671%25-0.svg)
1717
![4 Translators](https://img.shields.io/badge/Translators-4-0.svg)
1818
<!-- [[[end]]] -->
1919

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ f'''![build](https://github.com/python/python-docs-pl/actions/workflows/update-l
1313
![{translators} tłumaczy](https://img.shields.io/badge/tłumaczy-{translators}-0.svg)''')
1414
]]] -->
1515
![build](https://github.com/python/python-docs-pl/actions/workflows/update-lint-and-build.yml/badge.svg)
16-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.672%25-0.svg)
16+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-5.671%25-0.svg)
1717
![4 tłumaczy](https://img.shields.io/badge/tłumaczy-4-0.svg)
1818
<!-- [[[end]]] -->
1919

c-api/datetime.po

Lines changed: 50 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-05 15:17+0000\n"
14+
"POT-Creation-Date: 2025-11-21 15:16+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -30,12 +30,45 @@ msgid ""
3030
"Various date and time objects are supplied by the :mod:`datetime` module. "
3131
"Before using any of these functions, the header file :file:`datetime.h` must "
3232
"be included in your source (note that this is not included by :file:`Python."
33-
"h`), and the macro :c:macro:`!PyDateTime_IMPORT` must be invoked, usually as "
33+
"h`), and the macro :c:macro:`PyDateTime_IMPORT` must be invoked, usually as "
3434
"part of the module initialisation function. The macro puts a pointer to a C "
35-
"structure into a static variable, :c:data:`!PyDateTimeAPI`, that is used by "
35+
"structure into a static variable, :c:data:`PyDateTimeAPI`, that is used by "
3636
"the following macros."
3737
msgstr ""
3838

39+
msgid "Import the datetime C API."
40+
msgstr ""
41+
42+
msgid ""
43+
"On success, populate the :c:var:`PyDateTimeAPI` pointer. On failure, set :c:"
44+
"var:`PyDateTimeAPI` to ``NULL`` and set an exception. The caller must check "
45+
"if an error occurred via :c:func:`PyErr_Occurred`:"
46+
msgstr ""
47+
48+
msgid ""
49+
"PyDateTime_IMPORT;\n"
50+
"if (PyErr_Occurred()) { /* cleanup */ }"
51+
msgstr ""
52+
53+
msgid "This is not compatible with subinterpreters."
54+
msgstr ""
55+
56+
msgid "Structure containing the fields for the datetime C API."
57+
msgstr ""
58+
59+
msgid "The fields of this structure are private and subject to change."
60+
msgstr ""
61+
62+
msgid "Do not use this directly; prefer ``PyDateTime_*`` APIs instead."
63+
msgstr ""
64+
65+
msgid "Dynamically allocated object containing the datetime C API."
66+
msgstr ""
67+
68+
msgid ""
69+
"This variable is only available once :c:macro:`PyDateTime_IMPORT` succeeds."
70+
msgstr ""
71+
3972
msgid "This subtype of :c:type:`PyObject` represents a Python date object."
4073
msgstr ""
4174

@@ -260,3 +293,17 @@ msgid ""
260293
"Create and return a new :class:`datetime.date` object given an argument "
261294
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp`."
262295
msgstr ""
296+
297+
msgid "Internal data"
298+
msgstr ""
299+
300+
msgid ""
301+
"The following symbols are exposed by the C API but should be considered "
302+
"internal-only."
303+
msgstr ""
304+
305+
msgid "Name of the datetime capsule to pass to :c:func:`PyCapsule_Import`."
306+
msgstr ""
307+
308+
msgid "Internal usage only. Use :c:macro:`PyDateTime_IMPORT` instead."
309+
msgstr ""

c-api/init.po

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-10-31 15:04+0000\n"
14+
"POT-Creation-Date: 2025-11-21 15:16+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:03+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1986,6 +1986,25 @@ msgid ""
19861986
"This function now always schedules *func* to be run in the main interpreter."
19871987
msgstr ""
19881988

1989+
msgid ""
1990+
"Execute all pending calls. This is usually executed automatically by the "
1991+
"interpreter."
1992+
msgstr ""
1993+
1994+
msgid ""
1995+
"This function returns ``0`` on success, and returns ``-1`` with an exception "
1996+
"set on failure."
1997+
msgstr ""
1998+
1999+
msgid ""
2000+
"If this is not called in the main thread of the main interpreter, this "
2001+
"function does nothing and returns ``0``. The caller must hold the :term:"
2002+
"`GIL`."
2003+
msgstr ""
2004+
2005+
msgid "This function only runs pending calls in the main interpreter."
2006+
msgstr ""
2007+
19892008
msgid "Profiling and Tracing"
19902009
msgstr ""
19912010

library/html.parser.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-01 14:58+0000\n"
14+
"POT-Creation-Date: 2025-11-19 20:20+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/logging.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-10-31 15:04+0000\n"
14+
"POT-Creation-Date: 2025-11-19 20:20+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/mmap.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-10-31 15:04+0000\n"
14+
"POT-Creation-Date: 2025-11-19 20:20+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

library/socketserver.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.13\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-11-01 14:58+0000\n"
14+
"POT-Creation-Date: 2025-11-21 15:16+0000\n"
1515
"PO-Revision-Date: 2025-09-15 01:04+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -547,7 +547,7 @@ msgid ""
547547
"until a newline itself. If it had just used a single ``recv()`` without the "
548548
"loop it would just have returned what has been received so far from the "
549549
"client. TCP is stream based: data arrives in the order it was sent, but "
550-
"there no correlation between client ``send()`` or ``sendall()`` calls and "
550+
"there is no correlation between client ``send()`` or ``sendall()`` calls and "
551551
"the number of ``recv()`` calls on the server required to receive it."
552552
msgstr ""
553553

tutorial/introduction.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-10-29 15:09+0000\n"
15+
"POT-Creation-Date: 2025-11-19 20:20+0000\n"
1616
"PO-Revision-Date: 2025-09-15 01:05+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

tutorial/modules.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-10-29 15:09+0000\n"
15+
"POT-Creation-Date: 2025-11-19 20:20+0000\n"
1616
"PO-Revision-Date: 2025-09-15 01:05+0000\n"
1717
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
 (0)