@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.14\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-12-01 14:16 +0000\n "
14+ "POT-Creation-Date : 2025-12-03 14:17 +0000\n "
1515"PO-Revision-Date : 2025-09-16 00:00+0000\n "
1616"Last-Translator : python-doc bot, 2025\n "
1717"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -39,55 +39,95 @@ msgstr ""
3939msgid "The type object for the built-in descriptor types."
4040msgstr "組み込みデスクリプタ型の型オブジェクトです。"
4141
42+ #: ../../c-api/descriptor.rst:26
43+ msgid ""
44+ "The type object for member descriptor objects created from :c:type:"
45+ "`PyMemberDef` structures. These descriptors expose fields of a C struct as "
46+ "attributes on a type, and correspond to :class:`types.MemberDescriptorType` "
47+ "objects in Python."
48+ msgstr ""
49+
4250#: ../../c-api/descriptor.rst:35
4351msgid ""
52+ "The type object for get/set descriptor objects created from :c:type:"
53+ "`PyGetSetDef` structures. These descriptors implement attributes whose value "
54+ "is computed by C getter and setter functions, and are used for many built-in "
55+ "type attributes."
56+ msgstr ""
57+
58+ #: ../../c-api/descriptor.rst:46
59+ msgid ""
60+ "The type object for method descriptor objects created from :c:type:"
61+ "`PyMethodDef` structures. These descriptors expose C functions as methods on "
62+ "a type, and correspond to :class:`types.MemberDescriptorType` objects in "
63+ "Python."
64+ msgstr ""
65+
66+ #: ../../c-api/descriptor.rst:57
67+ msgid ""
68+ "The type object for wrapper descriptor objects created by :c:func:"
69+ "`PyDescr_NewWrapper` and :c:func:`PyWrapper_New`. Wrapper descriptors are "
70+ "used internally to expose special methods implemented via wrapper "
71+ "structures, and appear in Python as :class:`types.WrapperDescriptorType` "
72+ "objects."
73+ msgstr ""
74+
75+ #: ../../c-api/descriptor.rst:69
76+ msgid ""
4477"Return non-zero if the descriptor object *descr* describes a data attribute, "
4578"or ``0`` if it describes a method. *descr* must be a descriptor object; "
4679"there is no error checking."
4780msgstr ""
4881
49- #: ../../c-api/descriptor.rst:44
82+ #: ../../c-api/descriptor.rst:78
5083msgid "Built-in descriptors"
5184msgstr ""
5285
53- #: ../../c-api/descriptor.rst:48
86+ #: ../../c-api/descriptor.rst:82
5487msgid ""
5588"The type object for super objects. This is the same object as :class:`super` "
5689"in the Python layer."
5790msgstr ""
5891
59- #: ../../c-api/descriptor.rst:54
92+ #: ../../c-api/descriptor.rst:88
6093msgid ""
6194"The type of class method objects. This is the same object as :class:"
6295"`classmethod` in the Python layer."
6396msgstr ""
6497
65- #: ../../c-api/descriptor.rst:60
98+ #: ../../c-api/descriptor.rst:94
99+ msgid ""
100+ "The type object for C-level class method descriptor objects. This is the "
101+ "type of the descriptors created for :func:`classmethod` defined in C "
102+ "extension types, and is the same object as :class:`classmethod` in Python."
103+ msgstr ""
104+
105+ #: ../../c-api/descriptor.rst:102
66106msgid ""
67107"Create a new :class:`classmethod` object wrapping *callable*. *callable* "
68108"must be a callable object and must not be ``NULL``."
69109msgstr ""
70110
71- #: ../../c-api/descriptor.rst:63
111+ #: ../../c-api/descriptor.rst:105
72112msgid ""
73113"On success, this function returns a :term:`strong reference` to a new class "
74114"method descriptor. On failure, this function returns ``NULL`` with an "
75115"exception set."
76116msgstr ""
77117
78- #: ../../c-api/descriptor.rst:70
118+ #: ../../c-api/descriptor.rst:112
79119msgid ""
80120"The type of static method objects. This is the same object as :class:"
81121"`staticmethod` in the Python layer."
82122msgstr ""
83123
84- #: ../../c-api/descriptor.rst:76
124+ #: ../../c-api/descriptor.rst:118
85125msgid ""
86126"Create a new :class:`staticmethod` object wrapping *callable*. *callable* "
87127"must be a callable object and must not be ``NULL``."
88128msgstr ""
89129
90- #: ../../c-api/descriptor.rst:79
130+ #: ../../c-api/descriptor.rst:121
91131msgid ""
92132"On success, this function returns a :term:`strong reference` to a new static "
93133"method descriptor. On failure, this function returns ``NULL`` with an "
0 commit comments