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

Commitf24ae0f

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent8374bfb commitf24ae0f

File tree

11 files changed

+111
-21
lines changed

11 files changed

+111
-21
lines changed

‎c-api/bool.po

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,16 @@
66
# Translators:
77
# tomo, 2021
88
# Tetsuo Koyama <tkoyama010@gmail.com>, 2021
9+
# Taichi Haradaguchi, 2024
910
#
1011
#,fuzzy
1112
msgid ""
1213
msgstr ""
1314
"Project-Id-Version:Python 3.12\n"
1415
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-02-02 15:40+0000\n"
16+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1617
"PO-Revision-Date:2021-06-28 00:47+0000\n"
17-
"Last-Translator:Tetsuo Koyama <tkoyama010@gmail.com>, 2021\n"
18+
"Last-Translator:Taichi Haradaguchi, 2024\n"
1819
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
1920
"ja/)\n"
2021
"MIME-Version:1.0\n"
@@ -34,12 +35,18 @@ msgid ""
3435
"normal creation and deletion functions don't apply to booleans. The "
3536
"following macros are available, however."
3637
msgstr""
38+
"Python の Bool 型は整数のサブクラスとして実装されています。ブール型の値は、 :"
39+
"c:data:`Py_False` と :c:data:`Py_True` の 2 つしかありません。従って、通常の"
40+
"生成/削除関数はブール型にはあてはまりません。とはいえ、以下のマクロが利用で"
41+
"きます。"
3742

3843
#:../../c-api/bool.rst:16
3944
msgid""
4045
"This instance of :c:type:`PyTypeObject` represents the Python boolean type; "
4146
"it is the same object as :class:`bool` in the Python layer."
4247
msgstr""
48+
"この :c:type:`PyTypeObject` のインスタンスは Python の boolean 型を表現しま"
49+
"す; Python レイヤにおける :class:`bool` と同じオブジェクトです。"
4350

4451
#:../../c-api/bool.rst:22
4552
msgid""
@@ -82,3 +89,4 @@ msgid ""
8289
"Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value "
8390
"of *v*."
8491
msgstr""
92+
"*v* の値に応じて :c:data:`Py_True` または :c:data:`Py_False` を返します。"

‎c-api/datetime.po

Lines changed: 44 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@
77
# tomo, 2021
88
# yaakiyu, 2022
99
# Arihiro TAKASE, 2023
10+
# Taichi Haradaguchi, 2024
1011
#
1112
#,fuzzy
1213
msgid ""
1314
msgstr ""
1415
"Project-Id-Version:Python 3.12\n"
1516
"Report-Msgid-Bugs-To:\n"
16-
"POT-Creation-Date:2024-02-02 15:40+0000\n"
17+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1718
"PO-Revision-Date:2021-06-28 00:48+0000\n"
18-
"Last-Translator:Arihiro TAKASE, 2023\n"
19+
"Last-Translator:Taichi Haradaguchi, 2024\n"
1920
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2021
"ja/)\n"
2122
"MIME-Version:1.0\n"
@@ -38,14 +39,23 @@ msgid ""
3839
"structure into a static variable, :c:data:`!PyDateTimeAPI`, that is used by "
3940
"the following macros."
4041
msgstr""
42+
":mod:`datetime` モジュールでは、様々な日付オブジェクトや時刻オブジェクトを提"
43+
"供しています。以下に示す関数を使う場合には、あらかじめヘッダファイル :file:"
44+
"`datetime.h` をソースに include し (:file:`Python.h` はこのファイルを "
45+
"include しません)、 :c:macro:`!PyDateTime_IMPORT` マクロを、通常はモジュール"
46+
"初期化関数から、起動しておく必要があります。このマクロは以下のマクロで使われ"
47+
"る静的変数 :c:data:`!PyDateTimeAPI` に C 構造体へのポインタを入れます。"
4148

4249
#:../../c-api/datetime.rst:18
4350
msgid"This subtype of :c:type:`PyObject` represents a Python date object."
4451
msgstr""
52+
"この :c:type:`PyObject` のサブタイプは、Pythonの日付オブジェクトを表します。"
4553

4654
#:../../c-api/datetime.rst:22
4755
msgid"This subtype of :c:type:`PyObject` represents a Python datetime object."
4856
msgstr""
57+
"この :c:type:`PyObject` のサブタイプは Python の datetime オブジェクトを表現"
58+
"します。"
4959

5060
#:../../c-api/datetime.rst:26
5161
msgid"This subtype of :c:type:`PyObject` represents a Python time object."
@@ -97,8 +107,8 @@ msgid ""
97107
"Returns the time zone singleton representing UTC, the same object as :attr:"
98108
"`datetime.timezone.utc`."
99109
msgstr""
100-
"UTCタイムゾーンに相当するシングルトンを返します。\n"
101-
"これは :attr:`datetime.timezon.utc` と同じオブジェクトです。"
110+
"UTCタイムゾーンに相当するシングルトンを返します。これは :attr:`datetime."
111+
"timezone.utc` と同じオブジェクトです。"
102112

103113
#:../../c-api/datetime.rst:69
104114
msgid"Type-check macros:"
@@ -110,6 +120,9 @@ msgid ""
110120
"of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This "
111121
"function always succeeds."
112122
msgstr""
123+
"*ob* が :c:data:`PyDateTime_DateType` 型か :c:data:`!PyDateTime_DateType` 型"
124+
"のサブタイプのオブジェクトの場合に真を返します; *ob* は ``NULL`` であってはな"
125+
"りません。この関数は常に成功します。"
113126

114127
#:../../c-api/datetime.rst:80
115128
msgid""
@@ -125,6 +138,9 @@ msgid ""
125138
"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
126139
"This function always succeeds."
127140
msgstr""
141+
"*ob* が :c:data:`PyDateTime_DateTimeType` 型か :c:data:`!"
142+
"PyDateTime_DateTimeType` 型のサブタイプのオブジェクトの場合に真を返します; "
143+
"*ob* は ``NULL`` であってはなりません。この関数は常に成功します。"
128144

129145
#:../../c-api/datetime.rst:93
130146
msgid""
@@ -140,6 +156,9 @@ msgid ""
140156
"of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This "
141157
"function always succeeds."
142158
msgstr""
159+
"*ob* が :c:data:`PyDateTime_TimeType` 型か :c:data:`!PyDateTime_TimeType` 型"
160+
"のサブタイプのオブジェクトの場合に真を返します; *ob* は ``NULL`` であってはな"
161+
"りません。この関数は常に成功します。"
143162

144163
#:../../c-api/datetime.rst:106
145164
msgid""
@@ -155,6 +174,9 @@ msgid ""
155174
"of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
156175
"function always succeeds."
157176
msgstr""
177+
"*ob* が :c:data:`PyDateTime_DeltaType` 型か :c:data:`!PyDateTime_DeltaType` "
178+
"型のサブタイプのオブジェクトの場合に真を返します; *ob* は ``NULL`` であっては"
179+
"なりません。この関数は常に成功します。"
158180

159181
#:../../c-api/datetime.rst:119
160182
msgid""
@@ -170,6 +192,9 @@ msgid ""
170192
"of :c:data:`!PyDateTime_TZInfoType`. *ob* must not be ``NULL``. This "
171193
"function always succeeds."
172194
msgstr""
195+
"*ob* が :c:data:`PyDateTime_TZInfoType` 型か :c:data:`!"
196+
"PyDateTime_TZInfoType` 型のサブタイプのオブジェクトの場合に真を返します; "
197+
"*ob* は ``NULL`` であってはなりません。この関数は常に成功します。"
173198

174199
#:../../c-api/datetime.rst:132
175200
msgid""
@@ -255,6 +280,10 @@ msgid ""
255280
"`PyDateTime_DateTime`). The argument must not be ``NULL``, and the type is "
256281
"not checked:"
257282
msgstr""
283+
"以下のマクロは date オブジェクトからフィールド値を取り出すためのものです。引"
284+
"数は :c:type:`PyDateTime_Date` またはそのサブクラス (例えば :c:type:"
285+
"`PyDateTime_DateTime`)の インスタンスでなければなりません。引数を ``NULL`` "
286+
"にしてはならず、型チェックは行いません:"
258287

259288
#:../../c-api/datetime.rst:202
260289
msgid"Return the year, as a positive int."
@@ -274,6 +303,9 @@ msgid ""
274303
"instance of :c:type:`PyDateTime_DateTime`, including subclasses. The "
275304
"argument must not be ``NULL``, and the type is not checked:"
276305
msgstr""
306+
"以下のマクロは datetime オブジェクトからフィールド値を取り出すためのもので"
307+
"す。引数は :c:type:`PyDateTime_DateTime` またはそのサブクラスのインスタンスで"
308+
"なければなりません。引数を ``NULL`` にしてはならず、型チェックは行いません:"
277309

278310
#:../../c-api/datetime.rst:221../../c-api/datetime.rst:259
279311
msgid"Return the hour, as an int from 0 through 23."
@@ -307,13 +339,19 @@ msgid ""
307339
"instance of :c:type:`PyDateTime_Time`, including subclasses. The argument "
308340
"must not be ``NULL``, and the type is not checked:"
309341
msgstr""
342+
"以下のマクロは time オブジェクトからフィールド値を取り出すためのものです。引"
343+
"数は :c:type:`PyDateTime_Time` またはそのサブクラスのインスタンスでなければな"
344+
"りません。引数を ``NULL`` にしてはならず、型チェックは行いません:"
310345

311346
#:../../c-api/datetime.rst:291
312347
msgid""
313348
"Macros to extract fields from time delta objects. The argument must be an "
314349
"instance of :c:type:`PyDateTime_Delta`, including subclasses. The argument "
315350
"must not be ``NULL``, and the type is not checked:"
316351
msgstr""
352+
"以下のマクロは time delta オブジェクトからフィールド値をとりだすためのもので"
353+
"す。引数は :c:type:`PyDateTime_Delta` かそのサブクラスのインスタンスでなけれ"
354+
"ばなりません。引数を ``NULL`` にしてはならず、型チェックは行いません:"
317355

318356
#:../../c-api/datetime.rst:297
319357
msgid"Return the number of days, as an int from -999999999 to 999999999."
@@ -336,13 +374,13 @@ msgid ""
336374
"Create and return a new :class:`datetime.datetime` object given an argument "
337375
"tuple suitable for passing to :meth:`datetime.datetime.fromtimestamp()`."
338376
msgstr""
339-
":meth:`dateitme.datetime.fromtimestamp()` に渡すのに適した引数タプルから新た"
377+
":meth:`datetime.datetime.fromtimestamp()` に渡すのに適した引数タプルから新た"
340378
"な :class:`datetime.datetime` オブジェクトを生成して返します。"
341379

342380
#:../../c-api/datetime.rst:326
343381
msgid""
344382
"Create and return a new :class:`datetime.date` object given an argument "
345383
"tuple suitable for passing to :meth:`datetime.date.fromtimestamp()`."
346384
msgstr""
347-
":meth:`dateitme.date.fromtimestamp()` に渡すのに適した引数タプルから新たな :"
385+
":meth:`datetime.date.fromtimestamp()` に渡すのに適した引数タプルから新たな :"
348386
"class:`datetime.date` オブジェクトを生成して返します。"

‎c-api/exceptions.po

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,16 @@
99
# Arihiro TAKASE, 2023
1010
# Osamu NAKAMURA, 2023
1111
# tomo, 2023
12+
# Taichi Haradaguchi, 2024
1213
#
1314
#,fuzzy
1415
msgid ""
1516
msgstr ""
1617
"Project-Id-Version:Python 3.12\n"
1718
"Report-Msgid-Bugs-To:\n"
18-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
19+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1920
"PO-Revision-Date:2021-06-28 00:48+0000\n"
20-
"Last-Translator:tomo, 2023\n"
21+
"Last-Translator:Taichi Haradaguchi, 2024\n"
2122
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2223
"ja/)\n"
2324
"MIME-Version:1.0\n"
@@ -965,6 +966,9 @@ msgid ""
965966
"accessible from Python through the :attr:`~BaseException.__traceback__` "
966967
"attribute. If there is no traceback associated, this returns ``NULL``."
967968
msgstr""
969+
"Python で :attr:`~BaseException.__traceback__` 属性からアクセスできるものと同"
970+
"じ、例外に関する traceback の新しい参照を返します。関係する traceback が無い"
971+
"場合は、 ``NULL`` を返します。"
968972

969973
#:../../c-api/exceptions.rst:751
970974
msgid""
@@ -1134,6 +1138,10 @@ msgid ""
11341138
"stack overflowed using :c:func:`PyOS_CheckStack`. In this is the case, it "
11351139
"sets a :exc:`MemoryError` and returns a nonzero value."
11361140
msgstr""
1141+
":c:macro:`USE_STACKCHECK` が定義されている場合、 OS のスタックがオーバーフ"
1142+
"ローがしたかどうかを :c:func:`PyOS_CheckStack` を使ってチェックします。もし"
1143+
"オーバーフローしているなら、 :exc:`MemoryError` をセットしゼロでない値を返し"
1144+
"ます。"
11371145

11381146
#:../../c-api/exceptions.rst:898
11391147
msgid""

‎c-api/slice.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
15+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 00:50+0000\n"
1717
"Last-Translator:Arihiro TAKASE, 2023\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎glossary.po

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# 菊池 健志, 2023
1212
# Arihiro TAKASE, 2023
1313
# Nozomu Kaneko <nozom.kaneko@gmail.com>, 2023
14+
# TENMYO Masakazu, 2024
1415
#
1516
#,fuzzy
1617
msgid ""
@@ -19,7 +20,7 @@ msgstr ""
1920
"Report-Msgid-Bugs-To:\n"
2021
"POT-Creation-Date:2024-02-09 14:13+0000\n"
2122
"PO-Revision-Date:2021-06-28 00:47+0000\n"
22-
"Last-Translator:Nozomu Kaneko <nozom.kaneko@gmail.com>, 2023\n"
23+
"Last-Translator:TENMYO Masakazu, 2024\n"
2324
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"
2425
"ja/)\n"
2526
"MIME-Version:1.0\n"
@@ -219,6 +220,10 @@ msgid ""
219220
"statement by defining :meth:`~object.__aenter__` and :meth:`~object."
220221
"__aexit__` methods. Introduced by :pep:`492`."
221222
msgstr""
223+
"(非同期コンテキストマネージャ)\n"
224+
":meth:`~object.__aenter__` と :meth:`~object.__aexit__` メソッドを定義するこ"
225+
"とで :keyword:`async with` 文内の環境を管理するオブジェクトです。 :pep:"
226+
"`492` で導入されました。"
222227

223228
#:../../glossary.rst:97
224229
msgid"asynchronous generator"
@@ -273,6 +278,10 @@ msgid ""
273278
"the body of the asynchronous generator function until the next :keyword:"
274279
"`yield` expression."
275280
msgstr""
281+
"これは :term:`asynchronous iterator` で、 :meth:`~object.__anext__` メソッド"
282+
"を使って呼ばれると awaitable オブジェクトを返します。 この awaitable オブ"
283+
"ジェクトは、次の :keyword:`yield` 式まで非同期ジェネレータ関数の本体を実行し"
284+
"ます。"
276285

277286
#:../../glossary.rst:120
278287
msgid""
@@ -282,6 +291,10 @@ msgid ""
282291
"with another awaitable returned by :meth:`~object.__anext__`, it picks up "
283292
"where it left off. See :pep:`492` and :pep:`525`."
284293
msgstr""
294+
"各 :keyword:`yield` では一時的に処理を中断し、その場の実行状態 (ローカル変数"
295+
"や保留中の try 文を含む) を記憶します。 *非同期ジェネレータイテレータ* が :"
296+
"meth:`~object.__anext__` で返された他の awaitable で実際に再開する時には、そ"
297+
"の中断箇所が選ばれます。 :pep:`492` および :pep:`525` を参照してください。"
285298

286299
#:../../glossary.rst:125
287300
msgid"asynchronous iterable"
@@ -293,6 +306,10 @@ msgid ""
293306
"return an :term:`asynchronous iterator` from its :meth:`~object.__aiter__` "
294307
"method. Introduced by :pep:`492`."
295308
msgstr""
309+
"(非同期イテラブル)\n"
310+
":keyword:`async for` 文の中で使用できるオブジェクトです。 自身の :meth:"
311+
"`~object.__aiter__` メソッドから :term:`asynchronous iterator` を返さなければ"
312+
"なりません。 :pep:`492` で導入されました。"
296313

297314
#:../../glossary.rst:130
298315
msgid"asynchronous iterator"
@@ -306,6 +323,12 @@ msgid ""
306323
"an asynchronous iterator's :meth:`~object.__anext__` method until it raises "
307324
"a :exc:`StopAsyncIteration` exception. Introduced by :pep:`492`."
308325
msgstr""
326+
"(非同期イテレータ)\n"
327+
":meth:`~object.__aiter__` と :meth:`~object.__anext__` メソッドを実装したオブ"
328+
"ジェクトです。 :meth:`~object.__anext__` は :term:`awaitable` オブジェクトを"
329+
"返さなければなりません。 :keyword:`async for` は :exc:`StopAsyncIteration` "
330+
"例外を送出するまで、非同期イテレータの :meth:`~object.__anext__` メソッドが返"
331+
"す awaitable を解決します。 :pep:`492` で導入されました。"
309332

310333
#:../../glossary.rst:137
311334
msgid"attribute"
@@ -329,6 +352,10 @@ msgid ""
329352
"using a dotted expression, and would instead need to be retrieved with :func:"
330353
"`getattr`."
331354
msgstr""
355+
"オブジェクトには、 :ref:`identifiers` で定義される識別子ではない名前の属性を"
356+
"与えることができます。たとえば :func:`setattr` を使い、オブジェクトがそれを許"
357+
"可している場合に行えます。このような属性はドット表記式ではアクセスできず、代"
358+
"わりに :func:`getattr` を使って取る必要があります。"
332359

333360
#:../../glossary.rst:149
334361
msgid"awaitable"
@@ -340,6 +367,10 @@ msgid ""
340367
"term:`coroutine` or an object with an :meth:`~object.__await__` method. See "
341368
"also :pep:`492`."
342369
msgstr""
370+
"(待機可能)\n"
371+
":keyword:`await` 式で使用することが出来るオブジェクトです。 :term:"
372+
"`coroutine` か、 :meth:`~object.__await__` メソッドがあるオブジェクトです。 :"
373+
"pep:`492` を参照してください。"
343374

344375
#:../../glossary.rst:154
345376
msgid"BDFL"

‎howto/sorting.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ msgid ""
1414
msgstr ""
1515
"Project-Id-Version:Python 3.12\n"
1616
"Report-Msgid-Bugs-To:\n"
17-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
17+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1818
"PO-Revision-Date:2021-06-28 00:53+0000\n"
1919
"Last-Translator:souma987, 2023\n"
2020
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/email.utils.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version:Python 3.12\n"
1414
"Report-Msgid-Bugs-To:\n"
15-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
15+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1616
"PO-Revision-Date:2021-06-28 01:05+0000\n"
1717
"Last-Translator:tomo, 2023\n"
1818
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/os.path.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ msgid ""
1717
msgstr ""
1818
"Project-Id-Version:Python 3.12\n"
1919
"Report-Msgid-Bugs-To:\n"
20-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
20+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
2121
"PO-Revision-Date:2021-06-28 01:10+0000\n"
2222
"Last-Translator:tomo, 2023\n"
2323
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

‎library/platform.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ msgid ""
1515
msgstr ""
1616
"Project-Id-Version:Python 3.12\n"
1717
"Report-Msgid-Bugs-To:\n"
18-
"POT-Creation-Date:2024-01-19 14:14+0000\n"
18+
"POT-Creation-Date:2024-02-09 14:13+0000\n"
1919
"PO-Revision-Date:2021-06-28 01:11+0000\n"
2020
"Last-Translator:Arihiro TAKASE, 2023\n"
2121
"Language-Team:Japanese (https://app.transifex.com/python-doc/teams/5390/"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp