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

Commite80aef7

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent88ed7eb commite80aef7

File tree

434 files changed

+87196
-18074
lines changed

Some content is hidden

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

434 files changed

+87196
-18074
lines changed

‎c-api/memory.po

Lines changed: 207 additions & 67 deletions
Large diffs are not rendered by default.

‎c-api/memoryview.po

Lines changed: 31 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,14 +24,17 @@ msgstr ""
2424

2525
#:../../c-api/memoryview.rst:9
2626
msgid"MemoryView objects"
27-
msgstr""
27+
msgstr"memoryview オブジェクト"
2828

2929
#:../../c-api/memoryview.rst:11
3030
msgid""
3131
"A :class:`memoryview` object exposes the C level :ref:`buffer interface "
3232
"<bufferobjects>` as a Python object which can then be passed around like any "
3333
"other object."
3434
msgstr""
35+
":class:`memoryview` オブジェクトは、他のオブジェクトと同じように扱える "
36+
"Python オブジェクトの形をした C 言語レベルの :ref:`バッファのインターフェー"
37+
"ス <bufferobjects>` です。"
3538

3639
#:../../c-api/memoryview.rst:18
3740
msgid""
@@ -40,6 +43,10 @@ msgid ""
4043
"will be read/write, otherwise it may be either read-only or read/write at "
4144
"the discretion of the exporter."
4245
msgstr""
46+
"バッファインターフェースを提供するオブジェクトからmemoryview オブジェクトを生"
47+
"成します。もし *obj* が書き込み可能なバッファのエクスポートをサポートするな"
48+
"ら、その memoryview オブジェクトは読み書き可能です。そうでなければ読出しのみ"
49+
"になるか、エクスポーターの分別にもとづいて読み書きが可能となります。"
4350

4451
#:../../c-api/memoryview.rst:26
4552
msgid"Flag to request a readonly buffer."
@@ -54,13 +61,18 @@ msgid ""
5461
"Create a memoryview object using *mem* as the underlying buffer. *flags* can "
5562
"be one of :c:macro:`PyBUF_READ` or :c:macro:`PyBUF_WRITE`."
5663
msgstr""
64+
"*mem* を配下のバッファとしてmemoryview オブジェクトを作成します。 *flags* "
65+
"は :c:macro:`PyBUF_READ` か :c:macro:`PyBUF_WRITE` のどちらかになります。"
5766

5867
#:../../c-api/memoryview.rst:43
5968
msgid""
6069
"Create a memoryview object wrapping the given buffer structure *view*. For "
6170
"simple byte buffers, :c:func:`PyMemoryView_FromMemory` is the preferred "
6271
"function."
6372
msgstr""
73+
"*view* として与えられたバッファ構造をラップする memoryview オブジェクトを作成"
74+
"します。単なるバイトバッファ向けには、 :c:func:`PyMemoryView_FromMemory` の"
75+
"ほうが望ましいです。"
6476

6577
#:../../c-api/memoryview.rst:49
6678
msgid""
@@ -70,6 +82,11 @@ msgid ""
7082
"original memory. Otherwise, a copy is made and the memoryview points to a "
7183
"new bytes object."
7284
msgstr""
85+
"buffer インターフェースを定義しているオブジェクトから ('C' か 'F'ortran の "
86+
"*order* で) :term:`連続した <contiguous>` メモリチャンクへの memoryview オブ"
87+
"ジェクトを作ります。メモリが連続している場合、 memoryview オブジェクトは元の"
88+
"メモリを参照します。それ以外の場合、メモリはコピーされて、 memoryview オブ"
89+
"ジェクトは新しい bytes オブジェクトを参照します。"
7390

7491
#:../../c-api/memoryview.rst:55
7592
msgid""
@@ -82,13 +99,21 @@ msgid ""
8299
"allowed to create subclasses of :class:`memoryview`. This function always "
83100
"succeeds."
84101
msgstr""
102+
"*obj* が memoryview オブジェクトの場合に真を返します。現在のところ、 :class:"
103+
"`memoryview` のサブクラスの作成は許可されていません。この関数は常に成功しま"
104+
"す。"
85105

