Skip to content

Commit 137e769

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 6575237 commit 137e769

File tree

8 files changed

+7813
-7674
lines changed

8 files changed

+7813
-7674
lines changed

c-api/objbuffer.po

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2021, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# tomo, 2021
8+
# mollinaca, 2021
9+
#
10+
#, fuzzy
11+
msgid ""
12+
msgstr ""
13+
"Project-Id-Version: Python 3.10\n"
14+
"Report-Msgid-Bugs-To: \n"
15+
"POT-Creation-Date: 2021-07-29 13:22+0000\n"
16+
"PO-Revision-Date: 2021-07-29 13:25+0000\n"
17+
"Last-Translator: mollinaca, 2021\n"
18+
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
19+
"MIME-Version: 1.0\n"
20+
"Content-Type: text/plain; charset=UTF-8\n"
21+
"Content-Transfer-Encoding: 8bit\n"
22+
"Language: ja\n"
23+
"Plural-Forms: nplurals=1; plural=0;\n"
24+
25+
#: ../../c-api/objbuffer.rst:4
26+
msgid "Old Buffer Protocol"
27+
msgstr "古いバッファプロトコル"
28+
29+
#: ../../c-api/objbuffer.rst:8
30+
msgid ""
31+
"These functions were part of the \"old buffer protocol\" API in Python 2. In"
32+
" Python 3, this protocol doesn't exist anymore but the functions are still "
33+
"exposed to ease porting 2.x code. They act as a compatibility wrapper "
34+
"around the :ref:`new buffer protocol <bufferobjects>`, but they don't give "
35+
"you control over the lifetime of the resources acquired when a buffer is "
36+
"exported."
37+
msgstr ""
38+
"これらの関数は、 Python 2 の「古いバッファプロトコル」 API の一部です。 Python 3 では、もうこのプロトコルは存在しませんが、 "
39+
"2.x のコードを移植しやすいように関数は公開されています。 :ref:`新しいバッファプロトコル <bufferobjects>` "
40+
"と互換性のあるラッパー関数のように振る舞いますが、バッファがエクスポートされるときに取得されるリソースの生存期間を管理することはできません。"
41+
42+
#: ../../c-api/objbuffer.rst:15
43+
msgid ""
44+
"Therefore, it is recommended that you call :c:func:`PyObject_GetBuffer` (or "
45+
"the ``y*`` or ``w*`` :ref:`format codes <arg-parsing>` with the "
46+
":c:func:`PyArg_ParseTuple` family of functions) to get a buffer view over an"
47+
" object, and :c:func:`PyBuffer_Release` when the buffer view can be "
48+
"released."
49+
msgstr ""
50+
"従って、あるオブジェクトのバッファビューを取得するために、 :c:func:`PyObject_GetBuffer` (もしくは ``y*`` および "
51+
"``w*`` :ref:`フォーマットコード <arg-parsing>` で :c:func:`PyArg_ParseTuple` やその仲間) "
52+
"を呼び出し、バッファビューを解放するときには :c:func:`PyBuffer_Release` を呼び出します。"
53+
54+
#: ../../c-api/objbuffer.rst:23
55+
msgid ""
56+
"Returns a pointer to a read-only memory location usable as character-based "
57+
"input. The *obj* argument must support the single-segment character buffer "
58+
"interface. On success, returns ``0``, sets *buffer* to the memory location "
59+
"and *buffer_len* to the buffer length. Returns ``-1`` and sets a "
60+
":exc:`TypeError` on error."
61+
msgstr ""
62+
"文字ベースの入力として使える読み出し専用メモリ上の位置へのポインタを返します。 *obj* "
63+
"引数は単一セグメントからなる文字バッファインターフェースをサポートしていなければなりません。成功すると ``0`` を返し、 *buffer* "
64+
"をメモリの位置に、 *buffer_len* をバッファの長さに設定します。エラーの際には ``-1`` を返し、 :exc:`TypeError`"
65+
" をセットします。"
66+
67+
#: ../../c-api/objbuffer.rst:32
68+
msgid ""
69+
"Returns a pointer to a read-only memory location containing arbitrary data. "
70+
"The *obj* argument must support the single-segment readable buffer "
71+
"interface. On success, returns ``0``, sets *buffer* to the memory location "
72+
"and *buffer_len* to the buffer length. Returns ``-1`` and sets a "
73+
":exc:`TypeError` on error."
74+
msgstr ""
75+
"任意のデータを収めた読み出し専用のメモリ上の位置へのポインタを返します。 *obj* "
76+
"引数は単一セグメントからなる読み出し可能バッファインターフェースをサポートしていなければなりません。成功すると ``0`` を返し、 *buffer* "
77+
"をメモリの位置に、 *buffer_len* をバッファの長さに設定します。エラーの際には ``-1`` を返し、 :exc:`TypeError`"
78+
" をセットします。"
79+
80+
#: ../../c-api/objbuffer.rst:41
81+
msgid ""
82+
"Returns ``1`` if *o* supports the single-segment readable buffer interface. "
83+
"Otherwise returns ``0``. This function always succeeds."
84+
msgstr ""
85+
"*o* が単一セグメントからなる読み出し可能バッファインターフェースをサポートしている場合に ``1`` を返します。それ以外の場合には ``0`` を返します。\n"
86+
"この関数は常に成功します。"
87+
88+
#: ../../c-api/objbuffer.rst:44
89+
msgid ""
90+
"Note that this function tries to get and release a buffer, and exceptions "
91+
"which occur while calling corresponding functions will get suppressed. To "
92+
"get error reporting use :c:func:`PyObject_GetBuffer()` instead."
93+
msgstr ""
94+
"この関数は試しにバッファの取得と解放を行い、それぞれ対応する関数の呼び出し中に起こる例外は抑制されることに注意してください。\n"
95+
"エラーを報告させるには、 :c:func:`PyObject_GetBuffer()` を代わりに使ってください。"
96+
97+
#: ../../c-api/objbuffer.rst:51
98+
msgid ""
99+
"Returns a pointer to a writable memory location. The *obj* argument must "
100+
"support the single-segment, character buffer interface. On success, returns"
101+
" ``0``, sets *buffer* to the memory location and *buffer_len* to the buffer "
102+
"length. Returns ``-1`` and sets a :exc:`TypeError` on error."
103+
msgstr ""
104+
"書き込み可能なメモリ上の位置へのポインタを返します。 *obj* "
105+
"引数は単一セグメントからなる文字バッファインターフェースをサポートしていなければなりません。成功すると ``0`` を返し、 *buffer* "
106+
"をメモリの位置に、 *buffer_len* をバッファの長さに設定します。エラーの際には ``-1`` を返し、 :exc:`TypeError` "
107+
"をセットします。"

library/concurrent.futures.po

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.10\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-06-29 12:56+0000\n"
16+
"POT-Creation-Date: 2021-07-29 13:22+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:57+0000\n"
1818
"Last-Translator: mollinaca, 2021\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -400,8 +400,9 @@ msgid ""
400400
msgstr "future が完了する前にキャンセルされた場合 :exc:`CancelledError` が送出されます。"
401401

402402
#: ../../library/concurrent.futures.rst:353
403-
msgid "If the call raised, this method will raise the same exception."
404-
msgstr "呼び出しが例外を送出した場合、このメソッドは同じ例外を送出します。"
403+
msgid ""
404+
"If the call raised an exception, this method will raise the same exception."
405+
msgstr ""
405406

406407
#: ../../library/concurrent.futures.rst:357
407408
msgid ""

library/hashlib.po

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2021-07-27 13:07+0000\n"
14+
"POT-Creation-Date: 2021-07-29 13:22+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
1616
"Last-Translator: tomo, 2021\n"
1717
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -556,10 +556,6 @@ msgid ""
556556
"(`False` for sequential mode)."
557557
msgstr ""
558558

559-
#: ../../library/hashlib.rstNone
560-
msgid "Explanation of tree mode parameters."
561-
msgstr ""
562-
563559
#: ../../library/hashlib.rst:394
564560
msgid ""
565561
"See section 2.10 in `BLAKE2 specification "

library/sqlite3.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.10\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2021-07-15 12:58+0000\n"
16+
"POT-Creation-Date: 2021-07-29 13:22+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
1818
"Last-Translator: tomo, 2021\n"
1919
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -204,7 +204,7 @@ msgid ""
204204
":attr:`Cursor.description` does not include the type, i. e. if you use "
205205
"something like ``'as \"Expiration date [datetime]\"'`` in your SQL, then we "
206206
"will parse out everything until the first ``'['`` for the column name and "
207-
"strip the preceeding space: the column name would simply be \"Expiration "
207+
"strip the preceding space: the column name would simply be \"Expiration "
208208
"date\"."
209209
msgstr ""
210210

library/stdtypes.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.10\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2021-07-27 13:07+0000\n"
18+
"POT-Creation-Date: 2021-07-29 13:22+0000\n"
1919
"PO-Revision-Date: 2021-06-28 01:13+0000\n"
2020
"Last-Translator: Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2021\n"
2121
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -1690,8 +1690,8 @@ msgid ""
16901690
msgstr "*s* の *i* で与えられたインデックスに *x* を挿入します。 (``s[i:i] = [x]`` と同じ)"
16911691

16921692
#: ../../library/stdtypes.rst:1115
1693-
msgid "``s.pop([i])``"
1694-
msgstr "``s.pop([i])``"
1693+
msgid "``s.pop()`` or ``s.pop(i)``"
1694+
msgstr ""
16951695

16961696
#: ../../library/stdtypes.rst:1115
16971697
msgid "retrieves the item at *i* and also removes it from *s*"

0 commit comments

Comments
 (0)