Skip to content

Commit f7152a1

Browse files
author
Autobuild bot on TravisCI
committed
[skip ci] Update .po files
1 parent 88f63a7 commit f7152a1

File tree

3 files changed

+21
-5
lines changed

3 files changed

+21
-5
lines changed

library/collections.abc.po

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
# Arihiro TAKASE, 2017
1111
# E. Kawashima, 2017
1212
# Nakamura Masahito <randomstep@gmail.com>, 2018
13-
# tomo, 2018
1413
# mollinaca, 2020
1514
# Takanori Suzuki <takanori@takanory.net>, 2021
15+
# tomo, 2021
1616
#
1717
#, fuzzy
1818
msgid ""
@@ -21,7 +21,7 @@ msgstr ""
2121
"Report-Msgid-Bugs-To: \n"
2222
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2323
"PO-Revision-Date: 2017-02-16 23:03+0000\n"
24-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
24+
"Last-Translator: tomo, 2021\n"
2525
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2626
"MIME-Version: 1.0\n"
2727
"Content-Type: text/plain; charset=UTF-8\n"
@@ -556,6 +556,12 @@ msgid ""
556556
" a classmethod or regular method that can construct new instances from an "
557557
"iterable argument."
558558
msgstr ""
559+
"幾つかの set の操作は新しい set を作るので、デフォルトの mixin メソッドは iterable "
560+
"から新しいインスタンスを作成する方法を必要とします。クラスのコンストラクタは ``ClassName(iterable)`` "
561+
"の形のシグネチャを持つと仮定されます。内部の :meth:`_from_iterable` というクラスメソッドが ``cls(iterable)`` "
562+
"を呼び出して新しい set を作る部分でこの仮定が使われています。コンストラクタのシグネチャが異なるクラスで :class:`Set` を使う場合は、 "
563+
"iterable 引数から新しいインスタンスを生成できるクラスメソッドあるいは仕様に沿ったメソッドで :meth:`_from_iterable` "
564+
"をオーバーライドする必要があります。"
559565

560566
#: ../../library/collections.abc.rst:298
561567
msgid ""

library/numbers.po

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
# Shun Sakurai, 2017
1010
# Arihiro TAKASE, 2017
1111
# Takanori Suzuki <takanori@takanory.net>, 2021
12+
# tomo, 2021
1213
#
1314
#, fuzzy
1415
msgid ""
@@ -17,7 +18,7 @@ msgstr ""
1718
"Report-Msgid-Bugs-To: \n"
1819
"POT-Creation-Date: 2021-05-16 06:22+0000\n"
1920
"PO-Revision-Date: 2017-02-16 23:20+0000\n"
20-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
21+
"Last-Translator: tomo, 2021\n"
2122
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2223
"MIME-Version: 1.0\n"
2324
"Content-Type: text/plain; charset=UTF-8\n"
@@ -40,6 +41,8 @@ msgid ""
4041
"define more operations. None of the types defined in this module are "
4142
"intended to be instantiated."
4243
msgstr ""
44+
":mod:`numbers` モジュール (:pep:`3141`) は数の :term:`抽象基底クラス <abstract base class>`"
45+
" の階層を定義します。この階層では、さらに多くの演算が順番に定義されます。このモジュールで定義される型はどれもインスタンス化を想定していません。"
4346

4447
#: ../../library/numbers.rst:18
4548
msgid ""

library/tarfile.po

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
1212
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2017
1313
# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2017
1414
# Osamu NAKAMURA, 2017
15-
# tomo, 2020
1615
# Takanori Suzuki <takanori@takanory.net>, 2021
16+
# tomo, 2021
1717
#
1818
#, fuzzy
1919
msgid ""
@@ -22,7 +22,7 @@ msgstr ""
2222
"Report-Msgid-Bugs-To: \n"
2323
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
2424
"PO-Revision-Date: 2017-02-16 23:29+0000\n"
25-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2021\n"
25+
"Last-Translator: tomo, 2021\n"
2626
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/ja/)\n"
2727
"MIME-Version: 1.0\n"
2828
"Content-Type: text/plain; charset=UTF-8\n"
@@ -598,6 +598,8 @@ msgid ""
598598
"that are defined at module level. When reading, format will be automatically"
599599
" detected, even if different formats are present in a single archive."
600600
msgstr ""
601+
"*format* はアーカイブの書き込みフォーマットを制御します。モジュールレベルで定義されている、:const:`USTAR_FORMAT`、:const:`GNU_FORMAT`、あるいは :const:`PAX_FORMAT` のいずれかである必要があります。\n"
602+
"読み出しのときは、1 つのアーカイブに異なるフォーマットが混在していたとしても、フォーマットは自動的に検知されます。"
601603

602604
#: ../../library/tarfile.rst:302
603605
msgid ""
@@ -808,6 +810,11 @@ msgid ""
808810
"existing members, :const:`None` is returned. If *member* does not appear in "
809811
"the archive, :exc:`KeyError` is raised."
810812
msgstr ""
813+
"アーカイブからメンバーをファイルオブジェクトとして抽出します。\n"
814+
"*member* はファイル名でも :class:`TarInfo` オブジェクトでも構いません。*member* が一般ファイルまたはリンクの場合、:class:`io.BufferedReader` オブジェクトが返されます。\n"
815+
"存在するそれ以外のメンバーでは、 :const:`None` が返されます。\n"
816+
"それ以外の場合、:const:`None` が返されます。\n"
817+
"アーカイブに *member* が存在しない場合は :exc:`KeyError` が送出されます。"
811818

812819
#: ../../library/tarfile.rst:454
813820
msgid "Return an :class:`io.BufferedReader` object."

0 commit comments

Comments
 (0)