Skip to content

Navigation Menu

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit a30f0b5

Browse filesBrowse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent ab21992 commit a30f0b5
Copy full SHA for a30f0b5

File tree

131 files changed

+6636
-912
lines changed
Filter options

Some content is hidden

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

131 files changed

+6636
-912
lines changed

‎c-api/arg.po

Copy file name to clipboardExpand all lines: c-api/arg.po
+27-27Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-01-24 16:04+0000\n"
14+
"POT-Creation-Date: 2025-02-21 16:13+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -220,7 +220,7 @@ msgid ""
220220
msgstr ""
221221

222222
msgid "``y*`` (:term:`bytes-like object`) [Py_buffer]"
223-
msgstr ""
223+
msgstr "``y*`` (:term:`bytes-like object`) [Py_buffer]"
224224

225225
msgid ""
226226
"This variant on ``s*`` doesn't accept Unicode objects, only bytes-like "
@@ -240,7 +240,7 @@ msgstr ""
240240
"obiekty."
241241

242242
msgid "``S`` (:class:`bytes`) [PyBytesObject \\*]"
243-
msgstr ""
243+
msgstr "``S`` (:class:`bytes`) [PyBytesObject \\*]"
244244

245245
msgid ""
246246
"Requires that the Python object is a :class:`bytes` object, without "
@@ -249,7 +249,7 @@ msgid ""
249249
msgstr ""
250250

251251
msgid "``Y`` (:class:`bytearray`) [PyByteArrayObject \\*]"
252-
msgstr ""
252+
msgstr "``Y`` (:class:`bytearray`) [PyByteArrayObject \\*]"
253253

254254
msgid ""
255255
"Requires that the Python object is a :class:`bytearray` object, without "
@@ -304,7 +304,7 @@ msgid ""
304304
msgstr ""
305305

306306
msgid "``U`` (:class:`str`) [PyObject \\*]"
307-
msgstr ""
307+
msgstr "``U`` (:class:`str`) [PyObject \\*]"
308308

309309
msgid ""
310310
"Requires that the Python object is a Unicode object, without attempting any "
@@ -433,23 +433,23 @@ msgid "Numbers"
433433
msgstr "Liczby"
434434

435435
msgid "``b`` (:class:`int`) [unsigned char]"
436-
msgstr ""
436+
msgstr "``b`` (:class:`int`) [unsigned char]"
437437

438438
msgid ""
439439
"Convert a nonnegative Python integer to an unsigned tiny int, stored in a C :"
440440
"c:expr:`unsigned char`."
441441
msgstr ""
442442

443443
msgid "``B`` (:class:`int`) [unsigned char]"
444-
msgstr ""
444+
msgstr "``B`` (:class:`int`) [unsigned char]"
445445

446446
msgid ""
447447
"Convert a Python integer to a tiny int without overflow checking, stored in "
448448
"a C :c:expr:`unsigned char`."
449449
msgstr ""
450450

451451
msgid "``h`` (:class:`int`) [short int]"
452-
msgstr ""
452+
msgstr "``h`` (:class:`int`) [short int]"
453453

454454
msgid "Convert a Python integer to a C :c:expr:`short int`."
455455
msgstr ""
@@ -463,35 +463,35 @@ msgid ""
463463
msgstr ""
464464

465465
msgid "``i`` (:class:`int`) [int]"
466-
msgstr ""
466+
msgstr "``i`` (:class:`int`) [int]"
467467

468468
msgid "Convert a Python integer to a plain C :c:expr:`int`."
469469
msgstr ""
470470

471471
msgid "``I`` (:class:`int`) [unsigned int]"
472-
msgstr ""
472+
msgstr "``I`` (:class:`int`) [unsigned int]"
473473

474474
msgid ""
475475
"Convert a Python integer to a C :c:expr:`unsigned int`, without overflow "
476476
"checking."
477477
msgstr ""
478478

479479
msgid "``l`` (:class:`int`) [long int]"
480-
msgstr ""
480+
msgstr "``l`` (:class:`int`) [long int]"
481481

482482
msgid "Convert a Python integer to a C :c:expr:`long int`."
483483
msgstr ""
484484

485485
msgid "``k`` (:class:`int`) [unsigned long]"
486-
msgstr ""
486+
msgstr "``k`` (:class:`int`) [unsigned long]"
487487

488488
msgid ""
489489
"Convert a Python integer to a C :c:expr:`unsigned long` without overflow "
490490
"checking."
491491
msgstr ""
492492

493493
msgid "``L`` (:class:`int`) [long long]"
494-
msgstr ""
494+
msgstr "``L`` (:class:`int`) [long long]"
495495

496496
msgid "Convert a Python integer to a C :c:expr:`long long`."
497497
msgstr ""
@@ -505,7 +505,7 @@ msgid ""
505505
msgstr ""
506506

507507
msgid "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]"
508-
msgstr ""
508+
msgstr "``n`` (:class:`int`) [:c:type:`Py_ssize_t`]"
509509

510510
msgid "Convert a Python integer to a C :c:type:`Py_ssize_t`."
511511
msgstr ""
@@ -530,19 +530,19 @@ msgid ""
530530
msgstr ""
531531

532532
msgid "``f`` (:class:`float`) [float]"
533-
msgstr ""
533+
msgstr "``f`` (:class:`float`) [float]"
534534

535535
msgid "Convert a Python floating point number to a C :c:expr:`float`."
536536
msgstr ""
537537

538538
msgid "``d`` (:class:`float`) [double]"
539-
msgstr ""
539+
msgstr "``d`` (:class:`float`) [double]"
540540

541541
msgid "Convert a Python floating point number to a C :c:expr:`double`."
542542
msgstr ""
543543

544544
msgid "``D`` (:class:`complex`) [Py_complex]"
545-
msgstr ""
545+
msgstr "``D`` (:class:`complex`) [Py_complex]"
546546

547547
msgid "Convert a Python complex number to a C :c:type:`Py_complex` structure."
548548
msgstr ""
@@ -551,7 +551,7 @@ msgid "Other objects"
551551
msgstr "Inne obiekty"
552552

553553
msgid "``O`` (object) [PyObject \\*]"
554-
msgstr ""
554+
msgstr "``O`` (object) [PyObject \\*]"
555555

556556
msgid ""
557557
"Store a Python object (without any conversion) in a C object pointer. The C "
@@ -572,7 +572,7 @@ msgid ""
572572
msgstr ""
573573

574574
msgid "``O&`` (object) [*converter*, *anything*]"
575-
msgstr ""
575+
msgstr "``O&`` (object) [*converter*, *anything*]"
576576

577577
msgid ""
578578
"Convert a Python object to a C variable through a *converter* function. "
@@ -602,7 +602,7 @@ msgid "``Py_CLEANUP_SUPPORTED`` was added."
602602
msgstr "``Py_CLEANUP_SUPPORTED`` został dodany."
603603

604604
msgid "``p`` (:class:`bool`) [int]"
605-
msgstr ""
605+
msgstr "``p`` (:class:`bool`) [int]"
606606

607607
msgid ""
608608
"Tests the value passed in for truth (a boolean **p**\\ redicate) and "
@@ -908,7 +908,7 @@ msgid "Convert a plain C :c:expr:`int` to a Python integer object."
908908
msgstr ""
909909

910910
msgid "``b`` (:class:`int`) [char]"
911-
msgstr ""
911+
msgstr "``b`` (:class:`int`) [char]"
912912

913913
msgid "Convert a plain C :c:expr:`char` to a Python integer object."
914914
msgstr ""
@@ -960,7 +960,7 @@ msgid "Convert a C :c:expr:`float` to a Python floating point number."
960960
msgstr ""
961961

962962
msgid "``D`` (:class:`complex`) [Py_complex \\*]"
963-
msgstr ""
963+
msgstr "``D`` (:class:`complex`) [Py_complex \\*]"
964964

965965
msgid "Convert a C :c:type:`Py_complex` structure to a Python complex number."
966966
msgstr ""
@@ -975,13 +975,13 @@ msgid ""
975975
msgstr ""
976976

977977
msgid "``S`` (object) [PyObject \\*]"
978-
msgstr ""
978+
msgstr "``S`` (object) [PyObject \\*]"
979979

980980
msgid "Same as ``O``."
981981
msgstr ""
982982

983983
msgid "``N`` (object) [PyObject \\*]"
984-
msgstr ""
984+
msgstr "``N`` (object) [PyObject \\*]"
985985

986986
msgid ""
987987
"Same as ``O``, except it doesn't create a new :term:`strong reference`. "
@@ -1010,7 +1010,7 @@ msgid ""
10101010
msgstr ""
10111011

10121012
msgid "``{items}`` (:class:`dict`) [*matching-items*]"
1013-
msgstr ""
1013+
msgstr "``{items}`` (:class:`dict`) [*matching-items*]"
10141014

10151015
msgid ""
10161016
"Convert a sequence of C values to a Python dictionary. Each pair of "

‎c-api/buffer.po

