Skip to content

Commit 508636e

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent fdbe391 commit 508636e

File tree

8 files changed

+200
-33
lines changed

8 files changed

+200
-33
lines changed

c-api/arg.po

+125-19
Large diffs are not rendered by default.

c-api/import.po

+8-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,16 @@
88
# mollinaca, 2021
99
# tomo, 2021
1010
# Shin Saito, 2021
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-04-07 14:12+0000\n"
18+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1819
"PO-Revision-Date: 2021-06-28 00:48+0000\n"
19-
"Last-Translator: Shin Saito, 2021\n"
20+
"Last-Translator: Arihiro TAKASE, 2023\n"
2021
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2122
"ja/)\n"
2223
"MIME-Version: 1.0\n"
@@ -421,6 +422,11 @@ msgid ""
421422
"could play tricks with this to provide a dynamically created collection of "
422423
"frozen modules."
423424
msgstr ""
425+
"このポインタは :c:struct:`_frozen` のレコードからなり、終端の要素のメンバが "
426+
"``NULL`` かゼロになっているような配列を指すよう初期化されます。\n"
427+
"フリーズされたモジュールをインポートするとき、このテーブルを検索します。\n"
428+
"サードパーティ製のコードからこのポインタに仕掛けを講じて、動的に生成されたフ"
429+
"リーズ化モジュールの集合を提供するようにできます。"
424430

425431
#: ../../c-api/import.rst:276
426432
msgid ""

c-api/marshal.po

+19-1
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-04-07 14:12+0000\n"
15+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:49+0000\n"
1717
"Last-Translator: Arihiro TAKASE, 2023\n"
1818
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
@@ -63,6 +63,9 @@ msgid ""
6363
"the least-significant 32 bits of *value*; regardless of the size of the "
6464
"native :c:expr:`long` type. *version* indicates the file format."
6565
msgstr ""
66+
":c:expr:`long` 型の整数値 *value* を *file* へ整列化します。この関数は "
67+
"*value* の下桁 32 ビットを書き込むだけです; ネイティブの :c:expr:`long` 型サ"
68+
"イズには関知しません。 *version* はファイルフォーマットを示します。"
6669

6770
#: ../../c-api/marshal.rst:31
6871
msgid ""
@@ -90,6 +93,9 @@ msgid ""
9093
"for reading. Only a 32-bit value can be read in using this function, "
9194
"regardless of the native size of :c:expr:`long`."
9295
msgstr ""
96+
"読み出し用に開かれた :c:expr:`FILE*` 内のデータストリームから、 C の :c:expr:"
97+
"`long` 型データを読み出して返します。この関数は、ネイティブの :c:expr:`long` "
98+
"のサイズに関係なく、 32 ビットの値だけを読み出せます。"
9399

94100
#: ../../c-api/marshal.rst:50 ../../c-api/marshal.rst:60
95101
msgid ""
@@ -104,12 +110,17 @@ msgid ""
104110
"for reading. Only a 16-bit value can be read in using this function, "
105111
"regardless of the native size of :c:expr:`short`."
106112
msgstr ""
113+
"読み出し用に開かれた :c:expr:`FILE*` 内のデータストリームから、 C の :c:expr:"
114+
"`short` 型データを読み出して返します。この関数は、ネイティブの :c:expr:"
115+
"`short` のサイズに関係なく、 16 ビットの値だけを読み出せます。"
107116

108117
#: ../../c-api/marshal.rst:66
109118
msgid ""
110119
"Return a Python object from the data stream in a :c:expr:`FILE*` opened for "
111120
"reading."
112121
msgstr ""
122+
"読み出し用に開かれた :c:expr:`FILE*` 内のデータストリームから Python オブジェ"
123+
"クトを返します。"
113124

