Skip to content

Commit a35df49

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

7 files changed

Lines changed: 400 additions & 343 deletions

File tree

c-api/unicode.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
11+
"POT-Creation-Date: 2026-04-09 15:16+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"
@@ -1849,6 +1849,12 @@ msgid ""
18491849
"Call :c:func:`PyObject_Str` on *obj* and write the output into *writer*."
18501850
msgstr ""
18511851

1852+
msgid ""
1853+
"To write a :class:`str` subclass which overrides the :meth:`~object.__str__` "
1854+
"method, :c:func:`PyUnicode_FromObject` can be used to get the original "
1855+
"string."
1856+
msgstr ""
1857+
18521858
msgid ""
18531859
"Call :c:func:`PyObject_Repr` on *obj* and write the output into *writer*."
18541860
msgstr ""

library/asyncio-eventloop.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.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
11+
"POT-Creation-Date: 2026-04-09 15:16+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"
@@ -2096,7 +2096,7 @@ msgstr ""
20962096
msgid "Set signal handlers for SIGINT and SIGTERM"
20972097
msgstr ""
20982098

2099-
msgid "(This ``signals`` example only works on Unix.)"
2099+
msgid "(This ``signal`` example only works on Unix.)"
21002100
msgstr ""
21012101

21022102
msgid ""

library/glob.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
11+
"POT-Creation-Date: 2026-04-09 15:16+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"
@@ -106,6 +106,12 @@ msgid ""
106106
"multiple \"``**``\" patterns and *recursive* is true."
107107
msgstr ""
108108

109+
msgid ""
110+
"Any :exc:`OSError` exceptions raised from scanning the filesystem are "
111+
"suppressed. This includes :exc:`PermissionError` when accessing directories "
112+
"without read permission."
113+
msgstr ""
114+
109115
msgid "Support for recursive globs using \"``**``\"."
110116
msgstr ""
111117

library/itertools.po

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
11+
"POT-Creation-Date: 2026-04-09 15:16+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"
@@ -1156,7 +1156,7 @@ msgid ""
11561156
"\n"
11571157
"def running_mean(iterable):\n"
11581158
" \"Yield the average of all values seen so far.\"\n"
1159-
" # running_mean([8.5, 9.5, 7.5, 6.5]) -> 8.5 9.0 8.5 8.0\n"
1159+
" # running_mean([8.5, 9.5, 7.5, 6.5]) 8.5 9.0 8.5 8.0\n"
11601160
" return map(truediv, accumulate(iterable), count(1))\n"
11611161
"\n"
11621162
"def repeatfunc(function, times=None, *args):\n"
@@ -1242,10 +1242,10 @@ msgid ""
12421242
" yield element\n"
12431243
"\n"
12441244
"def unique(iterable, key=None, reverse=False):\n"
1245-
" \"Yield unique elements in sorted order. Supports unhashable inputs.\"\n"
1246-
" # unique([[1, 2], [3, 4], [1, 2]]) → [1, 2] [3, 4]\n"
1247-
" sequenced = sorted(iterable, key=key, reverse=reverse)\n"
1248-
" return unique_justseen(sequenced, key=key)\n"
1245+
" \"Yield unique elements in sorted order. Supports unhashable inputs.\"\n"
1246+
" # unique([[1, 2], [3, 4], [1, 2]]) → [1, 2] [3, 4]\n"
1247+
" sequenced = sorted(iterable, key=key, reverse=reverse)\n"
1248+
" return unique_justseen(sequenced, key=key)\n"
12491249
"\n"
12501250
"def sliding_window(iterable, n):\n"
12511251
" \"Collect data into overlapping fixed-length chunks or blocks.\"\n"

library/pathlib.po

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ msgid ""
88
msgstr ""
99
"Project-Id-Version: Python 3.14\n"
1010
"Report-Msgid-Bugs-To: \n"
11-
"POT-Creation-Date: 2026-03-25 14:54+0000\n"
11+
"POT-Creation-Date: 2026-04-09 15:16+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"
@@ -1472,6 +1472,12 @@ msgid ""
14721472
"wildcards. Set *recurse_symlinks* to ``True`` to always follow symlinks."
14731473
msgstr ""
14741474

1475+
msgid ""
1476+
"Any :exc:`OSError` exceptions raised from scanning the filesystem are "
1477+
"suppressed. This includes :exc:`PermissionError` when accessing directories "
1478+
"without read permission."
1479+
msgstr ""
1480+
14751481
msgid ""
14761482
"Raises an :ref:`auditing event <auditing>` ``pathlib.Path.glob`` with "
14771483
"arguments ``self``, ``pattern``."

library/stdtypes.po

Lines changed: 20 additions & 3 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-04-05 14:30+0000\n"
14+
"POT-Creation-Date: 2026-04-09 15:16+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:01+0000\n"
1616
"Last-Translator: Hari, 2026\n"
1717
"Language-Team: Tamil (https://app.transifex.com/python-doc/teams/5390/ta/)\n"
@@ -3212,8 +3212,25 @@ msgstr ""
32123212

32133213
msgid ""
32143214
"Return a copy of the string with uppercase characters converted to lowercase "
3215-
"and vice versa. Note that it is not necessarily true that ``s.swapcase()."
3216-
"swapcase() == s``."
3215+
"and vice versa. For example:"
3216+
msgstr ""
3217+
3218+
msgid ""
3219+
">>> 'Hello World'.swapcase()\n"
3220+
"'hELLO wORLD'"
3221+
msgstr ""
3222+
3223+
msgid ""
3224+
"Note that it is not necessarily true that ``s.swapcase().swapcase() == s``. "
3225+
"For example:"
3226+
msgstr ""
3227+
3228+
msgid ""
3229+
">>> 'straße'.swapcase().swapcase()\n"
3230+
"'strasse'"
3231+
msgstr ""
3232+
3233+
msgid "See also :meth:`str.lower` and :meth:`str.upper`."
32173234
msgstr ""
32183235

32193236
msgid ""

0 commit comments

Comments
 (0)