Skip to content

Commit a3bdd72

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 1d12624 commit a3bdd72

16 files changed

+121
-79
lines changed

howto/enum.po

+5-4
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# tomo, 2021
88
# 渋川よしき <yoshiki@shibu.jp>, 2021
99
# Takanori Suzuki <takanori@takanory.net>, 2023
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-03-17 14:14+0000\n"
17+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1718
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
18-
"Last-Translator: Takanori Suzuki <takanori@takanory.net>, 2023\n"
19+
"Last-Translator: Arihiro TAKASE, 2023\n"
1920
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
2021
"ja/)\n"
2122
"MIME-Version: 1.0\n"
@@ -216,7 +217,7 @@ msgstr ""
216217

217218
#: ../../howto/enum.rst:250
218219
msgid "Ensuring unique enumeration values"
219-
msgstr "番号付けの値が同一であることの確認"
220+
msgstr "番号付けの値が一意であることの確認"
220221

221222
#: ../../howto/enum.rst:252
222223
msgid ""
@@ -848,7 +849,7 @@ msgstr ""
848849

849850
#: ../../howto/enum.rst:849
850851
msgid "When to use :meth:`__new__` vs. :meth:`__init__`"
851-
msgstr ":meth:`__init__` と :meth:`__init__` のどちらを使うべきか"
852+
msgstr ":meth:`__new__` と :meth:`__init__` のどちらを使うべきか"
852853

853854
#: ../../howto/enum.rst:851
854855
msgid ""

howto/logging-cookbook.po

+22-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version: Python 3.11\n"
1616
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-03-17 14:14+0000\n"
17+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1818
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
1919
"Last-Translator: Takeshi Nakazato, 2023\n"
2020
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
@@ -2661,17 +2661,23 @@ msgid ""
26612661
"func:`~logging.basicConfig`, but you can use a different formatter when you "
26622662
"configure logging."
26632663
msgstr ""
2664+
"言うまでもなく上記の例は :func:`~logging.basicConfig` で使われている書式にも"
2665+
"とづく出力を示していますが、ロギングの設定で異なるフォーマッタを使うことがで"
2666+
"きます。"
26642667

26652668
#: ../../howto/logging-cookbook.rst:3794
26662669
msgid ""
26672670
"Note that with the above scheme, you are somewhat at the mercy of buffering "
26682671
"and the sequence of write calls which you are intercepting. For example, "
26692672
"with the definition of ``LoggerWriter`` above, if you have the snippet"
26702673
msgstr ""
2674+
"上記の例では、バッファリングや奪取した書き込み呼び出しのシーケンスの扱いにつ"
2675+
"いてはなすがままになっています。たとえば、上記の ``LoggerWriter`` の定義で、"
2676+
"次のようなコードの断片があったとします。"
26712677

26722678
#: ../../howto/logging-cookbook.rst:3803
26732679
msgid "then running the script results in"
2674-
msgstr ""
2680+
msgstr "このスクリプトを実行すると以下のような結果が得られます。"
26752681

26762682
#: ../../howto/logging-cookbook.rst:3821
26772683
msgid ""
@@ -2682,12 +2688,20 @@ msgid ""
26822688
"when newlines are seen. Let's use a slghtly better implementation of "
26832689
"``LoggerWriter``:"
26842690
msgstr ""
2691+
"見ての通り、この出力は理想的ではありません。なぜならば ``sys.stderr`` に書き"
2692+
"込みを行うコードが、それぞれが行として分割されるような複数の書き込み呼び出し"
2693+
"をしているからです (たとえば最後の3行を見てください)。これを避けるためには、"
2694+
"改行があらわれたときにだけログを出力するように、ログをバッファーに蓄えておく"
2695+
"必要があります。そのようなわずかな改良をほどこした ``LoggerWriter`` の実装を"
2696+
"使ってみましょう:"
26852697

26862698
#: ../../howto/logging-cookbook.rst:3846
26872699
msgid ""
26882700
"This just buffers up stuff until a newline is seen, and then logs complete "
26892701
"lines. With this approach, you get better output:"
26902702
msgstr ""
2703+
"この実装は改行があらわれるまでログをバッファリングし、行全体をログに出力する"
2704+
"だけです。このアプローチにより、より適切な出力が得られます:"
26912705

26922706
#: ../../howto/logging-cookbook.rst:3862
26932707
msgid "Patterns to avoid"
@@ -2778,6 +2792,12 @@ msgid ""
27782792
"remains in place, and grows in size unexpectedly despite size-based rotation "
27792793
"being supposedly in place."
27802794
msgstr ""
2795+
"(たとえばファイルのローテーションの間に) ファイルを削除しようとすると、その"
2796+
"ファイルを指す別の参照が残っているために、何のエラーも発しないまま失敗しま"
2797+
"す。これは混乱や不要なデバッグの時間のもととなる可能性があります - ログが思い"
2798+
"もしない場所に記録されたり、完全に失われたりします。もしくは移動したと思われ"
2799+
"ていたファイルが残っていたり、ファイルサイズにもとづくローテーションが行われ"
2800+
"ているにもかかわらずファイルサイズが予想外に増加したりすることもあります。"
27812801

27822802
#: ../../howto/logging-cookbook.rst:3903
27832803
msgid ""

library/argparse.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@
99
# Shin Saito, 2021
1010
# Atsuo Ishimoto <atsuoishimoto@gmail.com>, 2022
1111
# tomo, 2022
12+
# Arihiro TAKASE, 2023
1213
#
1314
#, fuzzy
1415
msgid ""
1516
msgstr ""
1617
"Project-Id-Version: Python 3.11\n"
1718
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2023-03-17 14:14+0000\n"
19+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1920
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
20-
"Last-Translator: tomo, 2022\n"
21+
"Last-Translator: Arihiro TAKASE, 2023\n"
2122
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
2223
"ja/)\n"
2324
"MIME-Version: 1.0\n"
@@ -2190,7 +2191,7 @@ msgid ""
21902191
"is required::"
21912192
msgstr ""
21922193
":meth:`add_mutually_exclusive_group` メソッドの引数 *required* に True 値を指"
2193-
"定すると、その相互排他引数のどれか1つを選ぶことが要求さます::"
2194+
"定すると、その相互排他引数のどれか1つを選ぶことが要求されます::"
21942195

21952196
#: ../../library/argparse.rst:2021
21962197
msgid ""

library/asyncio-eventloop.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
# Tetsuo Koyama <tkoyama010@gmail.com>, 2021
99
# Takeshi Nakazato, 2022
1010
# souma987, 2022
11+
# Arihiro TAKASE, 2023
1112
#
1213
#, fuzzy
1314
msgid ""
1415
msgstr ""
1516
"Project-Id-Version: Python 3.11\n"
1617
"Report-Msgid-Bugs-To: \n"
17-
"POT-Creation-Date: 2023-03-17 14:14+0000\n"
18+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1819
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
19-
"Last-Translator: souma987, 2022\n"
20+
"Last-Translator: Arihiro TAKASE, 2023\n"
2021
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
2122
"ja/)\n"
2223
"MIME-Version: 1.0\n"
@@ -879,7 +880,7 @@ msgstr "詳しくは右記を参照してください: https://tools.ietf.org/ht
879880
#: ../../library/asyncio-eventloop.rst:829
880881
#: ../../library/asyncio-eventloop.rst:907
881882
msgid "Added the *ssl_shutdown_timeout* parameter."
882-
msgstr ""
883+
msgstr "*ssl_shutdown_timeout* パラメータが追加されました。"
883884

884885
#: ../../library/asyncio-eventloop.rst:526
885886
msgid ""

library/asyncio-queue.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Takeshi Nakazato, 2022
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-03-17 14:14+0000\n"
16+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
17-
"Last-Translator: Takeshi Nakazato, 2022\n"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
1819
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -83,7 +84,7 @@ msgstr ""
8384

8485
#: ../../library/asyncio-queue.rst:39
8586
msgid "Removed the *loop* parameter."
86-
msgstr ""
87+
msgstr "*loop* パラメータが削除されました。"
8788

8889
#: ../../library/asyncio-queue.rst:43
8990
msgid "This class is :ref:`not thread safe <asyncio-multithreading>`."

library/asyncio-stream.po

+15-6
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2022
88
# Takeshi Nakazato, 2022
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-03-10 14:15+0000\n"
16+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
17-
"Last-Translator: Takeshi Nakazato, 2022\n"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
1819
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -106,16 +107,17 @@ msgstr ""
106107
#: ../../library/asyncio-stream.rst:80
107108
msgid "Added *happy_eyeballs_delay* and *interleave* parameters."
108109
msgstr ""
110+
"*happy_eyeballs_delay* と *interleave* の2つのパラメータが追加されました。"
109111

110112
#: ../../library/asyncio-stream.rst:83 ../../library/asyncio-stream.rst:125
111113
#: ../../library/asyncio-stream.rst:157 ../../library/asyncio-stream.rst:187
112114
msgid "Removed the *loop* parameter."
113-
msgstr ""
115+
msgstr "*loop* パラメータが削除されました。"
114116

115117
#: ../../library/asyncio-stream.rst:86 ../../library/asyncio-stream.rst:128
116118
#: ../../library/asyncio-stream.rst:160 ../../library/asyncio-stream.rst:190
117119
msgid "Added the *ssl_shutdown_timeout* parameter."
118-
msgstr ""
120+
msgstr "*ssl_shutdown_timeout* パラメータが追加されました。"
119121

120122
#: ../../library/asyncio-stream.rst:98
121123
msgid "Start a socket server."
@@ -157,6 +159,7 @@ msgstr ""
157159
#: ../../library/asyncio-stream.rst:122
158160
msgid "Added the *ssl_handshake_timeout* and *start_serving* parameters."
159161
msgstr ""
162+
"*ssl_handshake_timeout* と *start_serving* パラメータが追加されました。"
160163

161164
#: ../../library/asyncio-stream.rst:133
162165
msgid "Unix Sockets"
@@ -228,25 +231,31 @@ msgstr ""
228231

229232
#: ../../library/asyncio-stream.rst:209
230233
msgid "Read up to *n* bytes from the stream."
231-
msgstr ""
234+
msgstr "ストリームから最大 *n* バイト読み込みます。"
232235

233236
#: ../../library/asyncio-stream.rst:211
234237
msgid ""
235238
"If *n* is not provided or set to ``-1``, read until EOF, then return all "
236239
"read :class:`bytes`. If EOF was received and the internal buffer is empty, "
237240
"return an empty ``bytes`` object."
238241
msgstr ""
242+
"*n* が指定されないか ``-1`` が指定されていた場合 EOF になるまで読み込み、読み"
243+
"込まれた全ての :class:`bytes` を返します。EOF を受信し、かつ内部バッファーが"
244+
"空の場合、空の ``bytes`` オブジェクトを返します。"
239245

240246
#: ../../library/asyncio-stream.rst:216
241247
msgid "If *n* is ``0``, return an empty ``bytes`` object immediately."
242-
msgstr ""
248+
msgstr "*n* が ``0`` なら、ただちに空の ``bytes`` オブジェクトを返します。"
243249

244250
#: ../../library/asyncio-stream.rst:218
245251
msgid ""
246252
"If *n* is positive, return at most *n* available ``bytes`` as soon as at "
247253
"least 1 byte is available in the internal buffer. If EOF is received before "
248254
"any byte is read, return an empty ``bytes`` object."
249255
msgstr ""
256+
"*n* が正なら、内部バッファで最低でも 1 バイトが利用可能になり次第、利用可能な"
257+
"最大 *n* ``bytes`` を返します。1 バイトも読み込まないうちに EOF を受信したな"
258+
"ら、空の ``bytes`` オブジェクトを返します。"
250259

251260
#: ../../library/asyncio-stream.rst:225
252261
msgid ""

library/asyncio-subprocess.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Takeshi Nakazato, 2022
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-03-17 14:14+0000\n"
16+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
17-
"Last-Translator: Takeshi Nakazato, 2022\n"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
1819
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -104,7 +105,7 @@ msgstr ""
104105
#: ../../library/asyncio-subprocess.rst:78
105106
#: ../../library/asyncio-subprocess.rst:105
106107
msgid "Removed the *loop* parameter."
107-
msgstr ""
108+
msgstr "*loop* パラメータが削除されました。"
108109

109110
#: ../../library/asyncio-subprocess.rst:85
110111
msgid "Run the *cmd* shell command."

library/asyncio-sync.po

+4-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# Takeshi Nakazato, 2022
88
# tomo, 2022
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-03-17 14:14+0000\n"
16+
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
1617
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
17-
"Last-Translator: tomo, 2022\n"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
1819
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
@@ -117,7 +118,7 @@ msgstr "これは以下のコードと等価です::"
117118
#: ../../library/asyncio-sync.rst:187 ../../library/asyncio-sync.rst:286
118119
#: ../../library/asyncio-sync.rst:341
119120
msgid "Removed the *loop* parameter."
120-
msgstr ""
121+
msgstr "*loop* パラメータが削除されました。"
121122

122123
#: ../../library/asyncio-sync.rst:72
123124
msgid "Acquire the lock."

library/asyncio-task.po

+5-4
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# souma987, 2022
1212
# Tetsuo Koyama <tkoyama010@gmail.com>, 2022
1313
# 菊池 健志, 2023
14+
# Arihiro TAKASE, 2023
1415
#
1516
#, fuzzy
1617
msgid ""
@@ -19,7 +20,7 @@ msgstr ""
1920
"Report-Msgid-Bugs-To: \n"
2021
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
2122
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
22-
"Last-Translator: 菊池 健志, 2023\n"
23+
"Last-Translator: Arihiro TAKASE, 2023\n"
2324
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
2425
"ja/)\n"
2526
"MIME-Version: 1.0\n"
@@ -236,8 +237,8 @@ msgid ""
236237
"Future objects, sometimes exposed by libraries and some asyncio APIs, can be "
237238
"awaited::"
238239
msgstr ""
239-
"Future オブジェクトはライブラリや asyncio の API で表に出ることもあり、他の "
240-
"awaitable を待機させられます::"
240+
"Future オブジェクトはライブラリや asyncio のAPIで外部に提供されることもあり、"
241+
"await (待機)されることができます::"
241242

242243
#: ../../library/asyncio-task.rst:230
243244
msgid ""
@@ -473,7 +474,7 @@ msgstr "現在の時刻を5秒間、毎秒表示するコルーチンの例::"
473474
#: ../../library/asyncio-task.rst:747 ../../library/asyncio-task.rst:799
474475
#: ../../library/asyncio-task.rst:821
475476
msgid "Removed the *loop* parameter."
476-
msgstr ""
477+
msgstr "*loop* パラメータが削除されました。"
477478

478479
#: ../../library/asyncio-task.rst:430
479480
msgid "Running Tasks Concurrently"

0 commit comments

Comments
 (0)