Skip to content

Commit 76c58c7

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b916b54 commit 76c58c7

24 files changed

+361
-142
lines changed

README.en.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/actions/workflows/update-
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 100.00%](https://img.shields.io/badge/core-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![Total Translation of Documentation](https://img.shields.io/badge/total_words-5.44%25-0.svg)](https://translations.python.org/#pl)
19-
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.36%25-0.svg)](https://translations.python.org/#pl)
19+
[![Total Translation of Documentation](https://img.shields.io/badge/total_strings-12.35%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: 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/actions/workflows/update-
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 100.00%](https://img.shields.io/badge/podstawowe_artykuły-100.00%25-0.svg)](https://translations.python.org/#pl)
1818
[![postęp tłumaczenia całości dokumentacji](https://img.shields.io/badge/całość_słów-5.44%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-12.36%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-12.35%25-0.svg)](https://translations.python.org/#pl)
2020
<!-- [[[end]]] -->
2121

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

c-api/type.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.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-21 14:24+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

glossary.po

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-05 14:39+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1439,6 +1439,20 @@ msgid ""
14391439
"`reentrant`."
14401440
msgstr ""
14411441

1442+
msgid "lock-free"
1443+
msgstr ""
1444+
1445+
msgid ""
1446+
"An operation that does not acquire any :term:`lock` and uses atomic CPU "
1447+
"instructions to ensure correctness. Lock-free operations can execute "
1448+
"concurrently without blocking each other and cannot be blocked by operations "
1449+
"that hold locks. In :term:`free-threaded <free threading>` Python, built-in "
1450+
"types like :class:`dict` and :class:`list` provide lock-free read "
1451+
"operations, which means other threads may observe intermediate states during "
1452+
"multi-step modifications even when those modifications hold the :term:`per-"
1453+
"object lock`."
1454+
msgstr ""
1455+
14421456
msgid "loader"
14431457
msgstr "ładowarka"
14441458

@@ -1835,6 +1849,19 @@ msgid ""
18351849
"`362`."
18361850
msgstr ""
18371851

1852+
msgid "per-object lock"
1853+
msgstr ""
1854+
1855+
msgid ""
1856+
"A :term:`lock` associated with an individual object instance rather than a "
1857+
"global lock shared across all objects. In :term:`free-threaded <free "
1858+
"threading>` Python, built-in types like :class:`dict` and :class:`list` use "
1859+
"per-object locks to allow concurrent operations on different objects while "
1860+
"serializing operations on the same object. Operations that hold the per-"
1861+
"object lock prevent other locking operations on the same object from "
1862+
"proceeding, but do not block :term:`lock-free` operations."
1863+
msgstr ""
1864+
18381865
msgid "path entry"
18391866
msgstr ""
18401867

library/asyncio-eventloop.po

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-25 14:14+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -355,8 +355,8 @@ msgstr ""
355355

356356
msgid ""
357357
"The optional positional *args* will be passed to the callback when it is "
358-
"called. If you want the callback to be called with keyword arguments use :"
359-
"func:`functools.partial`."
358+
"called. Use :func:`functools.partial` :ref:`to pass keyword arguments "
359+
"<asyncio-pass-keywords>` to *callback*."
360360
msgstr ""
361361

362362
msgid ""
@@ -1087,7 +1087,8 @@ msgstr ""
10871087

10881088
msgid ""
10891089
"Start monitoring the *fd* file descriptor for write availability and invoke "
1090-
"*callback* with the specified arguments once *fd* is available for writing."
1090+
"*callback* with the specified arguments *args* once *fd* is available for "
1091+
"writing."
10911092
msgstr ""
10921093

10931094
msgid ""
@@ -1315,7 +1316,9 @@ msgstr ""
13151316
msgid "Unix signals"
13161317
msgstr ""
13171318

1318-
msgid "Set *callback* as the handler for the *signum* signal."
1319+
msgid ""
1320+
"Set *callback* as the handler for the *signum* signal, passing *args* as "
1321+
"positional arguments."
13191322
msgstr ""
13201323

13211324
msgid ""
@@ -1348,7 +1351,9 @@ msgstr ""
13481351
msgid "Executing code in thread or process pools"
13491352
msgstr ""
13501353

1351-
msgid "Arrange for *func* to be called in the specified executor."
1354+
msgid ""
1355+
"Arrange for *func* to be called in the specified executor passing *args* as "
1356+
"positional arguments."
13521357
msgstr ""
13531358

13541359
msgid ""

library/codecs.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -2124,7 +2124,7 @@ msgstr ""
21242124
msgid "Restoration of the ``rot13`` alias."
21252125
msgstr ""
21262126

2127-
msgid ":mod:`encodings` --- Encodings package"
2127+
msgid ":mod:`!encodings` --- Encodings package"
21282128
msgstr ""
21292129

21302130
msgid "This module implements the following functions:"
@@ -2186,7 +2186,7 @@ msgid "Raised when a codec is invalid or incompatible."
21862186
msgstr ""
21872187

21882188
msgid ""
2189-
":mod:`encodings.idna` --- Internationalized Domain Names in Applications"
2189+
":mod:`!encodings.idna` --- Internationalized Domain Names in Applications"
21902190
msgstr ""
21912191

21922192
msgid ""
@@ -2237,7 +2237,7 @@ msgid ""
22372237
msgstr ""
22382238

22392239
msgid ""
2240-
"The module :mod:`encodings.idna` also implements the nameprep procedure, "
2240+
"The module :mod:`!encodings.idna` also implements the nameprep procedure, "
22412241
"which performs certain normalizations on host names, to achieve case-"
22422242
"insensitivity of international domain names, and to unify similar "
22432243
"characters. The nameprep functions can be used directly if desired."
@@ -2256,7 +2256,7 @@ msgstr ""
22562256
msgid "Convert a label to Unicode, as specified in :rfc:`3490`."
22572257
msgstr ""
22582258

2259-
msgid ":mod:`encodings.mbcs` --- Windows ANSI codepage"
2259+
msgid ":mod:`!encodings.mbcs` --- Windows ANSI codepage"
22602260
msgstr ""
22612261

22622262
msgid "This module implements the ANSI codepage (CP_ACP)."
@@ -2270,7 +2270,7 @@ msgstr ""
22702270
msgid "Support any error handler."
22712271
msgstr ""
22722272

2273-
msgid ":mod:`encodings.utf_8_sig` --- UTF-8 codec with BOM signature"
2273+
msgid ":mod:`!encodings.utf_8_sig` --- UTF-8 codec with BOM signature"
22742274
msgstr ""
22752275

22762276
msgid ""

library/curses.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
15+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:01+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"
@@ -1948,19 +1948,19 @@ msgstr ""
19481948
msgid "Yellow"
19491949
msgstr ""
19501950

1951-
msgid ":mod:`curses.textpad` --- Text input widget for curses programs"
1951+
msgid ":mod:`!curses.textpad` --- Text input widget for curses programs"
19521952
msgstr ""
19531953

19541954
msgid ""
1955-
"The :mod:`curses.textpad` module provides a :class:`Textbox` class that "
1955+
"The :mod:`!curses.textpad` module provides a :class:`Textbox` class that "
19561956
"handles elementary text editing in a curses window, supporting a set of "
19571957
"keybindings resembling those of Emacs (thus, also of Netscape Navigator, "
19581958
"BBedit 6.x, FrameMaker, and many other programs). The module also provides "
19591959
"a rectangle-drawing function useful for framing text boxes or for other "
19601960
"purposes."
19611961
msgstr ""
19621962

1963-
msgid "The module :mod:`curses.textpad` defines the following function:"
1963+
msgid "The module :mod:`!curses.textpad` defines the following function:"
19641964
msgstr ""
19651965

19661966
msgid ""

library/dbm.po

Lines changed: 20 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-07 14:20+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -200,15 +200,15 @@ msgstr ""
200200
msgid "The individual submodules are described in the following sections."
201201
msgstr ""
202202

203-
msgid ":mod:`dbm.sqlite3` --- SQLite backend for dbm"
203+
msgid ":mod:`!dbm.sqlite3` --- SQLite backend for dbm"
204204
msgstr ""
205205

206206
msgid "**Source code:** :source:`Lib/dbm/sqlite3.py`"
207207
msgstr "**Kod źródłowy:** :source:`Lib/dbm/sqlite3.py`"
208208

209209
msgid ""
210210
"This module uses the standard library :mod:`sqlite3` module to provide an "
211-
"SQLite backend for the :mod:`!dbm` module. The files created by :mod:`dbm."
211+
"SQLite backend for the :mod:`!dbm` module. The files created by :mod:`!dbm."
212212
"sqlite3` can thus be opened by :mod:`sqlite3`, or any other SQLite browser, "
213213
"including the SQLite CLI."
214214
msgstr ""
@@ -245,20 +245,20 @@ msgstr ""
245245
msgid "Close the SQLite database."
246246
msgstr ""
247247

248-
msgid ":mod:`dbm.gnu` --- GNU database manager"
248+
msgid ":mod:`!dbm.gnu` --- GNU database manager"
249249
msgstr ""
250250

251251
msgid "**Source code:** :source:`Lib/dbm/gnu.py`"
252252
msgstr "**Kod źródłowy:** :source:`Lib/dbm/gnu.py`"
253253

254254
msgid ""
255-
"The :mod:`dbm.gnu` module provides an interface to the :abbr:`GDBM (GNU "
255+
"The :mod:`!dbm.gnu` module provides an interface to the :abbr:`GDBM (GNU "
256256
"dbm)` library, similar to the :mod:`dbm.ndbm` module, but with additional "
257257
"functionality like crash tolerance."
258258
msgstr ""
259259

260260
msgid ""
261-
"The file formats created by :mod:`dbm.gnu` and :mod:`dbm.ndbm` are "
261+
"The file formats created by :mod:`!dbm.gnu` and :mod:`dbm.ndbm` are "
262262
"incompatible and can not be used interchangeably."
263263
msgstr ""
264264

@@ -268,7 +268,7 @@ msgid ""
268268
msgstr ""
269269

270270
msgid ""
271-
"Raised on :mod:`dbm.gnu`-specific errors, such as I/O errors. :exc:"
271+
"Raised on :mod:`!dbm.gnu`-specific errors, such as I/O errors. :exc:"
272272
"`KeyError` is raised for general mapping errors like specifying an incorrect "
273273
"key."
274274
msgstr ""
@@ -374,18 +374,23 @@ msgid ""
374374
"unwritten data to be written to the disk."
375375
msgstr ""
376376

377-
msgid ":mod:`dbm.ndbm` --- New Database Manager"
377+
msgid ":mod:`!dbm.ndbm` --- New Database Manager"
378378
msgstr ""
379379

380380
msgid "**Source code:** :source:`Lib/dbm/ndbm.py`"
381381
msgstr "**Kod źródłowy:** :source:`Lib/dbm/ndbm.py`"
382382

383383
msgid ""
384-
"The :mod:`dbm.ndbm` module provides an interface to the :abbr:`NDBM (New "
384+
"The :mod:`!dbm.ndbm` module provides an interface to the :abbr:`NDBM (New "
385385
"Database Manager)` library. This module can be used with the \"classic\" "
386386
"NDBM interface or the :abbr:`GDBM (GNU dbm)` compatibility interface."
387387
msgstr ""
388388

389+
msgid ""
390+
"The file formats created by :mod:`dbm.gnu` and :mod:`!dbm.ndbm` are "
391+
"incompatible and can not be used interchangeably."
392+
msgstr ""
393+
389394
msgid ""
390395
"The NDBM library shipped as part of macOS has an undocumented limitation on "
391396
"the size of values, which can result in corrupted database files when "
@@ -394,7 +399,7 @@ msgid ""
394399
msgstr ""
395400

396401
msgid ""
397-
"Raised on :mod:`dbm.ndbm`-specific errors, such as I/O errors. :exc:"
402+
"Raised on :mod:`!dbm.ndbm`-specific errors, such as I/O errors. :exc:"
398403
"`KeyError` is raised for general mapping errors like specifying an incorrect "
399404
"key."
400405
msgstr ""
@@ -424,21 +429,21 @@ msgstr ""
424429
msgid "Close the NDBM database."
425430
msgstr ""
426431

427-
msgid ":mod:`dbm.dumb` --- Portable DBM implementation"
432+
msgid ":mod:`!dbm.dumb` --- Portable DBM implementation"
428433
msgstr ""
429434

430435
msgid "**Source code:** :source:`Lib/dbm/dumb.py`"
431436
msgstr "**Kod źródłowy:** :source:`Lib/dbm/dumb.py`"
432437

433438
msgid ""
434-
"The :mod:`dbm.dumb` module is intended as a last resort fallback for the :"
435-
"mod:`!dbm` module when a more robust module is not available. The :mod:`dbm."
439+
"The :mod:`!dbm.dumb` module is intended as a last resort fallback for the :"
440+
"mod:`!dbm` module when a more robust module is not available. The :mod:`!dbm."
436441
"dumb` module is not written for speed and is not nearly as heavily used as "
437442
"the other database modules."
438443
msgstr ""
439444

440445
msgid ""
441-
"The :mod:`dbm.dumb` module provides a persistent :class:`dict`-like "
446+
"The :mod:`!dbm.dumb` module provides a persistent :class:`dict`-like "
442447
"interface which is written entirely in Python. Unlike other :mod:`!dbm` "
443448
"backends, such as :mod:`dbm.gnu`, no external library is required."
444449
msgstr ""
@@ -447,7 +452,7 @@ msgid "The :mod:`!dbm.dumb` module defines the following:"
447452
msgstr ""
448453

449454
msgid ""
450-
"Raised on :mod:`dbm.dumb`-specific errors, such as I/O errors. :exc:"
455+
"Raised on :mod:`!dbm.dumb`-specific errors, such as I/O errors. :exc:"
451456
"`KeyError` is raised for general mapping errors like specifying an incorrect "
452457
"key."
453458
msgstr ""

library/email.encoders.po

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-02-03 14:40+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -55,9 +55,9 @@ msgid ""
5555
msgstr ""
5656

5757
msgid ""
58-
"The :mod:`email` package provides some convenient encoders in its :mod:"
59-
"`~email.encoders` module. These encoders are actually used by the :class:"
60-
"`~email.mime.audio.MIMEAudio` and :class:`~email.mime.image.MIMEImage` class "
58+
"The :mod:`email` package provides some convenient encoders in its :mod:`!"
59+
"encoders` module. These encoders are actually used by the :class:`~email."
60+
"mime.audio.MIMEAudio` and :class:`~email.mime.image.MIMEImage` class "
6161
"constructors to provide default encodings. All encoder functions take "
6262
"exactly one argument, the message object to encode. They usually extract "
6363
"the payload, encode it, and reset the payload to this newly encoded value. "

library/email.policy.po

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.14\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-01-27 14:24+0000\n"
14+
"POT-Creation-Date: 2026-02-11 14:49+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -646,10 +646,10 @@ msgstr ""
646646

647647
msgid ""
648648
"This concrete :class:`Policy` is the backward compatibility policy. It "
649-
"replicates the behavior of the email package in Python 3.2. The :mod:"
650-
"`~email.policy` module also defines an instance of this class, :const:"
651-
"`compat32`, that is used as the default policy. Thus the default behavior "
652-
"of the email package is to maintain compatibility with Python 3.2."
649+
"replicates the behavior of the email package in Python 3.2. The :mod:`!"
650+
"policy` module also defines an instance of this class, :const:`compat32`, "
651+
"that is used as the default policy. Thus the default behavior of the email "
652+
"package is to maintain compatibility with Python 3.2."
653653
msgstr ""
654654

655655
msgid ""

0 commit comments

Comments
 (0)