Skip to content

Commit b018460

Browse files
[po] auto sync
1 parent 2e24bcf commit b018460

51 files changed

Lines changed: 712 additions & 688 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.stat.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"translation": "0.15%", "updated_at": "2025-11-03T15:22:54Z"}
1+
{"translation": "0.15%", "updated_at": "2025-11-05T14:22:18Z"}

c-api/cell.mo

0 Bytes
Binary file not shown.

c-api/cell.po

Lines changed: 3 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: 2025-05-08 02:53-0300\n"
14+
"POT-Creation-Date: 2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -29,8 +29,8 @@ msgstr ""
2929
msgid ""
3030
"\"Cell\" objects are used to implement variables referenced by multiple "
3131
"scopes. For each such variable, a cell object is created to store the value;"
32-
" the local variables of each stack frame that references the value contains "
33-
"a reference to the cells from outer scopes which also use that variable. "
32+
" the local variables of each stack frame that references the value contain a"
33+
" reference to the cells from outer scopes which also use that variable. "
3434
"When the value is accessed, the value contained in the cell is used instead "
3535
"of the cell object itself. This de-referencing of the cell object requires "
3636
"support from the generated byte-code; these are not automatically de-"

c-api/datetime.mo

0 Bytes
Binary file not shown.

c-api/datetime.po

Lines changed: 2 additions & 2 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: 2025-05-09 14:19+0000\n"
14+
"POT-Creation-Date: 2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -75,7 +75,7 @@ msgstr ""
7575

7676
#: ../../c-api/datetime.rst:49
7777
msgid ""
78-
"This instance of :c:type:`PyTypeObject` represents Python type for the "
78+
"This instance of :c:type:`PyTypeObject` represents the Python type for the "
7979
"difference between two datetime values; it is the same object as "
8080
":class:`datetime.timedelta` in the Python layer."
8181
msgstr ""

c-api/descriptor.mo

0 Bytes
Binary file not shown.

c-api/descriptor.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: 2025-05-08 02:53-0300\n"
14+
"POT-Creation-Date: 2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -37,7 +37,7 @@ msgstr ""
3737

3838
#: ../../c-api/descriptor.rst:35
3939
msgid ""
40-
"Return non-zero if the descriptor objects *descr* describes a data "
41-
"attribute, or ``0`` if it describes a method. *descr* must be a descriptor "
42-
"object; there is no error checking."
40+
"Return non-zero if the descriptor object *descr* describes a data attribute,"
41+
" or ``0`` if it describes a method. *descr* must be a descriptor object; "
42+
"there is no error checking."
4343
msgstr ""

c-api/mapping.mo

0 Bytes
Binary file not shown.

c-api/mapping.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: 2025-05-09 14:19+0000\n"
14+
"POT-Creation-Date: 2025-11-05 14:15+0000\n"
1515
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1616
"Last-Translator: python-doc bot, 2025\n"
1717
"Language-Team: Russian (https://app.transifex.com/python-doc/teams/5390/ru/)\n"
@@ -116,8 +116,8 @@ msgstr ""
116116

117117
#: ../../c-api/mapping.rst:105
118118
msgid ""
119-
"Exceptions which occur when this calls :meth:`~object.__getitem__` method "
120-
"are silently ignored. For proper error handling, use "
119+
"Exceptions which occur when this calls the :meth:`~object.__getitem__` "
120+
"method are silently ignored. For proper error handling, use "
121121
":c:func:`PyMapping_HasKeyWithError`, :c:func:`PyMapping_GetOptionalItem` or "
122122
":c:func:`PyObject_GetItem()` instead."
123123
msgstr ""
@@ -131,9 +131,9 @@ msgstr ""
131131

132132
#: ../../c-api/mapping.rst:119
133133
msgid ""
134-
"Exceptions that occur when this calls :meth:`~object.__getitem__` method or "
135-
"while creating the temporary :class:`str` object are silently ignored. For "
136-
"proper error handling, use :c:func:`PyMapping_HasKeyStringWithError`, "
134+
"Exceptions that occur when this calls the :meth:`~object.__getitem__` method"
135+
" or while creating the temporary :class:`str` object are silently ignored. "
136+
"For proper error handling, use :c:func:`PyMapping_HasKeyStringWithError`, "
137137
":c:func:`PyMapping_GetOptionalItemString` or "
138138
":c:func:`PyMapping_GetItemString` instead."
139139
msgstr ""

c-api/marshal.mo

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)