114125
#: ../../c-api/marshal.rst:69 ../../c-api/marshal.rst:83
115126
#: ../../c-api/marshal.rst:92
@@ -130,6 +141,13 @@ msgid ""
130141
"file. Only use these variant if you are certain that you won't be reading "
131142
"anything else from the file."
132143
msgstr ""
144+
"読み出し用に開かれた :c:expr:`FILE*` 内のデータストリームから、 Python オブ"
145+
"ジェクトを読み出して返します。 :c:func:`PyMarshal_ReadObjectFromFile` と違"
146+
"い、この関数はファイル中に後続のオブジェクトが存在しないと仮定し、ファイルか"
147+
"らメモリ上にファイルデータを一気にメモリにロードして、逆整列化機構がファイル"
148+
"から一バイトづつ読み出す代わりにメモリ上のデータを操作できるようにします。対"
149+
"象のファイルから他に何も読み出さないと分かっている場合にのみ、この関数を使っ"
150+
"てください。"
133151

134152
#: ../../c-api/marshal.rst:89
135153
msgid ""

c-api/sys.po

+33-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# tomo, 2021
88
# Tetsuo Koyama <tkoyama010@gmail.com>, 2021
99
# mollinaca, 2021
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-04-07 14:12+0000\n"
17+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1718
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
18-
"Last-Translator: mollinaca, 2021\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"
@@ -149,6 +150,11 @@ msgid ""
149150
"C++ compiler). :const:`USE_STACKCHECK` will be defined automatically; you "
150151
"should never change the definition in your own code."
151152
msgstr ""
153+
"インタプリタがスタック空間を使い尽くしたときに真を返します。このチェック関数"
154+
"には信頼性がありますが、 :const:`USE_STACKCHECK` が定義されている場合 (現状で"
155+
"は Microsoft Visual C++ コンパイラでビルドした 一定のバージョンの Windows "
156+
"版) にしか利用できません . :const:`USE_STACKCHECK` は自動的に定義されます; 自"
157+
"前のコードでこの定義を変更してはなりません。"
152158

153159
#: ../../c-api/sys.rst:106
154160
msgid ""
@@ -157,6 +163,10 @@ msgid ""
157163
"functions directly! :c:type:`PyOS_sighandler_t` is a typedef alias for :c:"
158164
"expr:`void (\\*)(int)`."
159165
msgstr ""
166+
"シグナル *i* に対する現在のシグナルハンドラを返します。この関数は :c:func:"
167+
"`sigaction` または :c:func:`signal` のいずれかに対する薄いラッパーです。 :c:"
168+
"func:`sigaction` や :c:func:`signal` を直接呼び出してはなりません! :c:type:"
169+
"`PyOS_sighandler_t` は :c:expr:`void (\\*)(int)` の typedef による別名です。"
160170

161171
#: ../../c-api/sys.rst:114
162172
msgid ""
@@ -165,6 +175,11 @@ msgid ""
165175
"`signal`. Do not call those functions directly! :c:type:"
166176
"`PyOS_sighandler_t` is a typedef alias for :c:expr:`void (\\*)(int)`."
167177
msgstr ""
178+
"シグナル *i* に対する現在のシグナルハンドラを *h* に設定します; 以前のシグナ"
179+
"ルハンドラを返します。この関数は :c:func:`sigaction` または :c:func:`signal` "
180+
"のいずれかに対する薄いラッパーです。 :c:func:`sigaction` や :c:func:`signal` "
181+
"を直接呼び出してはなりません! :c:type:`PyOS_sighandler_t` は :c:expr:`void "
182+
"(\\*)(int)` の typedef による別名です。"
168183

169184
#: ../../c-api/sys.rst:122
170185
msgid ""
@@ -189,6 +204,12 @@ msgid ""
189204
"character, the bytes are escaped using the surrogateescape error handler "
190205
"instead of decoding them."
191206
msgstr ""
207+
":term:`ファイルシステムのエンコーディングとエラーハンドラ <filesystem "
208+
"encoding and error handler>` からバイト文字列をデコードします。エラーハンドラ"
209+
"が :ref:`surrogateescape エラーハンドラ <surrogateescape>` なら、\n"
210+
"デコードできないバイトは U+DC80 から U+DCFF までの範囲の文字としてデコードさ"
211+
"れ、バイト列がサロゲート文字としてデコードできる場合は、デコードするのではな"
212+
"く surrogateescape エラーハンドラを使ってバイト列がエスケープされます。"
192213

193214
#: ../../c-api/sys.rst:137
194215
msgid ""
@@ -244,6 +265,8 @@ msgid ""
244265
"The function now uses the UTF-8 encoding in the :ref:`Python UTF-8 Mode "
245266
"<utf8-mode>`."
246267
msgstr ""
268+
"この関数は、:ref:`Python UTF-8 Mode <utf8-mode>` ではUTF-8エンコーディングを"
269+
"利用するようになりました。"
247270

248271
#: ../../c-api/sys.rst:166
249272
msgid ""
@@ -258,13 +281,21 @@ msgid ""
258281
"<surrogateescape>`, surrogate characters in the range U+DC80..U+DCFF are "
259282
"converted to bytes 0x80..0xFF."
260283
msgstr ""
284+
"ワイドキャラクター文字列を :term:`ファイルシステムのエンコーディングとエラー"
285+
"ハンドラ <filesystem encoding and error handler>` にエンコードします。エラー"
286+
"ハンドラが :ref:`surrogateescape エラーハンドラ <surrogateescape>` なら、\n"
287+
"U+DC80 から U+DCFF までの範囲のサロゲート文字は 0x80 から 0xFF までのバイトに"
288+
"変換されます。"
261289

262290
#: ../../c-api/sys.rst:178
263291
msgid ""
264292
"Return a pointer to a newly allocated byte string, use :c:func:`PyMem_Free` "
265293
"to free the memory. Return ``NULL`` on encoding error or memory allocation "
266294
"error."
267295
msgstr ""
296+
"新しくメモリ確保されたバイト文字列へのポインタを返します。\n"
297+
"このメモリを解放するのには :c:func:`PyMem_Free` を使ってください。\n"
298+
"エンコードエラーかメモリ確保エラーのときは ``NULL`` を返します。"
268299

269300
#: ../../c-api/sys.rst:182
270301
msgid ""

library/asyncio-runner.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.11\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
16+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1717
"PO-Revision-Date: 2022-11-05 19:48+0000\n"
1818
"Last-Translator: 菊池 健志, 2023\n"
19-
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
19+
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2020
"ja/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"

library/ctypes.po

+9-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@
66
# Translators:
77
# Takanori Suzuki <takanori@takanory.net>, 2021
88
# tomo, 2021
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-31 14:13+0000\n"
16+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1617
"PO-Revision-Date: 2021-06-28 01:03+0000\n"
17-
"Last-Translator: tomo, 2021\n"
18-
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
18+
"Last-Translator: Arihiro TAKASE, 2023\n"
19+
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version: 1.0\n"
2122
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1339,6 +1340,11 @@ msgid ""
13391340
"could play tricks with this to provide a dynamically created collection of "
13401341
"frozen modules."
13411342
msgstr ""
1343+
"このポインタは :c:struct:`_frozen` のレコードからなり、終端の要素のメンバが "
1344+
"``NULL`` かゼロになっているような配列を指すよう初期化されます。\n"
1345+
"フリーズされたモジュールをインポートするとき、このテーブルを検索します。\n"
1346+
"サードパーティ製のコードからこのポインタに仕掛けを講じて、動的に生成されたフ"
1347+
"リーズ化モジュールの集合を提供するようにできます。"
13421348

13431349
#: ../../library/ctypes.rst:1104
13441350
msgid ""

library/logging.config.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.11\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
19+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:09+0000\n"
2121
"Last-Translator: Takeshi Nakazato, 2023\n"
22-
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
22+
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2323
"ja/)\n"
2424
"MIME-Version: 1.0\n"
2525
"Content-Type: text/plain; charset=UTF-8\n"

whatsnew/3.5.po

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.11\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-03-24 14:14+0000\n"
16+
"POT-Creation-Date: 2023-04-14 14:13+0000\n"
1717
"PO-Revision-Date: 2021-06-29 13:04+0000\n"
1818
"Last-Translator: yaakiyu, 2023\n"
19-
"Language-Team: Japanese (https://www.transifex.com/python-doc/teams/5390/"
19+
"Language-Team: Japanese (https://app.transifex.com/python-doc/teams/5390/"
2020
"ja/)\n"
2121
"MIME-Version: 1.0\n"
2222
"Content-Type: text/plain; charset=UTF-8\n"

0 commit comments

Comments
 (0)