Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd4d7c5

Browse files
GitHub Action's update-translation jobm-aciek
authored andcommitted
Update translation from Transifex
1 parent 76e5040 commit cd4d7c5

32 files changed

Lines changed: 181 additions & 51 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ f'''![build](https://github.com/python/python-docs-pl/workflows/.github/workflow
1616
]]] -->
1717
![build](https://github.com/python/python-docs-pl/workflows/.github/workflows/update-lint-and-build.yml/badge.svg)
1818
![55.12% przełącznika języków](https://img.shields.io/badge/przełącznik_języków-55.12%25-0.svg)
19-
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.10%25-0.svg)
19+
![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość-3.09%25-0.svg)
2020
![21 tłumaczy](https://img.shields.io/badge/tłumaczy-21-0.svg)
2121
<!-- [[[end]]] -->
2222

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.13\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2024-05-31 14:14+0000\n"
16+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1818
"Last-Translator: Maciej Olko <[email protected]>, 2024\n"
1919
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/buffer.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: 2024-05-31 14:14+0000\n"
14+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

c-api/init.po

Lines changed: 44 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: 2024-05-17 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -121,6 +121,15 @@ msgstr ""
121121
msgid ":c:func:`PyMem_RawFree`"
122122
msgstr ""
123123

124+
msgid "Synchronization:"
125+
msgstr ""
126+
127+
msgid ":c:func:`PyMutex_Lock`"
128+
msgstr ""
129+
130+
msgid ":c:func:`PyMutex_Unlock`"
131+
msgstr ""
132+
124133
msgid ""
125134
"The following functions **should not be called** before :c:func:"
126135
"`Py_Initialize`: :c:func:`Py_EncodeLocale`, :c:func:`Py_GetPath`, :c:func:"
@@ -2066,6 +2075,40 @@ msgid ""
20662075
"not be used in new code."
20672076
msgstr ""
20682077

2078+
msgid "Synchronization Primitives"
2079+
msgstr ""
2080+
2081+
msgid "The C-API provides a basic mutual exclusion lock."
2082+
msgstr ""
2083+
2084+
msgid ""
2085+
"A mutual exclusion lock. The :c:type:`!PyMutex` should be initialized to "
2086+
"zero to represent the unlocked state. For example::"
2087+
msgstr ""
2088+
2089+
msgid ""
2090+
"Instances of :c:type:`!PyMutex` should not be copied or moved. Both the "
2091+
"contents and address of a :c:type:`!PyMutex` are meaningful, and it must "
2092+
"remain at a fixed, writable location in memory."
2093+
msgstr ""
2094+
2095+
msgid ""
2096+
"A :c:type:`!PyMutex` currently occupies one byte, but the size should be "
2097+
"considered unstable. The size may change in future Python releases without "
2098+
"a deprecation period."
2099+
msgstr ""
2100+
2101+
msgid ""
2102+
"Lock mutex *m*. If another thread has already locked it, the calling thread "
2103+
"will block until the mutex is unlocked. While blocked, the thread will "
2104+
"temporarily release the :term:`GIL` if it is held."
2105+
msgstr ""
2106+
2107+
msgid ""
2108+
"Unlock mutex *m*. The mutex must be locked --- otherwise, the function will "
2109+
"issue a fatal error."
2110+
msgstr ""
2111+
20692112
msgid "PyEval_InitThreads()"
20702113
msgstr ""
20712114

c-api/typeobj.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.13\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1623,8 +1623,8 @@ msgid ""
16231623
msgstr ""
16241624

16251625
msgid ""
1626-
"This flag is present in header files, but is an internal feature and should "
1627-
"not be used. It will be removed in a future version of CPython"
1626+
"This flag is present in header files, but is not be used. It will be removed "
1627+
"in a future version of CPython"
16281628
msgstr ""
16291629

16301630
msgid ""

extending/extending.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: 2024-05-31 14:14+0000\n"
14+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1515
"PO-Revision-Date: 2021-06-28 00:51+0000\n"
1616
"Last-Translator: Maciej Olko <[email protected]>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

extending/newtypes.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: 2024-05-31 14:14+0000\n"
15+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1717
"Last-Translator: haaritsubaki, 2023\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

faq/general.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: 2024-05-31 14:14+0000\n"
15+
"POT-Creation-Date: 2024-06-20 06:40+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:52+0000\n"
1717
"Last-Translator: Krzysztof Abramowicz, 2022\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/functional.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: 2024-06-07 14:15+0000\n"
15+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1717
"Last-Translator: Seweryn Piórkowski <[email protected]>, 2021\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

howto/index.po

Lines changed: 81 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Stefan Ocetkiewicz <[email protected]>, 2021
87
# Maciej Olko <[email protected]>, 2021
98
#
109
#, fuzzy
1110
msgid ""
1211
msgstr ""
1312
"Project-Id-Version: Python 3.13\n"
1413
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2024-06-07 14:15+0000\n"
14+
"POT-Creation-Date: 2024-06-21 14:14+0000\n"
1615
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1716
"Last-Translator: Maciej Olko <[email protected]>, 2021\n"
1817
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -28,16 +27,83 @@ msgid "Python HOWTOs"
2827
msgstr "Pythonowe „Jak to zrobić?”"
2928

3029
msgid ""
31-
"Python HOWTOs are documents that cover a single, specific topic, and attempt "
32-
"to cover it fairly completely. Modelled on the Linux Documentation Project's "
33-
"HOWTO collection, this collection is an effort to foster documentation "
34-
"that's more detailed than the Python Library Reference."
35-
msgstr ""
36-
"Pythonowe „Jak to zrobić?” są dokumentami, z których każdy opisuje jeden, "
37-
"specyficzny temat i próbuje objaśnić go w jak najbardziej kompletny sposób. "
38-
"Idea wywodzi się ze zbioru dokumentów \"Jak to zrobić?\" Projektu "
39-
"Dokumentacji Linuksa i polega na tym, aby dostarczać bardziej szczegółowe "
40-
"opisy właściwości Pythona niż te zawarte w Bibliotece Referencyjnej."
41-
42-
msgid "Currently, the HOWTOs are:"
43-
msgstr "Aktualnie w serii \"Jak to zrobić?\" występują:"
30+
"Python HOWTOs are documents that cover a specific topic in-depth. Modeled on "
31+
"the Linux Documentation Project's HOWTO collection, this collection is an "
32+
"effort to foster documentation that's more detailed than the Python Library "
33+
"Reference."
34+
msgstr ""
35+
36+
msgid "General:"
37+
msgstr ""
38+
39+
msgid ":ref:`annotations-howto`"
40+
msgstr ""
41+
42+
msgid ":ref:`argparse-tutorial`"
43+
msgstr ""
44+
45+
msgid ":ref:`descriptorhowto`"
46+
msgstr ""
47+
48+
msgid ":ref:`enum-howto`"
49+
msgstr ""
50+
51+
msgid ":ref:`functional-howto`"
52+
msgstr ""
53+
54+
msgid ":ref:`ipaddress-howto`"
55+
msgstr ""
56+
57+
msgid ":ref:`logging-howto`"
58+
msgstr ""
59+
60+
msgid ":ref:`logging-cookbook`"
61+
msgstr ""
62+
63+
msgid ":ref:`regex-howto`"
64+
msgstr ""
65+
66+
msgid ":ref:`sortinghowto`"
67+
msgstr ""
68+
69+
msgid ":ref:`unicode-howto`"
70+
msgstr ""
71+
72+
msgid ":ref:`urllib-howto`"
73+
msgstr ""
74+
75+
msgid "Advanced development:"
76+
msgstr ""
77+
78+
msgid ":ref:`curses-howto`"
79+
msgstr ""
80+
81+
msgid ":ref:`freethreading-extensions-howto`"
82+
msgstr ""
83+
84+
msgid ":ref:`isolating-extensions-howto`"
85+
msgstr ""
86+
87+
msgid ":ref:`python_2.3_mro`"
88+
msgstr ""
89+
90+
msgid ":ref:`socket-howto`"
91+
msgstr ""
92+
93+
msgid ":ref:`timerfd-howto`"
94+
msgstr ""
95+
96+
msgid ":ref:`cporting-howto`"
97+
msgstr ""
98+
99+
msgid "Debugging and profiling:"
100+
msgstr ""
101+
102+
msgid ":ref:`gdb`"
103+
msgstr ""
104+
105+
msgid ":ref:`instrumentation`"
106+
msgstr ""
107+
108+
msgid ":ref:`perf_profiling`"
109+
msgstr ""

0 commit comments

Comments
 (0)