Copy file name to clipboardExpand all lines: c-api/buffer.po
+1-1Lines 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.10\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-24 16:04+0000\n"
15+
"POT-Creation-Date: 2025-02-14 16:07+0000\n"
1616
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/call.po

Copy file name to clipboardExpand all lines: c-api/call.po
+7-7Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
#
66
# Translators:
77
# Stan Ulbrych, 2024
8-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.10\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-24 16:04+0000\n"
15+
"POT-Creation-Date: 2025-02-21 16:13+0000\n"
1616
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
17-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"
@@ -243,13 +243,13 @@ msgid ":c:func:`PyObject_Call`"
243243
msgstr ":c:func:`PyObject_Call`"
244244

245245
msgid "``PyObject *``"
246-
msgstr ""
246+
msgstr "``PyObject *``"
247247

248248
msgid "tuple"
249249
msgstr "tuple"
250250

251251
msgid "dict/``NULL``"
252-
msgstr ""
252+
msgstr "dict/``NULL``"
253253

254254
msgid ":c:func:`PyObject_CallNoArgs`"
255255
msgstr ":c:func:`PyObject_CallNoArgs`"
@@ -267,7 +267,7 @@ msgid ":c:func:`PyObject_CallObject`"
267267
msgstr ":c:func:`PyObject_CallObject`"
268268

269269
msgid "tuple/``NULL``"
270-
msgstr ""
270+
msgstr "tuple/``NULL``"
271271

272272
msgid ":c:func:`PyObject_CallFunction`"
273273
msgstr ":c:func:`PyObject_CallFunction`"
@@ -279,7 +279,7 @@ msgid ":c:func:`PyObject_CallMethod`"
279279
msgstr ":c:func:`PyObject_CallMethod`"
280280

281281
msgid "obj + ``char*``"
282-
msgstr ""
282+
msgstr "obj + ``char*``"
283283

284284
msgid ":c:func:`PyObject_CallFunctionObjArgs`"
285285
msgstr ":c:func:`PyObject_CallFunctionObjArgs`"

‎c-api/exceptions.po

Copy file name to clipboardExpand all lines: c-api/exceptions.po
+1-1Lines 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.10\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-24 16:04+0000\n"
15+
"POT-Creation-Date: 2025-02-14 16:07+0000\n"
1616
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/memory.po

Copy file name to clipboardExpand all lines: c-api/memory.po
+6-6Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
#
66
# Translators:
77
# Stan Ulbrych, 2024
8-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.10\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-01-24 16:04+0000\n"
15+
"POT-Creation-Date: 2025-02-21 16:13+0000\n"
1616
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
17-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1818
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=UTF-8\n"
@@ -344,10 +344,10 @@ msgid "``PyMem_MALLOC(size)``"
344344
msgstr "``PyMem_MALLOC(size)``"
345345

346346
msgid "``PyMem_NEW(type, size)``"
347-
msgstr ""
347+
msgstr "``PyMem_NEW(type, size)``"
348348

349349
msgid "``PyMem_REALLOC(ptr, size)``"
350-
msgstr ""
350+
msgstr "``PyMem_REALLOC(ptr, size)``"
351351

352352
msgid "``PyMem_RESIZE(ptr, type, size)``"
353353
msgstr ""
@@ -503,7 +503,7 @@ msgid "Meaning"
503503
msgstr "Znaczenie"
504504

505505
msgid "``void *ctx``"
506-
msgstr ""
506+
msgstr "``void *ctx``"
507507

508508
msgid "user context passed as first argument"
509509
msgstr ""

‎c-api/structures.po

Copy file name to clipboardExpand all lines: c-api/structures.po
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-02-07 16:05+0000\n"
14+
"POT-Creation-Date: 2025-02-21 16:13+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -554,7 +554,7 @@ msgid "C function to get the attribute"
554554
msgstr ""
555555

556556
msgid "set"
557-
msgstr ""
557+
msgstr "zestaw"
558558

559559
msgid "setter"
560560
msgstr ""

‎c-api/tuple.po

Copy file name to clipboardExpand all lines: c-api/tuple.po
+4-4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
88
#
99
#, fuzzy
1010
msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-02-07 16:05+0000\n"
14+
"POT-Creation-Date: 2025-02-21 16:13+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
1818
"MIME-Version: 1.0\n"
1919
"Content-Type: text/plain; charset=UTF-8\n"
@@ -177,7 +177,7 @@ msgid "``n_in_sequence``"
177177
msgstr ""
178178

179179
msgid "``int``"
180-
msgstr ""
180+
msgstr "``int``"
181181

182182
msgid "number of fields visible to the Python side (if used as tuple)"
183183
msgstr ""

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.