Skip to content

Commit 29744b8

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent 3b2a24d commit 29744b8

3 files changed

Lines changed: 33 additions & 13 deletions

File tree

c-api/long.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-06-02 01:05+0000\n"
14+
"POT-Creation-Date: 2026-06-07 16:19+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:16+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -85,13 +85,13 @@ msgid ""
8585
msgstr ""
8686

8787
msgid ""
88-
"Return a new :c:type:`PyLongObject` object from a signed C :c:expr:`int32_t` "
89-
"or :c:expr:`int64_t`, or ``NULL`` with an exception set on failure."
88+
"Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long "
89+
"long`, or ``NULL`` on failure."
9090
msgstr ""
9191

9292
msgid ""
93-
"Return a new :c:type:`PyLongObject` object from a C :c:expr:`unsigned long "
94-
"long`, or ``NULL`` on failure."
93+
"Return a new :c:type:`PyLongObject` object from a signed C :c:expr:`int32_t` "
94+
"or :c:expr:`int64_t`, or ``NULL`` with an exception set on failure."
9595
msgstr ""
9696

9797
msgid ""

library/collections.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-06-03 19:20+0000\n"
14+
"POT-Creation-Date: 2026-06-07 16:19+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:17+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -1379,7 +1379,7 @@ msgstr ""
13791379

13801380
msgid ""
13811381
"from collections import OrderedDict\n"
1382-
"from time import time\n"
1382+
"from time import monotonic\n"
13831383
"\n"
13841384
"class TimeBoundedLRU:\n"
13851385
" \"LRU Cache that invalidates and refreshes old entries.\"\n"
@@ -1394,10 +1394,10 @@ msgid ""
13941394
" if args in self.cache:\n"
13951395
" self.cache.move_to_end(args)\n"
13961396
" timestamp, result = self.cache[args]\n"
1397-
" if time() - timestamp <= self.maxage:\n"
1397+
" if monotonic() - timestamp <= self.maxage:\n"
13981398
" return result\n"
13991399
" result = self.func(*args)\n"
1400-
" self.cache[args] = time(), result\n"
1400+
" self.cache[args] = monotonic(), result\n"
14011401
" if len(self.cache) > self.maxsize:\n"
14021402
" self.cache.popitem(last=False)\n"
14031403
" return result"

whatsnew/changelog.po

Lines changed: 24 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-06-05 17:18+0000\n"
14+
"POT-Creation-Date: 2026-06-07 16:19+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:19+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2026\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
@@ -61,6 +61,12 @@ msgstr ""
6161
msgid "Security"
6262
msgstr "Bezpieczeństwo"
6363

64+
msgid ""
65+
":gh:`149835`: :func:`shutil.move` now resolves symlinks via :func:`os.path."
66+
"realpath` when checking whether the destination is inside the source "
67+
"directory, preventing a symlink-based bypass of that guard."
68+
msgstr ""
69+
6470
msgid ""
6571
":gh:`149698`: Update bundled `libexpat <https://libexpat.github.io/>`_ to "
6672
"version 2.8.1 for the fix for :cve:`2026-45186`."
@@ -205,6 +211,12 @@ msgid ""
205211
"call ``str(obj)`` on :class:`str` subclasses. Patch by Thomas Kowalski."
206212
msgstr ""
207213

214+
msgid ""
215+
":gh:`148954`: Fix XML injection vulnerability in :func:`xmlrpc.client.dumps` "
216+
"where the ``methodname`` was not being escaped before interpolation into the "
217+
"XML body."
218+
msgstr ""
219+
208220
msgid ""
209221
":gh:`148441`: :mod:`xml.parsers.expat`: prevent a crash in :meth:`~xml."
210222
"parsers.expat.xmlparser.CharacterDataHandler` when the character data size "
@@ -245,6 +257,12 @@ msgid ""
245257
"`str` instead of :class:`bytes`. Patch by Florian Best."
246258
msgstr ""
247259

260+
msgid "IDLE"
261+
msgstr "IDLE"
262+
263+
msgid ":issue:`6699`: Warn the user if a file will be overwritten when saving."
264+
msgstr ""
265+
248266
msgid "Documentation"
249267
msgstr "Dokumentacja"
250268

@@ -274,6 +292,11 @@ msgid ""
274292
"handler."
275293
msgstr ""
276294

295+
msgid ""
296+
":gh:`150207`: Fix a crash when a memory allocation fails during tokenizer "
297+
"initialization. A proper :exc:`MemoryError` is now raised instead."
298+
msgstr ""
299+
277300
msgid ""
278301
":gh:`150107`: :mod:`asyncio`: ``sendfile()`` and ``sock_sendfile()`` event "
279302
"loop methods now call ``file.seek(offset)`` if *file* has a ``seek()`` "
@@ -1944,9 +1967,6 @@ msgid ""
19441967
"occurred."
19451968
msgstr ""
19461969

1947-
msgid "IDLE"
1948-
msgstr "IDLE"
1949-
19501970
msgid ""
19511971
":gh:`143774`: Better explain the operation of Format / Format Paragraph."
19521972
msgstr ""

0 commit comments

Comments
 (0)