Skip to content

Commit 5d29596

Browse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent da0c590 commit 5d29596

5 files changed

Lines changed: 50 additions & 14 deletions

File tree

c-api/unicode.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
11+
"POT-Creation-Date: 2026-05-11 16:26+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1313
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
1414
"MIME-Version: 1.0\n"
@@ -831,7 +831,7 @@ msgid ""
831831
msgstr ""
832832

833833
msgid ""
834-
"Return the number of written character, or return ``-1`` and raise an "
834+
"Return the number of written characters, or return ``-1`` and raise an "
835835
"exception on error."
836836
msgstr ""
837837

@@ -1200,7 +1200,7 @@ msgid ""
12001200
"collected."
12011201
msgstr ""
12021202

1203-
msgid "The return type is now ``const char *`` rather of ``char *``."
1203+
msgid "The return type is now ``const char *`` rather than ``char *``."
12041204
msgstr ""
12051205

12061206
msgid "This function is a part of the :ref:`limited API <limited-c-api>`."

library/json.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
11+
"POT-Creation-Date: 2026-05-11 16:26+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1313
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
1414
"MIME-Version: 1.0\n"
@@ -252,7 +252,7 @@ msgid ""
252252
"be pretty-printed with that indent level. A positive integer indents that "
253253
"many spaces per level; a string (such as ``\"\\t\"``) is used to indent each "
254254
"level. If zero, negative, or ``\"\"`` (the empty string), only newlines are "
255-
"inserted. If ``None`` (the default), the most compact representation is used."
255+
"inserted. If ``None`` (the default), no newlines are inserted."
256256
msgstr ""
257257

258258
msgid ""

library/unittest.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-05-08 18:34+0000\n"
11+
"POT-Creation-Date: 2026-05-11 16:26+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1313
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
1414
"MIME-Version: 1.0\n"
@@ -1578,13 +1578,13 @@ msgstr ""
15781578
msgid ":meth:`assertHasAttr(a, b) <TestCase.assertHasAttr>`"
15791579
msgstr ""
15801580

1581-
msgid "``hastattr(a, b)``"
1581+
msgid "``hasattr(a, b)``"
15821582
msgstr ""
15831583

15841584
msgid ":meth:`assertNotHasAttr(a, b) <TestCase.assertNotHasAttr>`"
15851585
msgstr ""
15861586

1587-
msgid "``not hastattr(a, b)``"
1587+
msgid "``not hasattr(a, b)``"
15881588
msgstr ""
15891589

15901590
msgid ""

using/android.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
#, fuzzy
77
msgid ""
88
msgstr ""
9-
"Project-Id-Version: Python 3.14\n"
9+
"Project-Id-Version: Python 3.15\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-04-21 15:07+0000\n"
11+
"POT-Creation-Date: 2026-05-11 16:26+0000\n"
1212
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1313
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
1414
"MIME-Version: 1.0\n"

whatsnew/changelog.po

Lines changed: 40 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.15\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2026-05-09 14:43+0000\n"
14+
"POT-Creation-Date: 2026-05-11 16:26+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:02+0000\n"
1616
"Last-Translator: Hari, 2026\n"
1717
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
@@ -39,9 +39,48 @@ msgid ""
3939
"reader now accept any path-like object. Patch by Maurycy Pawłowski-Wieroński."
4040
msgstr ""
4141

42+
msgid ""
43+
":gh:`149486`: :func:`tarfile.data_filter` now validates link targets using "
44+
"the same normalised value that is written to disk, strips trailing "
45+
"separators from the member name when resolving a symlink's directory, and "
46+
"rejects link members that would replace the destination directory itself. "
47+
"This closes several path-traversal bypasses of the ``data`` extraction "
48+
"filter."
49+
msgstr ""
50+
51+
msgid "Library"
52+
msgstr ""
53+
54+
msgid ":gh:`139489`: Add :func:`xml.is_valid_text` to ``xml.__all__``."
55+
msgstr ""
56+
57+
msgid ""
58+
":gh:`112821`: In the REPL, autocompletion might run arbitrary code in the "
59+
"getter of a descriptor. If that getter raised an exception, autocompletion "
60+
"would fail to present any options for the entire object. Autocompletion now "
61+
"works as expected for these objects."
62+
msgstr ""
63+
64+
msgid ""
65+
":gh:`149388`: Make :class:`!asyncio.windows_utils.PipeHandle` closing "
66+
"idempotent."
67+
msgstr ""
68+
69+
msgid ""
70+
":gh:`148441`: :mod:`xml.parsers.expat`: prevent a crash in :meth:`~xml."
71+
"parsers.expat.xmlparser.CharacterDataHandler` when the character data size "
72+
"exceeds the parser's :attr:`buffer size <xml.parsers.expat.xmlparser."
73+
"buffer_size>`."
74+
msgstr ""
75+
4276
msgid "Core and Builtins"
4377
msgstr ""
4478

79+
msgid ""
80+
":gh:`144957`: Fix lazy ``from`` imports of module attributes provided by "
81+
"module-level ``__getattr__``."
82+
msgstr ""
83+
4584
msgid ""
4685
":gh:`149459`: Fix a crash in the JIT optimizer when a specialized "
4786
"``LOAD_SPECIAL`` guard deoptimized after inserting the synthetic ``NULL`` "
@@ -425,9 +464,6 @@ msgid ""
425464
"tier 2 optimizer so that follow-up type guards can be eliminated."
426465
msgstr ""
427466

428-
msgid "Library"
429-
msgstr ""
430-
431467
msgid ""
432468
":gh:`148823`: Defer the import of ``_colorize`` in ``argparse`` until needed "
433469
"for coloring output."

0 commit comments

Comments
 (0)