Skip to content

Commit a0e040d

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent f96e484 commit a0e040d

3 files changed

Lines changed: 48 additions & 6 deletions

File tree

library/stdtypes.po

Lines changed: 4 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-05-13 17:14+0000\n"
14+
"POT-Creation-Date: 2026-05-21 17:29+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+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"
@@ -3257,6 +3257,9 @@ msgid ""
32573257
"all combinations of its values are stripped."
32583258
msgstr ""
32593259

3260+
msgid "Whitespace characters are defined by :meth:`str.isspace`."
3261+
msgstr ""
3262+
32603263
msgid ""
32613264
">>> ' spacious '.strip()\n"
32623265
"'spacious'\n"

library/string.po

Lines changed: 11 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-05-08 19:31+0000\n"
14+
"POT-Creation-Date: 2026-05-21 17:29+0000\n"
1515
"PO-Revision-Date: 2026-05-08 17:18+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"
@@ -521,7 +521,9 @@ msgid ""
521521
msgstr ""
522522

523523
msgid ""
524-
"For a locale aware separator, use the ``'n'`` presentation type instead."
524+
"For a locale-aware separator, use the ``'n'`` :ref:`float presentation type "
525+
"<n-format-float>` or :ref:`integer presentation type <n-format-integer>` "
526+
"instead."
525527
msgstr ""
526528

527529
msgid "Added the ``','`` option (see also :pep:`378`)."
@@ -605,7 +607,10 @@ msgstr "``'n'``"
605607

606608
msgid ""
607609
"Number. This is the same as ``'d'``, except that it uses the current locale "
608-
"setting to insert the appropriate digit group separators."
610+
"setting to insert the appropriate digit group separators. Note that the "
611+
"default locale is not the system locale. Depending on your use case, you may "
612+
"wish to set :const:`~locale.LC_NUMERIC` with :func:`locale.setlocale` before "
613+
"using ``'n'``."
609614
msgstr ""
610615

611616
msgid "The same as ``'d'``."
@@ -718,7 +723,9 @@ msgstr ""
718723
msgid ""
719724
"Number. This is the same as ``'g'``, except that it uses the current locale "
720725
"setting to insert the appropriate digit group separators for the integral "
721-
"part of a number."
726+
"part of a number. Note that the default locale is not the system locale. "
727+
"Depending on your use case, you may wish to set :const:`~locale.LC_NUMERIC` "
728+
"with :func:`locale.setlocale` before using ``'n'``."
722729
msgstr ""
723730

724731
msgid "``'%'``"

whatsnew/changelog.po

Lines changed: 33 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-05-19 17:38+0000\n"
14+
"POT-Creation-Date: 2026-05-21 17:29+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"
@@ -82,6 +82,9 @@ msgstr ""
8282
msgid "Library"
8383
msgstr "Biblioteka"
8484

85+
msgid ":gh:`149816`: Fix race condition in :attr:`ssl.SSLContext.sni_callback`"
86+
msgstr ""
87+
8588
msgid ""
8689
":gh:`146452`: Fix race condition when pickling dictionaries in free threaded "
8790
"builds. Also reduce critical section cover."
@@ -132,6 +135,16 @@ msgid ""
132135
"concurrently mutated by another thread in the free-threaded build."
133136
msgstr ""
134137

138+
msgid ""
139+
":gh:`142831`: Fix a crash in the :mod:`json` module where a use-after-free "
140+
"could occur if the object being encoded is modified during serialization."
141+
msgstr ""
142+
143+
msgid ""
144+
":gh:`134261`: zip: On reproducible builds, ZipFile uses UTC instead of the "
145+
"local time when writing file datetimes to avoid underflows."
146+
msgstr ""
147+
135148
msgid ""
136149
":gh:`128110`: Fix bug in the parsing of :mod:`email` address headers that "
137150
"could result in extraneous spaces in the decoded text when using a modern "
@@ -143,14 +156,33 @@ msgstr ""
143156
msgid "Core and Builtins"
144157
msgstr "Core i builtiny"
145158

159+
msgid ":gh:`150146`: Fix a crash on a complex type variable substitution."
160+
msgstr ""
161+
162+
msgid ""
163+
"``from typing import TypeVar; memoryview[TypeVar(\"\")][*typing."
164+
"Mapping[..., ...]]`` used to fail due to missing ``NULL`` check on "
165+
"``_unpack_args`` C function call."
166+
msgstr ""
167+
146168
msgid ":gh:`149590`: Fix crash when faulthandler is imported more than once."
147169
msgstr ""
148170

171+
msgid ""
172+
":gh:`149816`: Fix a race condition in ``_PyBytes_FromList`` in free-"
173+
"threading mode."
174+
msgstr ""
175+
149176
msgid ""
150177
":gh:`149816`: Fix a race condition in :class:`memoryview` with free-"
151178
"threading."
152179
msgstr ""
153180

181+
msgid ""
182+
":gh:`139808`: Add branch protections for AArch64 (BTI/PAC) in assembly code "
183+
"used by :option:`-X perf_jit <-X>` (Linux perf profiler integration)."
184+
msgstr ""
185+
154186
msgid "C API"
155187
msgstr "C API"
156188

0 commit comments

Comments
 (0)