Skip to content

Commit d7cad29

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent ea4baaa commit d7cad29

Some content is hidden

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

46 files changed

+1423
-154
lines changed

library/abc.po

+15-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# tomo, 2021
88
# mollinaca, 2021
99
# Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2022
10+
# Arihiro TAKASE, 2023
1011
#
1112
#, fuzzy
1213
msgid ""
1314
msgstr ""
1415
"Project-Id-Version: Python 3.11\n"
1516
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-05-08 19:31+0000\n"
17+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1718
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
18-
"Last-Translator: Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2022\n"
19+
"Last-Translator: Arihiro TAKASE, 2023\n"
1920
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2021
"ja/)\n"
2122
"MIME-Version: 1.0\n"
@@ -53,6 +54,12 @@ msgid ""
5354
"class or instance provides a particular interface, for example, if it is :"
5455
"term:`hashable` or if it is a mapping."
5556
msgstr ""
57+
":mod:`collections.abc` サブモジュールには ABC から派生した具象クラスがいくつ"
58+
"かあります。\n"
59+
"もちろん、このクラスから、さらに派生させることもできます。\n"
60+
"また :mod:`collections.abs` サブモジュールにはいくつかの ABC もあって、あるク"
61+
"ラスやインスタンスが特定のインターフェースを提供しているかどうか、たとえば、:"
62+
"term:ハッシュ可能 <`hashable>` なのかやマッピングなのか、をテストできます。"
5663

5764
#: ../../library/abc.rst:27
5865
msgid ""
@@ -252,6 +259,12 @@ msgid ""
252259
"\"virtual subclasses\" registered with the ABC's :meth:`register` method are "
253260
"not affected."
254261
msgstr ""
262+
"クラスに動的に抽象メソッドを追加する、あるいはメソッドやクラスが作られた後か"
263+
"ら抽象的かどうかの状態を変更しようと試みることは、:func:"
264+
"`update_abstractmethods` 関数を使ってのみサポートされます。 :func:"
265+
"`abstractmethod` が影響を与えるのは正規の継承により派生したサブクラスのみで、"
266+
"ABC の :meth:`register` メソッドで登録された \"仮想的サブクラス\" は影響され"
267+
"ません。"
255268

256269
#: ../../library/abc.rst:183
257270
msgid ""

library/ast.po

+31-3
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@
66
# Translators:
77
# tomo, 2021
88
# Yusuke Miyazaki <miyazaki.dev@gmail.com>, 2022
9-
# Arihiro TAKASE, 2023
109
# Takeshi Nakazato, 2023
10+
# Arihiro TAKASE, 2023
1111
#
1212
#, fuzzy
1313
msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.11\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-05-12 14:12+0000\n"
17+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
19-
"Last-Translator: Takeshi Nakazato, 2023\n"
19+
"Last-Translator: Arihiro TAKASE, 2023\n"
2020
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2121
"ja/)\n"
2222
"MIME-Version: 1.0\n"
@@ -80,6 +80,10 @@ msgid ""
8080
"`above <abstract-grammar>`. They are defined in the :mod:`_ast` C module "
8181
"and re-exported in :mod:`ast`."
8282
msgstr ""
83+
"このクラスは全ての AST ノード・クラスの基底です。実際のノード・クラスは :ref:"
84+
"`先に <abstract-grammar>` 示した :file:`Parser/Python.asdl` ファイルから派生"
85+
"したものです。これらのクラスは :mod:`_ast` C モジュールで定義され、 :mod:"
86+
"`ast` にもエクスポートし直されています。"
8387

8488
#: ../../library/ast.rst:51
8589
msgid ""
@@ -143,6 +147,13 @@ msgid ""
143147
"the node. The UTF-8 offset is recorded because the parser uses UTF-8 "
144148
"internally."
145149
msgstr ""
150+
":class:`ast.expr` や :class:`ast.stmt` のサブクラスのインスタンスは :attr:"
151+
"`lineno`, :attr:`col_offset`, :attr:`end_lineno`, および :attr:"
152+
"`end_col_offset` 属性を持ちます。 :attr:`lineno` と :attr:`end_lineno` はソー"
153+
"ステキストの範囲を最初と最後の行番号で表し (1 から数え始めるので、最初の行の"
154+
"行番号は 1 となります)、 :attr:`col_offset` と :attr:`end_col_offset` はノー"
155+
"ドが生成した最初と最後のトークンの UTF-8 バイトオフセットです。 UTF-8 オフ"
156+
"セットはパーサが内部で使用するので記録されます。"
146157

147158
#: ../../library/ast.rst:91
148159
msgid ""
@@ -650,6 +661,8 @@ msgid ""
650661
"The ``target`` attribute cannot be of class :class:`Tuple` or :class:`List`, "
651662
"unlike the targets of :class:`Assign`."
652663
msgstr ""
664+
":class:`Assign` と異なり、 ``target`` 属性は class :class:`Tuple` や :class:"
665+
"`List` であってはいけません。"
653666

654667
#: ../../library/ast.rst:858
655668
msgid ""
@@ -1085,6 +1098,9 @@ msgid ""
10851098
"'metaclass'. Other keywords will be passed to the metaclass, as per "
10861099
"`PEP-3115 <https://peps.python.org/pep-3115/>`_."
10871100
msgstr ""
1101+
"``keywords`` は :class:`keyword` ノードのリストで、主に 'metaclass' の指定の"
1102+
"ために使います。その他のキーワードは `PEP-3115 <https://peps.python.org/"
1103+
"pep-3115/>`_ に従ってメタクラスに渡されます。"
10881104

10891105
#: ../../library/ast.rst:1830
10901106
msgid ""
@@ -1288,13 +1304,20 @@ msgid ""
12881304
"following Python literal structures: strings, bytes, numbers, tuples, lists, "
12891305
"dicts, sets, booleans, ``None`` and ``Ellipsis``."
12901306
msgstr ""
1307+
"Python のリテラルやコンテナ表現のみを含む式ノードまたは文字列を評価します。与"
1308+
"えられる文字列またはノードは次の Python リテラル構造のみからなるものに限られ"
1309+
"ます: 文字列、バイト列、数、タプル、リスト、辞書、集合、ブール値、``None``、"
1310+
"``Ellipsis``。"
12911311

12921312
#: ../../library/ast.rst:1998
12931313
msgid ""
12941314
"This can be used for evaluating strings containing Python values without the "
12951315
"need to parse the values oneself. It is not capable of evaluating "
12961316
"arbitrarily complex expressions, for example involving operators or indexing."
12971317
msgstr ""
1318+
"この関数は Python の式を含んだ文字列を、値自身を解析することなしに評価するの"
1319+
"に使えます。この関数は、例えば演算や添え字を含んだ任意の複雑な表現を評価する"
1320+
"のには使えません。"
12981321

12991322
#: ../../library/ast.rst:2003
13001323
msgid ""
@@ -1313,6 +1336,8 @@ msgid ""
13131336
"It is possible to crash the Python interpreter due to stack depth "
13141337
"limitations in Python's AST compiler."
13151338
msgstr ""
1339+
"Python の抽象構文木コンパイラのスタックの深さの限界を越えることで、 Python イ"
1340+
"ンタプリタをクラッシュさせる可能性があります。"
13161341

13171342
#: ../../library/ast.rst:2016
13181343
msgid ""
@@ -1700,6 +1725,9 @@ msgid ""
17001725
"token-based and parse-tree-based views of python programs by inserting two-"
17011726
"way links between tokens and ast nodes."
17021727
msgstr ""
1728+
"`leoAst.py <https://leoeditor.com/appendices.html#leoast-py>`_ は ast ノード"
1729+
"とトークンの間の双方向リンクを挿入することにより、Python プログラムに対する"
1730+
"トークンベースの視点と構文木ベースの視点を統合します。"
17031731

17041732
#: ../../library/ast.rst:2283
17051733
msgid ""

library/bdb.po

+27-4
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# tomo, 2021
8+
# Arihiro TAKASE, 2023
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.11\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-04-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1516
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
16-
"Last-Translator: tomo, 2021\n"
17+
"Last-Translator: Arihiro TAKASE, 2023\n"
1718
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1819
"ja/)\n"
1920
"MIME-Version: 1.0\n"
@@ -79,6 +80,11 @@ msgid ""
7980
"executed. A :attr:`conditional <cond>` breakpoint always counts a :attr:"
8081
"`hit <hits>`."
8182
msgstr ""
83+
"ブレークポイントを作るとき、関連付けられる :attr:`ファイル名 <file>` は正規化"
84+
"されていなければなりません。:attr:`funcname` が定義されると、ブレークポイント"
85+
"の :attr:`ヒット <hits>` はその関数の最初の行が実行されたときにカウントされま"
86+
"す。:attr:`条件付き <cond>` ブレークポイントは毎回 :attr:`ヒット <hits>` をカ"
87+
"ウントします。"
8288

8389
#: ../../library/bdb.rst:39
8490
msgid ":class:`Breakpoint` instances have the following methods:"
@@ -142,7 +148,7 @@ msgstr ""
142148

143149
#: ../../library/bdb.rst:77
144150
msgid ":class:`Breakpoint` instances have the following attributes:"
145-
msgstr ""
151+
msgstr ":class:`Breakpoint` インスタンスは以下の属性を持ちます:"
146152

147153
#: ../../library/bdb.rst:81
148154
msgid "File name of the :class:`Breakpoint`."
@@ -422,17 +428,23 @@ msgid ""
422428
"Called from :meth:`dispatch_line` when either :meth:`stop_here` or :meth:"
423429
"`break_here` returns ``True``."
424430
msgstr ""
431+
":meth:`stop_here` か :meth:`break_here` が ``True`` を返したときに、 :meth:"
432+
"`dispatch_line` から呼び出されます。"
425433

426434
#: ../../library/bdb.rst:250
427435
msgid ""
428436
"Called from :meth:`dispatch_return` when :meth:`stop_here` returns ``True``."
429437
msgstr ""
438+
":meth:`stop_here` が ``True`` を返したときに、 :meth:`dispatch_return` から呼"
439+
"び出されます。"
430440

431441
#: ../../library/bdb.rst:254
432442
msgid ""
433443
"Called from :meth:`dispatch_exception` when :meth:`stop_here` returns "
434444
"``True``."
435445
msgstr ""
446+
":meth:`stop_here` が ``True`` を返したときに、 :meth:`dispatch_exception` か"
447+
"ら呼び出されます。"
436448

437449
#: ../../library/bdb.rst:259
438450
msgid "Handle how a breakpoint must be removed when it is a temporary one."
@@ -470,6 +482,8 @@ msgid ""
470482
"Stop when the line with the *lineno* greater than the current one is reached "
471483
"or when returning from current frame."
472484
msgstr ""
485+
"現在の行番号よりも大きい *lineno* に到達したとき、あるいは、現在のフレームか"
486+
"ら戻るときにストップします。"
473487

474488
#: ../../library/bdb.rst:286
475489
msgid ""
@@ -521,6 +535,8 @@ msgid ""
521535
"Delete the breakpoints in *filename* and *lineno*. If none were set, return "
522536
"an error message."
523537
msgstr ""
538+
"*filename* の *lineno* 行にあるブレークポイントを削除します。もしブレークポイ"
539+
"ントが無かった場合、エラーメッセージを返します。"
524540

525541
#: ../../library/bdb.rst:317
526542
msgid ""
@@ -537,11 +553,15 @@ msgid ""
537553
"Delete all breakpoints in *filename*. If none were set, return an error "
538554
"message."
539555
msgstr ""
556+
"*filename* にあるすべてのブレークポイントを削除します。もしブレークポイントが"
557+
"無かった場合、エラーメッセージを返します。"
540558

541559
#: ../../library/bdb.rst:328
542560
msgid ""
543561
"Delete all existing breakpoints. If none were set, return an error message."
544562
msgstr ""
563+
"存在するすべてのブレークポイントを削除します。もしブレークポイントが無かった"
564+
"場合、エラーメッセージを返します。"
545565

546566
#: ../../library/bdb.rst:333
547567
msgid ""
@@ -557,6 +577,7 @@ msgstr ""
557577
#: ../../library/bdb.rst:342
558578
msgid "Return True if there is a breakpoint for *lineno* in *filename*."
559579
msgstr ""
580+
"*filename* の *lineno* にブレークポイントが存在するかどうかを返します。"
560581

561582
#: ../../library/bdb.rst:346
562583
msgid ""
@@ -606,7 +627,7 @@ msgstr ""
606627

607628
#: ../../library/bdb.rst:374
608629
msgid "The function name or ``\"<lambda>\"``."
609-
msgstr ""
630+
msgstr "関数名もしくは ``\"<lambda>\"``。"
610631

611632
#: ../../library/bdb.rst:375
612633
msgid "The input arguments."
@@ -662,6 +683,8 @@ msgid ""
662683
"Return True if we should break here, depending on the way the :class:"
663684
"`Breakpoint` *b* was set."
664685
msgstr ""
686+
":class:`Breakpoint` *b* が設定された方法に依存する方法で、この場所でブレーク"
687+
"する必要があれば真を返します。"
665688

666689
#: ../../library/bdb.rst:409
667690
msgid ""

library/cmd.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Takeshi Nakazato, 2023
9+
# Arihiro TAKASE, 2023
910
#
1011
#, fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version: Python 3.11\n"
1415
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-05-12 14:12+0000\n"
16+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
17-
"Last-Translator: Takeshi Nakazato, 2023\n"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
1819
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -447,4 +448,4 @@ msgstr ""
447448

448449
#: ../../library/cmd.rst:64
449450
msgid "! (exclamation)"
450-
msgstr ""
451+
msgstr "! (エクスクラメーション)"

library/codeop.po

+21-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,16 @@
55
#
66
# Translators:
77
# tomo, 2021
8+
# Arihiro TAKASE, 2023
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.11\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-05-08 19:31+0000\n"
15+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1516
"PO-Revision-Date: 2021-06-28 00:56+0000\n"
16-
"Last-Translator: tomo, 2021\n"
17+
"Last-Translator: Arihiro TAKASE, 2023\n"
1718
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1819
"ja/)\n"
1920
"MIME-Version: 1.0\n"
@@ -52,12 +53,16 @@ msgid ""
5253
"Being able to tell if a line of input completes a Python statement: in "
5354
"short, telling whether to print '``>>>``' or '``...``' next."
5455
msgstr ""
56+
"入力の一行がPythonの文として完全であるかどうかを見分けられること: 簡単に言え"
57+
"ば、次が '``>>>``' か、あるいは '``...``' かどうかを見分けます。"
5558

5659
#: ../../library/codeop.rst:25
5760
msgid ""
5861
"Remembering which future statements the user has entered, so subsequent "
5962
"input can be compiled with these in effect."
6063
msgstr ""
64+
"どのfuture文をユーザが入力したのかを覚えていること。したがって、実質的にそれ"
65+
"に続く入力をこれらとともにコンパイルすることができます。"
6166

6267
#: ../../library/codeop.rst:28
6368
msgid ""
@@ -79,6 +84,11 @@ msgid ""
7984
"``'<input>'``. Returns ``None`` if *source* is *not* valid Python code, but "
8085
"is a prefix of valid Python code."
8186
msgstr ""
87+
"Pythonコードの文字列であるべき *source* をコンパイルしてみて、*source* が有効"
88+
"なPythonコードの場合はコードオブジェクトを返します。このような場合、コードオ"
89+
"ブジェクトのファイル名属性は、デフォルトで ``'<input>'`` である *filename* で"
90+
"しょう。*source* が有効なPythonコードでは *ない* が、有効なPythonコードの接頭"
91+
"語である場合には、``None`` を返します。"
8292

8393
#: ../../library/codeop.rst:41
8494
msgid ""
@@ -97,6 +107,10 @@ msgid ""
97107
"or as an :term:`expression` (``'eval'``). Any other value will cause :exc:"
98108
"`ValueError` to be raised."
99109
msgstr ""
110+
"*symbol* 引数は *source* が文としてコンパイルされるか(``'single'`` 、デフォル"
111+
"ト) 、:term:`文 <statement>` のシーケンスとしてか (``'exec'``) 、または :"
112+
"term:`式 <expression>` としてコンパイルされるかを決定します(``'eval'``)。他の"
113+
"どんな値も :exc:`ValueError` を送出させます。"
100114

101115
#: ../../library/codeop.rst:52
102116
msgid ""
@@ -133,3 +147,8 @@ msgid ""
133147
"'remembers' and compiles all subsequent program texts with the statement in "
134148
"force."
135149
msgstr ""
150+
"このクラスのインスタンスは :func:`compile_command` とシグネチャが一致する :"
151+
"meth:`__call__` メソッドを持っています。インスタンスが :mod:`__future__` 文を"
152+
"含むプログラムテキストをコンパイルする場合に、インスタンスは有効なその文とと"
153+
"もにそれに続くすべてのプログラムテキストを'覚えていて'コンパイルするという違"
154+
"いがあります。"

library/curses.ascii.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.11\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-05-08 19:31+0000\n"
15+
"POT-Creation-Date: 2023-05-19 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:03+0000\n"
1717
"Last-Translator: Arihiro TAKASE, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -380,4 +380,4 @@ msgstr ""
380380

381381
#: ../../library/curses.ascii.rst:212
382382
msgid "! (exclamation)"
383-
msgstr ""
383+
msgstr "! (エクスクラメーション)"

0 commit comments

Comments
 (0)