86106
#:../../c-api/memoryview.rst:67
87107
msgid""
88108
"Return a pointer to the memoryview's private copy of the exporter's buffer. "
89109
"*mview* **must** be a memoryview instance; this macro doesn't check its "
90110
"type, you must do it yourself or you will risk crashes."
91111
msgstr""
112+
"書きだされたバッファーの memoryview のプライベート コピーに、ポインターを返し"
113+
"ます。\n"
114+
"*mview* は memoryview インスタンスでなければなりません;\n"
115+
"このマクロは型をチェックしないので自前で型チェックしなければならず、それを怠"
116+
"るとクラッシュする恐れがあります。"
92117

93118
#:../../c-api/memoryview.rst:73
94119
msgid""
@@ -97,11 +122,15 @@ msgid ""
97122
"func:`PyMemoryView_FromMemory` or :c:func:`PyMemoryView_FromBuffer`. *mview* "
98123
"**must** be a memoryview instance."
99124
msgstr""
125+
"memoryview をエクスポートしているオブジェクトへのポインタを返します。\n"
126+
"memoryview が :c:func:`PyMemoryView_FromMemory` か :c:func:"
127+
"`PyMemoryView_FromBuffer` のどちらかで作成されていた場合、 ``NULL`` を返しま"
128+
"す。"
100129

101130
#:../../c-api/memoryview.rst:5
102131
msgid"object"
103132
msgstr"object"
104133

105134
#:../../c-api/memoryview.rst:5
106135
msgid"memoryview"
107-
msgstr""
136+
msgstr"memoryview"

‎c-api/method.po

Lines changed: 31 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ msgstr ""
2424

2525
#:../../c-api/method.rst:6
2626
msgid"Instance Method Objects"
27-
msgstr""
27+
msgstr"インスタンスメソッドオブジェクト(Instance Method Objects)"
2828

2929
#:../../c-api/method.rst:10
3030
msgid""
@@ -38,89 +38,111 @@ msgid ""
3838
"This instance of :c:type:`PyTypeObject` represents the Python instance "
3939
"method type. It is not exposed to Python programs."
4040
msgstr""
41+
":c:type:`PyTypeObject` のインスタンスは Python のインスタンスメソッドの型を表"
42+
"現します。これは Python のプログラムには公開されません。"
4143

4244
#:../../c-api/method.rst:23
4345
msgid""
4446
"Return true if *o* is an instance method object (has type :c:data:"
4547
"`PyInstanceMethod_Type`). The parameter must not be ``NULL``. This function "
4648
"always succeeds."
4749
msgstr""
50+
"*o* がインスタンスメソッドオブジェクト (:c:data:`PyInstanceMethod_Type` 型で"
51+
"ある) 場合に真を返します。パラメータは ``NULL`` にできません。この関数は常に"
52+
"成功します。"
4853

4954
#:../../c-api/method.rst:30
5055
msgid""
5156
"Return a new instance method object, with *func* being any callable object. "
5257
"*func* is the function that will be called when the instance method is "
5358
"called."
5459
msgstr""
60+
"任意の呼び出し可能オブジェクト *func* を使った新たなインスタンスメソッドオブ"
61+
"ジェクトを返します。*func* はインスタンスメソッドが呼び出されたときに呼び出さ"
62+
"れる関数です。"
5563

5664
#:../../c-api/method.rst:37
5765
msgid"Return the function object associated with the instance method *im*."
58-
msgstr""
66+
msgstr"インスタンスメソッド *im* に関連付けられた関数オブジェクトを返します。"
5967

6068
#:../../c-api/method.rst:42
6169
msgid""
6270
"Macro version of :c:func:`PyInstanceMethod_Function` which avoids error "
6371
"checking."
6472
msgstr""
73+
":c:func:`PyInstanceMethod_Function` のマクロ版で、エラーチェックを行いませ"
74+
"ん。"
6575

6676
#:../../c-api/method.rst:48
6777
msgid"Method Objects"
68-
msgstr""
78+
msgstr"メソッドオブジェクト"
6979

7080
#:../../c-api/method.rst:52
7181
msgid""
7282
"Methods are bound function objects. Methods are always bound to an instance "
7383
"of a user-defined class. Unbound methods (methods bound to a class object) "
7484
"are no longer available."
7585
msgstr""
86+
"メソッドは関数オブジェクトに束縛されています。メソッドは常にあるユーザー定義"
87+
"のクラスに束縛されているのです。束縛されていないメソッド(クラスオブジェクトに"
88+
"束縛されたメソッド)は利用することができません。"
7689

7790
#:../../c-api/method.rst:61
7891
msgid""
7992
"This instance of :c:type:`PyTypeObject` represents the Python method type. "
8093
"This is exposed to Python programs as ``types.MethodType``."
8194
msgstr""
95+
"この :c:type:`PyTypeObject` のインスタンスは Python のメソッド型を表現しま"
96+
"す。このオブジェクトは、 ``types.MethodType`` として Python プログラムに公開"
97+
"されています。"
8298

8399
#:../../c-api/method.rst:67
84100
msgid""
85101
"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). "
86102
"The parameter must not be ``NULL``. This function always succeeds."
87103
msgstr""
104+
"*o* がメソッドオブジェクト (:c:data:`PyMethod_Type` 型である) 場合に真を返し"
105+
"ます。パラメータは ``NULL`` にできません。この関数は常に成功します。"
88106

89107
#:../../c-api/method.rst:73
90108
msgid""
91109
"Return a new method object, with *func* being any callable object and *self* "
92110
"the instance the method should be bound. *func* is the function that will be "
93111
"called when the method is called. *self* must not be ``NULL``."
94112
msgstr""
113+
"任意の呼び出し可能オブジェクト *func* とメソッドが束縛されるべきインスタンス "
114+
"*self* を使った新たなメソッドオブジェクトを返します。\n"
115+
"関数 *func* は、メソッドが呼び出された時に呼び出されるオブジェクトです。\n"
116+
"*self* は ``NULL`` にできません。"
95117

96118
#:../../c-api/method.rst:80
97119
msgid"Return the function object associated with the method *meth*."
98-
msgstr""
120+
msgstr"メソッド *meth* に関連付けられている関数オブジェクトを返します。"
99121

100122
#:../../c-api/method.rst:85
101123
msgid""
102124
"Macro version of :c:func:`PyMethod_Function` which avoids error checking."
103-
msgstr""
125+
msgstr":c:func:`PyMethod_Function` のマクロ版で、エラーチェックを行いません。"
104126

105127
#:../../c-api/method.rst:90
106128
msgid"Return the instance associated with the method *meth*."
107-
msgstr""
129+
msgstr"メソッド *meth* に関連付けられたインスタンスを返します。"
108130

109131
#:../../c-api/method.rst:95
110132
msgid"Macro version of :c:func:`PyMethod_Self` which avoids error checking."
111-
msgstr""
133+
msgstr":c:func:`PyMethod_Self` のマクロ版で、エラーチェックを行いません。"
112134

113135
#:../../c-api/method.rst:8../../c-api/method.rst:50
114136
msgid"object"
115137
msgstr"object"
116138

117139
#:../../c-api/method.rst:8
118140
msgid"instancemethod"
119-
msgstr""
141+
msgstr"instancemethod"
120142

121143
#:../../c-api/method.rst:50
122144
msgid"method"
123-
msgstr""
145+
msgstr"メソッド"
124146

125147
#:../../c-api/method.rst:59
126148
msgid"MethodType (in module types)"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp