Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitaba499c

Browse files
author
github-actions
committed
Update translations from Transifex
1 parentc5f9f32 commitaba499c

File tree

15 files changed

+14786
-14686
lines changed

15 files changed

+14786
-14686
lines changed

‎c-api/code.po‎

Lines changed: 1 addition & 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:2025-11-13 18:32+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/"

‎c-api/descriptor.po‎

Lines changed: 49 additions & 9 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-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 ""
3939
msgid"The type object for the built-in descriptor types."
4040
msgstr"組み込みデスクリプタ型の型オブジェクトです。"
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
4351
msgid""
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."
4780
msgstr""
4881

49-
#:../../c-api/descriptor.rst:44
82+
#:../../c-api/descriptor.rst:78
5083
msgid"Built-in descriptors"
5184
msgstr""
5285

53-
#:../../c-api/descriptor.rst:48
86+
#:../../c-api/descriptor.rst:82
5487
msgid""
5588
"The type object for super objects. This is the same object as :class:`super` "
5689
"in the Python layer."
5790
msgstr""
5891

59-
#:../../c-api/descriptor.rst:54
92+
#:../../c-api/descriptor.rst:88
6093
msgid""
6194
"The type of class method objects. This is the same object as :class:"
6295
"`classmethod` in the Python layer."
6396
msgstr""
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
66106
msgid""
67107
"Create a new :class:`classmethod` object wrapping *callable*. *callable* "
68108
"must be a callable object and must not be ``NULL``."
69109
msgstr""
70110

71-
#:../../c-api/descriptor.rst:63
111+
#:../../c-api/descriptor.rst:105
72112
msgid""
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."
76116
msgstr""
77117

78-
#:../../c-api/descriptor.rst:70
118+
#:../../c-api/descriptor.rst:112
79119
msgid""
80120
"The type of static method objects. This is the same object as :class:"
81121
"`staticmethod` in the Python layer."
82122
msgstr""
83123

84-
#:../../c-api/descriptor.rst:76
124+
#:../../c-api/descriptor.rst:118
85125
msgid""
86126
"Create a new :class:`staticmethod` object wrapping *callable*. *callable* "
87127
"must be a callable object and must not be ``NULL``."
88128
msgstr""
89129

90-
#:../../c-api/descriptor.rst:79
130+
#:../../c-api/descriptor.rst:121
91131
msgid""
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

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp