Skip to content

Commit 3dc15b2

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
Co-Authored-By: Blessing Oluronbi
1 parent 3f89478 commit 3dc15b2

5 files changed

Lines changed: 88 additions & 28 deletions

File tree

README.en.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/actions/workflows/update-
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)
1717
[![core 97.60%](https://img.shields.io/badge/core-97.60%25-0.svg)](https://translations.python.org/#pl)
18-
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.11%25-0.svg)](https://translations.python.org/#pl)
19-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-11.74%25-0.svg)](https://translations.python.org/#pl)
18+
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.13%25-0.svg)](https://translations.python.org/#pl)
19+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-11.77%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

2222
*Przeczytaj to w innym języku: [polski](README.md)*

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/actions/workflows/update-
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)
1717
[![podstawowe artykuły 97.60%](https://img.shields.io/badge/podstawowe_artykuły-97.60%25-0.svg)](https://translations.python.org/#pl)
18-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.11%25-0.svg)](https://translations.python.org/#pl)
19-
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-11.74%25-0.svg)](https://translations.python.org/#pl)
18+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.13%25-0.svg)](https://translations.python.org/#pl)
19+
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_napisów-11.77%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

2222
*Read this in another language: [English](README.en.md)*

c-api/init_config.po

Lines changed: 46 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ msgid ""
4747
msgstr "inicjalizacja patrz również, wątek<initialization>"
4848

4949
msgid ":pep:`741` \"Python Configuration C API\"."
50-
msgstr ""
50+
msgstr "„Konfiguracja języka C w Pythona API”.:pep:`741`"
5151

5252
msgid "Example"
5353
msgstr "Przykład"
@@ -56,6 +56,8 @@ msgid ""
5656
"Example of customized Python always running with the :ref:`Python "
5757
"Development Mode <devmode>` enabled; return ``-1`` on error:"
5858
msgstr ""
59+
"Przykład dostosowanego języka Python zawsze działającego z włączonym :ref:"
60+
"`Tryb deweloperski Python`; zwracać w przypadku błędu:``-1``"
5961

6062
msgid ""
6163
"int init_python(void)\n"
@@ -92,35 +94,72 @@ msgid ""
9294
" }\n"
9395
"}"
9496
msgstr ""
97+
"nt init_python(void)\n"
98+
"{\n"
99+
"PyInitConfig *config = PyInitConfig_Create();\n"
100+
"if (config == NULL) {\n"
101+
"printf(\"PYTHON INIT ERROR: alokacja pamięci nie powiodła się\\n\");\n"
102+
"zwracać -1;\n"
103+
"}\n"
104+
"\n"
105+
"// Włącz tryb programistyczny Pythona\n"
106+
"if (PyInitConfig_SetInt(config, \"dev_mode\", 1) < 0) {\n"
107+
"goto error;\n"
108+
"}\n"
109+
"\n"
110+
"// Zainicjuj Pythona konfiguracją\n"
111+
"if (Py_InitializeFromInitConfig(config) < 0) {\n"
112+
"goto error;\n"
113+
"}\n"
114+
"PyInitConfig_Free(config);\n"
115+
"zwracać 0;\n"
116+
"\n"
117+
"error:\n"
118+
"{\n"
119+
"// Wyświetl komunikat o błędzie.\n"
120+
"//\n"
121+
"// Używany jest ten nietypowy styl nawiasów klamrowych, ponieważ nie można "
122+
"sprawić, by\n"
123+
"// cele goto wskazywały na deklaracje zmiennych.\n"
124+
"const char *err_msg;\n"
125+
"(void)PyInitConfig_GetError(config, &err_msg);\n"
126+
"printf(\"BŁĄD INICJALIZACJI PYTHONA: \\n\", err_msg);\n"
127+
"PyInitConfig_Free(config);\n"
128+
"zwracać -1;\n"
129+
"}\n"
130+
"}"
95131

96132
msgid "Create Config"
97-
msgstr ""
133+
msgstr "Utwórz konfigurację"
98134

99135
msgid "Opaque structure to configure the Python initialization."
100-
msgstr ""
136+
msgstr "Nieprzezroczysta struktura do konfiguracji inicjalizacja Pythona."
101137

102138
msgid ""
103139
"Create a new initialization configuration using :ref:`Isolated Configuration "
104140
"<init-isolated-conf>` default values."
105141
msgstr ""
142+
"Utwórz nową konfigurację inicjalizacja przy użyciu domyślny wartości :ref:"
143+
"`Izolowana konfiguracja` '<init-isolated-conf>`.<init-isolated-conf>"
106144

107145
msgid "It must be freed by :c:func:`PyInitConfig_Free`."
108-
msgstr ""
146+
msgstr "Musi zostać uwolniony przez:c:func:`PyInitConfig_Free`"
109147

110148
msgid "Return ``NULL`` on memory allocation failure."
111-
msgstr ""
149+
msgstr " Zwraca w przypadku niepowodzenia alokacja pamięci. ``NULL``"
112150

113151
msgid "Free memory of the initialization configuration *config*."
114-
msgstr ""
152+
msgstr "Zwolnij pamięć konfiguracji inicjalizacja *config*."
115153

116154
msgid "If *config* is ``NULL``, no operation is performed."
117155
msgstr ""
156+
"Jeżeli *config* ma ``NULL``wartość , żadna operacja nie zostanie wykonana."
118157

119158
msgid "Error Handling"
120159
msgstr "Przechwytywanie błędów"
121160

122161
msgid "Get the *config* error message."
123-
msgstr ""
162+
msgstr "Otrzymasz komunikat o błędzie *config*."
124163

125164
msgid "Set *\\*err_msg* and return ``1`` if an error is set."
126165
msgstr ""

c-api/typeobj.po

Lines changed: 30 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# python-doc bot, 2025
8+
# Blessing Oluronbi, 2026
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.15\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
15+
"POT-Creation-Date: 2026-05-09 14:43+0000\n"
1516
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
16-
"Last-Translator: python-doc bot, 2025\n"
17+
"Last-Translator: Blessing Oluronbi, 2026\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"
@@ -24,7 +25,7 @@ msgstr ""
2425
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
2526

2627
msgid "Type Object Structures"
27-
msgstr ""
28+
msgstr "Struktury obiektów typu"
2829

2930
msgid ""
3031
"Perhaps one of the most important structures of the Python object system is "
@@ -35,6 +36,13 @@ msgid ""
3536
"they are very important to the interpreter itself and to any extension "
3637
"module that implements new types."
3738
msgstr ""
39+
"Prawdopodobnie jedną z najważniejszych struktur systemu obiektów Python jest "
40+
"struktura definiująca nowy typ: struktura :c:type:`PyTypeObject`. Obiekty "
41+
"typów można obsługiwać za pomocą dowolnej z funkcja ``PyObject_*`` lub "
42+
"``PyType_*``, ale nie oferują one wiele interesującego dla większości "
43+
"aplikacja Python. Obiekty te są fundamentalne dla zachowania obiektów, "
44+
"dlatego są bardzo ważne dla samego interpreter i rozszerz moduł rozszerzeń "
45+
"wdraża nowe typy."
3846

3947
msgid ""
4048
"Type objects are fairly large compared to most of the standard types. The "
@@ -44,30 +52,38 @@ msgid ""
4452
"detail in this section. The fields will be described in the order in which "
4553
"they occur in the structure."
4654
msgstr ""
55+
"wartośćObiekty typu są dość duże w porównaniu z większością typów "
56+
"standardowych. Wynika to z faktu, że każdy obiekt typu przechowuje dużą "
57+
"liczbę wdraża wartość, głównie wskaźników do funkcja języka C, z których "
58+
"każdy wdraża niewielką część funkcjonalności typu. Pola obiektu typu zostaną "
59+
"szczegółowo omówione w tej sekcji. Zostaną one opisane w kolejności, w "
60+
"jakiej występują w strukturze."
4761

4862
msgid ""
4963
"In addition to the following quick reference, the :ref:`typedef-examples` "
5064
"section provides at-a-glance insight into the meaning and use of :c:type:"
5165
"`PyTypeObject`."
5266
msgstr ""
67+
"Oprócz poniższego szybkiego odniesienia sekcja :ref:`typedef-examples` "
68+
"umożliwia szybki wgląd w znaczenie i użycie :c:type:`PyTypeObject`."
5369

5470
msgid "Quick Reference"
55-
msgstr ""
71+
msgstr "Szybkie odniesienie"
5672

5773
msgid "\"tp slots\""
58-
msgstr ""
74+
msgstr "„gniazda tp”"
5975

6076
msgid "PyTypeObject Slot [#slots]_"
61-
msgstr ""
77+
msgstr "PyTypeObject Slot 1'[#slots]_'"
6278

6379
msgid ":ref:`Type <slot-typedefs-table>`"
64-
msgstr ":ref:`Type <slot-typedefs-table>`"
80+
msgstr ":ref:`Wpisz '<slot-typedefs-table>`'`"
6581

6682
msgid "special methods/attrs"
67-
msgstr ""
83+
msgstr "metody/atrybuty specjalne"
6884

6985
msgid "Info [#cols]_"
70-
msgstr ""
86+
msgstr "Informacje [#cols]_"
7187

7288
msgid "O"
7389
msgstr "O"
@@ -85,10 +101,10 @@ msgid "<R> :c:member:`~PyTypeObject.tp_name`"
85101
msgstr "<R> :c:member:`~PyTypeObject.tp_name`"
86102

87103
msgid "const char *"
88-
msgstr ""
104+
msgstr "znak stały *"
89105

90106
msgid "__name__"
91-
msgstr "__name__"
107+
msgstr "__nazwa__"
92108

93109
msgid "X"
94110
msgstr "X"
@@ -103,16 +119,16 @@ msgid ":c:member:`~PyTypeObject.tp_itemsize`"
103119
msgstr ":c:member:`~PyTypeObject.tp_itemsize`"
104120

105121
msgid ":c:member:`~PyTypeObject.tp_dealloc`"
106-
msgstr ":c:member:`~PyTypeObject.tp_dealloc`"
122+
msgstr ":c:member:`~PyTypeObject.tp_dealloc`'"
107123

108124
msgid ":c:type:`destructor`"
109-
msgstr ":c:type:`destructor`"
125+
msgstr " ':c:type:`destructor`'"
110126

111127
msgid ":c:member:`~PyTypeObject.tp_vectorcall_offset`"
112128
msgstr ":c:member:`~PyTypeObject.tp_vectorcall_offset`"
113129

114130
msgid "(:c:member:`~PyTypeObject.tp_getattr`)"
115-
msgstr "(:c:member:`~PyTypeObject.tp_getattr`)"
131+
msgstr " '(':c:member:`~PyTypeObject.tp_getattr`)"
116132

117133
msgid ":c:type:`getattrfunc`"
118134
msgstr ":c:type:`getattrfunc`"

faq/programming.po

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# python-doc bot, 2025
8+
# Blessing Oluronbi, 2026
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.15\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
15+
"POT-Creation-Date: 2026-05-09 14:43+0000\n"
1516
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
16-
"Last-Translator: python-doc bot, 2025\n"
17+
"Last-Translator: Blessing Oluronbi, 2026\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"
@@ -30,11 +31,13 @@ msgid "Contents"
3031
msgstr "Zawartość"
3132

3233
msgid "General questions"
33-
msgstr ""
34+
msgstr "Pytania ogólne"
3435

3536
msgid ""
3637
"Is there a source code-level debugger with breakpoints and single-stepping?"
3738
msgstr ""
39+
"Czy istnieje debugger na poziomie Kod źródłowy z punktami przerwania i "
40+
"wykonywaniem krok po kroku?"
3841

3942
msgid "Yes."
4043
msgstr "Tak"
@@ -43,6 +46,8 @@ msgid ""
4346
"Several debuggers for Python are described below, and the built-in function :"
4447
"func:`breakpoint` allows you to drop into any of them."
4548
msgstr ""
49+
"Poniżej opisano kilka narzędzi do debugowania w Pythonie, a wbudowana "
50+
"funkcja :func:`breakpoint` pozwala przejść do dowolnego z nich."
4651

4752
msgid ""
4853
"The pdb module is a simple but adequate console-mode debugger for Python. It "

0 commit comments

Comments
 (0)