10
10
#, fuzzy
11
11
msgid ""
12
12
msgstr ""
13
- "Project-Id-Version : Python 3.11 \n "
13
+ "Project-Id-Version : Python 3.12 \n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-05-19 14:13 +0000\n "
15
+ "POT-Creation-Date : 2023-05-26 14:12 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 00:47+0000\n "
17
17
"Last-Translator : tomo, 2023\n "
18
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
@@ -99,148 +99,148 @@ msgstr ""
99
99
"ず、 *format* 文字列中のフォーマット文字と厳密に関連付けられていなければなり"
100
100
"ません。下記のフォーマット文字が使用できます:"
101
101
102
- #: ../../c-api/bytes.rst:68
102
+ #: ../../c-api/bytes.rst:65
103
103
msgid "Format Characters"
104
104
msgstr "書式指定文字"
105
105
106
- #: ../../c-api/bytes.rst:68
106
+ #: ../../c-api/bytes.rst:65
107
107
msgid "Type"
108
108
msgstr "型"
109
109
110
- #: ../../c-api/bytes.rst:68
110
+ #: ../../c-api/bytes.rst:65
111
111
msgid "Comment"
112
112
msgstr "備考"
113
113
114
- #: ../../c-api/bytes.rst:70
114
+ #: ../../c-api/bytes.rst:67
115
115
msgid ":attr:`%%`"
116
116
msgstr ":attr:`%%`"
117
117
118
- #: ../../c-api/bytes.rst:70
118
+ #: ../../c-api/bytes.rst:67
119
119
msgid "*n/a*"
120
120
msgstr "*n/a*"
121
121
122
- #: ../../c-api/bytes.rst:70
122
+ #: ../../c-api/bytes.rst:67
123
123
msgid "The literal % character."
124
124
msgstr "リテラルの % 文字"
125
125
126
- #: ../../c-api/bytes.rst:72
126
+ #: ../../c-api/bytes.rst:69
127
127
msgid ":attr:`%c`"
128
128
msgstr ":attr:`%c`"
129
129
130
- #: ../../c-api/bytes.rst:72 ../../c-api/bytes.rst:75 ../../c-api/bytes.rst:93
131
- #: ../../c-api/bytes.rst:96
130
+ #: ../../c-api/bytes.rst:69 ../../c-api/bytes.rst:72 ../../c-api/bytes.rst:90
131
+ #: ../../c-api/bytes.rst:93
132
132
msgid "int"
133
133
msgstr "int"
134
134
135
- #: ../../c-api/bytes.rst:72
135
+ #: ../../c-api/bytes.rst:69
136
136
msgid "A single byte, represented as a C int."
137
137
msgstr "C の整数型で表現される単一のバイト。"
138
138
139
- #: ../../c-api/bytes.rst:75
139
+ #: ../../c-api/bytes.rst:72
140
140
msgid ":attr:`%d`"
141
141
msgstr ":attr:`%d`"
142
142
143
- #: ../../c-api/bytes.rst:75
143
+ #: ../../c-api/bytes.rst:72
144
144
msgid "Equivalent to ``printf(\" %d\" )``. [1]_"
145
145
msgstr "``printf(\" %d\" )`` と同等。 [1]_"
146
146
147
- #: ../../c-api/bytes.rst:78
147
+ #: ../../c-api/bytes.rst:75
148
148
msgid ":attr:`%u`"
149
149
msgstr ":attr:`%u`"
150
150
151
- #: ../../c-api/bytes.rst:78
151
+ #: ../../c-api/bytes.rst:75
152
152
msgid "unsigned int"
153
153
msgstr "unsigned int"
154
154
155
- #: ../../c-api/bytes.rst:78
155
+ #: ../../c-api/bytes.rst:75
156
156
msgid "Equivalent to ``printf(\" %u\" )``. [1]_"
157
157
msgstr "``printf(\" %u\" )`` と同等。 [1]_"
158
158
159
- #: ../../c-api/bytes.rst:81
159
+ #: ../../c-api/bytes.rst:78
160
160
msgid ":attr:`%ld`"
161
161
msgstr ":attr:`%ld`"
162
162
163
- #: ../../c-api/bytes.rst:81
163
+ #: ../../c-api/bytes.rst:78
164
164
msgid "long"
165
165
msgstr "long"
166
166
167
- #: ../../c-api/bytes.rst:81
167
+ #: ../../c-api/bytes.rst:78
168
168
msgid "Equivalent to ``printf(\" %ld\" )``. [1]_"
169
169
msgstr "``printf(\" %ld\" )`` と同等。 [1]_"
170
170
171
- #: ../../c-api/bytes.rst:84
171
+ #: ../../c-api/bytes.rst:81
172
172
msgid ":attr:`%lu`"
173
173
msgstr ":attr:`%lu`"
174
174
175
- #: ../../c-api/bytes.rst:84
175
+ #: ../../c-api/bytes.rst:81
176
176
msgid "unsigned long"
177
177
msgstr "unsigned long"
178
178
179
- #: ../../c-api/bytes.rst:84
179
+ #: ../../c-api/bytes.rst:81
180
180
msgid "Equivalent to ``printf(\" %lu\" )``. [1]_"
181
181
msgstr "``printf(\" %lu\" )`` と同等。 [1]_"
182
182
183
- #: ../../c-api/bytes.rst:87
183
+ #: ../../c-api/bytes.rst:84
184
184
msgid ":attr:`%zd`"
185
185
msgstr ":attr:`%zd`"
186
186
187
- #: ../../c-api/bytes.rst:87
187
+ #: ../../c-api/bytes.rst:84
188
188
msgid ":c:type:`\\ Py_ssize_t`"
189
189
msgstr ""
190
190
191
- #: ../../c-api/bytes.rst:87
191
+ #: ../../c-api/bytes.rst:84
192
192
msgid "Equivalent to ``printf(\" %zd\" )``. [1]_"
193
193
msgstr "``printf(\" %zd\" )`` と同等。 [1]_"
194
194
195
- #: ../../c-api/bytes.rst:90
195
+ #: ../../c-api/bytes.rst:87
196
196
msgid ":attr:`%zu`"
197
197
msgstr ":attr:`%zu`"
198
198
199
- #: ../../c-api/bytes.rst:90
199
+ #: ../../c-api/bytes.rst:87
200
200
msgid "size_t"
201
201
msgstr "size_t"
202
202
203
- #: ../../c-api/bytes.rst:90
203
+ #: ../../c-api/bytes.rst:87
204
204
msgid "Equivalent to ``printf(\" %zu\" )``. [1]_"
205
205
msgstr "``printf(\" %zu\" )`` と同等。 [1]_"
206
206
207
- #: ../../c-api/bytes.rst:93
207
+ #: ../../c-api/bytes.rst:90
208
208
msgid ":attr:`%i`"
209
209
msgstr ":attr:`%i`"
210
210
211
- #: ../../c-api/bytes.rst:93
211
+ #: ../../c-api/bytes.rst:90
212
212
msgid "Equivalent to ``printf(\" %i\" )``. [1]_"
213
213
msgstr "``printf(\" %i\" )`` と同等。 [1]_"
214
214
215
- #: ../../c-api/bytes.rst:96
215
+ #: ../../c-api/bytes.rst:93
216
216
msgid ":attr:`%x`"
217
217
msgstr ":attr:`%x`"
218
218
219
- #: ../../c-api/bytes.rst:96
219
+ #: ../../c-api/bytes.rst:93
220
220
msgid "Equivalent to ``printf(\" %x\" )``. [1]_"
221
221
msgstr "``printf(\" %x\" )`` と同等。 [1]_"
222
222
223
- #: ../../c-api/bytes.rst:99
223
+ #: ../../c-api/bytes.rst:96
224
224
msgid ":attr:`%s`"
225
225
msgstr ":attr:`%s`"
226
226
227
- #: ../../c-api/bytes.rst:99
227
+ #: ../../c-api/bytes.rst:96
228
228
msgid "const char\\ *"
229
229
msgstr "const char\\ *"
230
230
231
- #: ../../c-api/bytes.rst:99
231
+ #: ../../c-api/bytes.rst:96
232
232
msgid "A null-terminated C character array."
233
233
msgstr "null で終端された C の文字列。"
234
234
235
- #: ../../c-api/bytes.rst:102
235
+ #: ../../c-api/bytes.rst:99
236
236
msgid ":attr:`%p`"
237
237
msgstr ":attr:`%p`"
238
238
239
- #: ../../c-api/bytes.rst:102
239
+ #: ../../c-api/bytes.rst:99
240
240
msgid "const void\\ *"
241
241
msgstr "const void\\ *"
242
242
243
- #: ../../c-api/bytes.rst:102
243
+ #: ../../c-api/bytes.rst:99
244
244
msgid ""
245
245
"The hex representation of a C pointer. Mostly equivalent to "
246
246
"``printf(\" %p\" )`` except that it is guaranteed to start with the literal "
@@ -250,45 +250,45 @@ msgstr ""
250
250
"フォームにおける ``printf`` の定義に関わりなく先頭にリテラル ``0x`` が付きま"
251
251
"す。"
252
252
253
- #: ../../c-api/bytes.rst:111
253
+ #: ../../c-api/bytes.rst:108
254
254
msgid ""
255
255
"An unrecognized format character causes all the rest of the format string to "
256
256
"be copied as-is to the result object, and any extra arguments discarded."
257
257
msgstr ""
258
258
"識別できない書式指定文字があった場合、残りの書式文字列はそのまま結果のオブ"
259
259
"ジェクトにコピーされ、残りの引数は無視されます。"
260
260
261
- #: ../../c-api/bytes.rst:114
261
+ #: ../../c-api/bytes.rst:111
262
262
msgid ""
263
263
"For integer specifiers (d, u, ld, lu, zd, zu, i, x): the 0-conversion flag "
264
264
"has effect even when a precision is given."
265
265
msgstr ""
266
266
"整数指定子 (d, u, ld, lu, zd, zu, i, x): 精度が与えられていても、0指定子は有"
267
267
"効です。"
268
268
269
- #: ../../c-api/bytes.rst:120
269
+ #: ../../c-api/bytes.rst:117
270
270
msgid ""
271
271
"Identical to :c:func:`PyBytes_FromFormat` except that it takes exactly two "
272
272
"arguments."
273
273
msgstr ""
274
274
"ちょうど2つの引数を取ることを除いて、 :c:func:`PyBytes_FromFormat` と同じで"
275
275
"す。"
276
276
277
- #: ../../c-api/bytes.rst:126
277
+ #: ../../c-api/bytes.rst:123
278
278
msgid ""
279
279
"Return the bytes representation of object *o* that implements the buffer "
280
280
"protocol."
281
281
msgstr "バッファプロトコルを実装するオブジェクト *o* のバイト表現を返します。"
282
282
283
- #: ../../c-api/bytes.rst:132
283
+ #: ../../c-api/bytes.rst:129
284
284
msgid "Return the length of the bytes in bytes object *o*."
285
285
msgstr "バイトオブジェクト *o* のバイト単位の長さを返します。"
286
286
287
- #: ../../c-api/bytes.rst:137
287
+ #: ../../c-api/bytes.rst:134
288
288
msgid "Similar to :c:func:`PyBytes_Size`, but without error checking."
289
289
msgstr ":c:func:`PyBytes_Size` に似ていますが、エラーチェックを行いません。"
290
290
291
- #: ../../c-api/bytes.rst:142
291
+ #: ../../c-api/bytes.rst:139
292
292
msgid ""
293
293
"Return a pointer to the contents of *o*. The pointer refers to the internal "
294
294
"buffer of *o*, which consists of ``len(o) + 1`` bytes. The last byte in the "
@@ -308,20 +308,20 @@ msgstr ""
308
308
"もし、 *o* が bytes オブジェクトでなければ、 :c:func:`PyBytes_AsString` は "
309
309
"``NULL`` を返し :exc:`TypeError` を送出します。"
310
310
311
- #: ../../c-api/bytes.rst:154
311
+ #: ../../c-api/bytes.rst:151
312
312
msgid "Similar to :c:func:`PyBytes_AsString`, but without error checking."
313
313
msgstr ""
314
314
":c:func:`PyBytes_AsString` に似ていますが、エラーチェックを行いません。"
315
315
316
- #: ../../c-api/bytes.rst:159
316
+ #: ../../c-api/bytes.rst:156
317
317
msgid ""
318
318
"Return the null-terminated contents of the object *obj* through the output "
319
319
"variables *buffer* and *length*."
320
320
msgstr ""
321
321
"*obj* のnull 終端された中身を、出力用の変数 *buffer* と *length* を介して返し"
322
322
"ます。"
323
323
324
- #: ../../c-api/bytes.rst:162
324
+ #: ../../c-api/bytes.rst:159
325
325
msgid ""
326
326
"If *length* is ``NULL``, the bytes object may not contain embedded null "
327
327
"bytes; if it does, the function returns ``-1`` and a :exc:`ValueError` is "
@@ -331,7 +331,7 @@ msgstr ""
331
331
"可能性があります。その場合、関数は ``-1`` を返し、 :exc:`ValueError` を送出し"
332
332
"ます。"
333
333
334
- #: ../../c-api/bytes.rst:166
334
+ #: ../../c-api/bytes.rst:163
335
335
msgid ""
336
336
"The buffer refers to an internal buffer of *obj*, which includes an "
337
337
"additional null byte at the end (not counted in *length*). The data must "
@@ -348,15 +348,15 @@ msgstr ""
348
348
"*obj* が bytes オブジェクトでなかった場合は、 :c:func:"
349
349
"`PyBytes_AsStringAndSize` は ``-1`` を返し :exc:`TypeError` を送出します。"
350
350
351
- #: ../../c-api/bytes.rst:173
351
+ #: ../../c-api/bytes.rst:170
352
352
msgid ""
353
353
"Previously, :exc:`TypeError` was raised when embedded null bytes were "
354
354
"encountered in the bytes object."
355
355
msgstr ""
356
356
"以前は bytes オブジェクトにヌルバイトが埋め込まれていたときに :exc:"
357
357
"`TypeError` を送出していました。"
358
358
359
- #: ../../c-api/bytes.rst:180
359
+ #: ../../c-api/bytes.rst:177
360
360
msgid ""
361
361
"Create a new bytes object in *\\ *bytes* containing the contents of *newpart* "
362
362
"appended to *bytes*; the caller will own the new reference. The reference "
@@ -370,7 +370,7 @@ msgstr ""
370
370
"もし新しいオブジェクトが生成できない場合、古い *bytes* の参照は放棄され、 "
371
371
"*\\ *bytes* の値は ``NULL`` に設定されます; 適切な例外が設定されます。"
372
372
373
- #: ../../c-api/bytes.rst:189
373
+ #: ../../c-api/bytes.rst:186
374
374
msgid ""
375
375
"Create a new bytes object in *\\ *bytes* containing the contents of *newpart* "
376
376
"appended to *bytes*. This version decrements the reference count of "
@@ -380,7 +380,7 @@ msgstr ""
380
380
"*\\ *bytes* に生成します; この関数は、 *newpart* の参照カウントをデクリメント"
381
381
"します。"
382
382
383
- #: ../../c-api/bytes.rst:196
383
+ #: ../../c-api/bytes.rst:193
384
384
msgid ""
385
385
"A way to resize a bytes object even though it is \" immutable\" . Only use "
386
386
"this to build up a brand new bytes object; don't use this if the bytes may "
0 commit comments