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

Commite7ebb80

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent2075212 commite7ebb80

File tree

4 files changed

+5365
-5366
lines changed

4 files changed

+5365
-5366
lines changed

‎library/functions.po

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Naoki Nakamura <agent@sohzoh.com>, 2020
87
# tomo, 2020
8+
# Naoki Nakamura <agent@sohzoh.com>, 2020
99
#
1010
#,fuzzy
1111
msgid ""
@@ -14,7 +14,7 @@ msgstr ""
1414
"Report-Msgid-Bugs-To:\n"
1515
"POT-Creation-Date:2020-04-10 22:51+0000\n"
1616
"PO-Revision-Date:2019-09-01 03:31+0000\n"
17-
"Last-Translator:tomo, 2020\n"
17+
"Last-Translator:Naoki Nakamura <agent@sohzoh.com>, 2020\n"
1818
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
1919
"MIME-Version:1.0\n"
2020
"Content-Type:text/plain; charset=UTF-8\n"
@@ -1340,6 +1340,10 @@ msgid ""
13401340
"an instance of any of the types. If *classinfo* is not a type or tuple of "
13411341
"types and such tuples, a :exc:`TypeError` exception is raised."
13421342
msgstr""
1343+
"*object* 引数が *classinfo* 引数のインスタンスであるか、 (直接、間接、または :term:`仮想 <abstract base class>`) サブクラスのインスタンスの場合に ``True`` を返します。\n"
1344+
"*object* が与えられた型のオブジェクトでない場合、この関数は常に ``False`` を返します。\n"
1345+
"*classinfo* が型オブジェクトのタプル (あるいは再帰的に複数のタプル) の場合、 *object* がそれらのいずれかのインスタンスであれば ``True`` を返します。\n"
1346+
"*classinfo* が型や型からなるタプル、あるいは複数のタプルのいずれでもない場合、 :exc:`TypeError` 例外が送出されます。"
13431347

13441348
#:../../library/functions.rst:792
13451349
msgid""
@@ -1349,6 +1353,10 @@ msgid ""
13491353
"entry in *classinfo* will be checked. In any other case, a :exc:`TypeError` "
13501354
"exception is raised."
13511355
msgstr""
1356+
"*class* が *classinfo* の (直接または間接的な、あるいは :term:`virtual <abstract base "
1357+
"class>`) サブクラスである場合に ``True`` を返します。クラスはそれ自身のサブクラスとみなされます。 *classinfo* "
1358+
"はクラスオブジェクトからなるタプルでもよく、この場合には *classinfo* のすべてのエントリが調べられます。その他の場合では、例外 "
1359+
":exc:`TypeError` が送出されます。"
13521360

13531361
#:../../library/functions.rst:801
13541362
msgid""

‎library/select.po

Lines changed: 4 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version:Python 3.7\n"
1313
"Report-Msgid-Bugs-To:\n"
14-
"POT-Creation-Date:2020-04-10 22:51+0000\n"
14+
"POT-Creation-Date:2020-05-26 14:02+0000\n"
1515
"PO-Revision-Date:2019-09-01 03:12+0000\n"
1616
"Last-Translator:tomo, 2019\n"
1717
"Language-Team:Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
@@ -181,13 +181,10 @@ msgstr ""
181181
#:../../library/select.rst:119
182182
msgid""
183183
"This is a straightforward interface to the Unix :c:func:`select` system "
184-
"call. The first three arguments aresequences of 'waitable objects': either "
184+
"call. The first three arguments areiterables of 'waitable objects': either "
185185
"integers representing file descriptors or objects with a parameterless "
186186
"method named :meth:`~io.IOBase.fileno` returning such an integer:"
187187
msgstr""
188-
"Unix の :c:func:`select` システムコールに対する直接的なインタフェースです。最初の 3 つの引数は '待機可能オブジェクト' "
189-
"からなるシーケンスです: 待機可能オブジェクトとは、ファイル記述子を表す整数値か、そのような整数を返す引数なしメソッド "
190-
":meth:`~io.IOBase.fileno` を持つオブジェクトです。"
191188

192189
#:../../library/select.rst:124
193190
msgid"*rlist*: wait until ready for reading"
@@ -207,18 +204,13 @@ msgstr ""
207204

208205
#:../../library/select.rst:129
209206
msgid""
210-
"Emptysequences are allowed, but acceptance of three emptysequences is "
207+
"Emptyiterables are allowed, but acceptance of three emptyiterables is "
211208
"platform-dependent. (It is known to work on Unix but not on Windows.) The "
212209
"optional *timeout* argument specifies a time-out as a floating point number "
213210
"in seconds. When the *timeout* argument is omitted the function blocks "
214211
"until at least one file descriptor is ready. A time-out value of zero "
215212
"specifies a poll and never blocks."
216213
msgstr""
217-
"引数に空のシーケンスを指定してもかまいませんが、3 つの引数全てを空のシーケンスにしてもよいかどうかはプラットフォームに依存します (Unix "
218-
"では動作し、Windows では動作しないことが知られています)。オプションの *timeout* "
219-
"引数にはタイムアウトまでの秒数を浮動小数点数で指定します。*timeout* "
220-
"引数が省略された場合、関数は少なくとも一つのファイル記述子が何らかの準備完了状態になるまでブロックします。*timeout* に 0 "
221-
"を指定した場合は、ポーリングを行いブロックしないことを示します。"
222214

223215
#:../../library/select.rst:136
224216
msgid""
@@ -231,18 +223,13 @@ msgstr ""
231223

232224
#:../../library/select.rst:144
233225
msgid""
234-
"Among the acceptable object types in thesequences are Python :term:`file "
226+
"Among the acceptable object types in theiterables are Python :term:`file "
235227
"objects <file object>` (e.g. ``sys.stdin``, or objects returned by "
236228
":func:`open` or :func:`os.popen`), socket objects returned by "
237229
":func:`socket.socket`. You may also define a :dfn:`wrapper` class yourself,"
238230
" as long as it has an appropriate :meth:`~io.IOBase.fileno` method (that "
239231
"really returns a file descriptor, not just a random integer)."
240232
msgstr""
241-
"シーケンスの中に含めることのできるオブジェクトは Python :term:`ファイルオブジェクト <file object>` (例えば "
242-
"``sys.stdin`` や、 :func:`open` または :func:`os.popen` が返すオブジェクト)、 "
243-
":func:`socket.socket` が返すソケットオブジェクトです。 :dfn:`ラッパー <wrapper>` "
244-
"クラスを自分で定義することもできます。この場合、適切な (まったくデタラメな数ではなく本物のファイル記述子を返す) "
245-
":meth:`~io.IOBase.fileno` メソッドを持つ必要があります。"
246233

247234
#:../../library/select.rst:155
248235
msgid""

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp