5
5
#
6
6
# Translators:
7
7
# tomo, 2024
8
+ # 石井 明久, 2024
8
9
#
9
10
#, fuzzy
10
11
msgid ""
11
12
msgstr ""
12
13
"Project-Id-Version : Python 3.13\n "
13
14
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2024-05-24 14:15+0000\n "
15
+ "POT-Creation-Date : 2024-06-07 14:15+0000\n "
15
16
"PO-Revision-Date : 2021-06-28 00:54+0000\n "
16
- "Last-Translator : tomo , 2024\n "
17
+ "Last-Translator : 石井 明久 , 2024\n "
17
18
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
18
19
"ja/)\n "
19
20
"MIME-Version : 1.0\n "
@@ -24,7 +25,7 @@ msgstr ""
24
25
25
26
#: ../../library/__future__.rst:2
26
27
msgid ":mod:`!__future__` --- Future statement definitions"
27
- msgstr ""
28
+ msgstr ":mod:`!__future__` --- future 文の定義 "
28
29
29
30
#: ../../library/__future__.rst:7
30
31
msgid "**Source code:** :source:`Lib/__future__.py`"
@@ -37,6 +38,10 @@ msgid ""
37
38
"to allow the use of new Python features in modules containing the future "
38
39
"statement before the release in which the feature becomes standard."
39
40
msgstr ""
41
+ "``from __future__ import feature`` の形式でのインポートは :ref:`future 文 "
42
+ "<future>` の定義と呼ばれています。これらは特殊なケースで、 Python の新機能が"
43
+ "標準になるリリースの前に Python コンパイラーが future 文を含むモジュールで "
44
+ "Python の新機能を使用できるようにします。"
40
45
41
46
#: ../../library/__future__.rst:16
42
47
msgid ""
@@ -45,6 +50,10 @@ msgid ""
45
50
"the :mod:`__future__` exists and is handled by the import system the same "
46
51
"way any other Python module would be. This design serves three purposes:"
47
52
msgstr ""
53
+ "これらの future 文が Python コンパイラーによって追加の特殊な意味を与えられる"
54
+ "一方で、それらは依然として他のインポート文のように実行され、 :mod:"
55
+ "`__future__` は存在し、他の Python モジュールと同じようにインポートシステムに"
56
+ "よって処理されます。この設計は3つの目的にかなっています:"
48
57
49
58
#: ../../library/__future__.rst:21
50
59
msgid ""
@@ -73,6 +82,10 @@ msgid ""
73
82
"`__future__` will fail, because there was no module of that name prior to "
74
83
"2.1)."
75
84
msgstr ""
85
+ "Python 2.1 以前のリリースで :ref:`future 文 <future>` が実行された場合に、最"
86
+ "低でもランタイム例外を投げるようにするため (:mod:`__future__` のインポートは"
87
+ "失敗します。なぜなら、 2.1 以前にはそういう名前のモジュールはなかったからで"
88
+ "す)。"
76
89
77
90
#: ../../library/__future__.rst:34
78
91
msgid "Module Contents"
@@ -272,6 +285,8 @@ msgid ""
272
285
"*MandatoryRelease* may also be ``None``, meaning that a planned feature got "
273
286
"dropped or that it is not yet decided."
274
287
msgstr ""
288
+ "*MandatoryRelease* は ``None`` になるかもしれません。つまり、予定された機能が"
289
+ "破棄されたか、まだ決定されていないということです。"
275
290
276
291
#: ../../library/__future__.rst:111
277
292
msgid ""
@@ -280,6 +295,10 @@ msgid ""
280
295
"dynamically compiled code. This flag is stored in the :attr:`_Feature."
281
296
"compiler_flag` attribute on :class:`_Feature` instances."
282
297
msgstr ""
298
+ "*CompilerFlag* は、動的にコンパイルされるコードでその機能を有効にするために、"
299
+ "組み込み関数 :func:`compile` の第4引数に渡す(ビットフィールド)フラグです。こ"
300
+ "のフラグは :class:`_Feature` インスタンスの :attr:`_Feature.compiler_flag` 属"
301
+ "性に保存されています。"
283
302
284
303
#: ../../library/__future__.rst:117
285
304
msgid ""
@@ -291,6 +310,13 @@ msgid ""
291
310
"[email protected] /message/VIZEBX5EYMSYIJNDBF6DMUMZOCWHARSO/>`__). No "
292
311
"final decision has been made yet. See also :pep:`563` and :pep:`649`."
293
312
msgstr ""
313
+ "``from __future__ import annotations`` は以前は Python 3.10 で必須となる予定"
314
+ "でしたが、 Python 運営評議会はこの変更を延期することを2度決定しました "
315
+ "(`Python 3.10 での発表 <https://mail.python.org/archives/list/python-"
316
+ "[email protected] /message/CLVXXPQ2T2LQ5MP2Y53VVQFCXYWQJHKZ/>`__; `Python 3.11 で"
317
+ "の発表 <https://mail.python.org/archives/list/[email protected] /message/"
318
+ "VIZEBX5EYMSYIJNDBF6DMUMZOCWHARSO/>`__) 。最終決定はまだ下されていません。 :"
319
+ "pep:`563` と :pep:`649` も参照してください。"
294
320
295
321
#: ../../library/__future__.rst:127
296
322
msgid ":ref:`future`"
0 commit comments