18
18
# Nozomu Kaneko <[email protected] >, 2023
19
19
# tomo, 2023
20
20
# Masato HASHIMOTO <[email protected] >, 2023
21
+ # righteous righteous, 2023
21
22
#
22
23
#, fuzzy
23
24
msgid ""
24
25
msgstr ""
25
26
"Project-Id-Version : Python 3.12\n "
26
27
"Report-Msgid-Bugs-To : \n "
27
- "POT-Creation-Date : 2023-09-29 14:12 +0000\n "
28
+ "POT-Creation-Date : 2023-10-06 14:14 +0000\n "
28
29
"PO-Revision-Date : 2021-06-28 01:06+0000\n "
29
- "
Last-Translator :
Masato HASHIMOTO <[email protected] > , 2023\n"
30
+ "Last-Translator : righteous righteous , 2023\n "
30
31
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
31
32
"ja/)\n "
32
33
"MIME-Version : 1.0\n "
@@ -496,6 +497,11 @@ msgid ""
496
497
"object, it has to define an :meth:`~object.__index__` method that returns an "
497
498
"integer. Some examples:"
498
499
msgstr ""
500
+ "整数を先頭に \" 0b\" が付いた 2 進文字列に変換します。\n"
501
+ "結果は Python の式としても使える形式になります。\n"
502
+ "*x* が Python の :class:`int` オブジェクトでない場合、整数を返す :meth:"
503
+ "`~object.__index__` メソッドが定義されていなければなりません。\n"
504
+ "いくつかの例を示します:"
499
505
500
506
#: ../../library/functions.rst:133
501
507
msgid ""
@@ -519,6 +525,13 @@ msgid ""
519
525
"It cannot be subclassed further. Its only instances are ``False`` and "
520
526
"``True`` (see :ref:`typebool`)."
521
527
msgstr ""
528
+ "真偽値、すなわち ``True`` か ``False`` のいずれかを返します。 *x* は標準の :"
529
+ "ref:`真偽値判定手続き <truth>` を用いて変換されます。 *x* が偽かまたは省略さ"
530
+ "れた場合、この関数は ``False`` を返します。それ以外の場合は ``True`` を返しま"
531
+ "す。 :class:`bool` クラスは :class:`int` クラスの派生クラスです (:ref:"
532
+ "`typesnumeric` を参照してください)。このクラスからさらに派生することはできま"
533
+ "せん。このクラスのインスタンスは ``False`` と ``True`` の身です (:ref:"
534
+ "`typebool` を参照してください)。"
522
535
523
536
#: ../../library/functions.rst:154 ../../library/functions.rst:707
524
537
#: ../../library/functions.rst:931
@@ -554,12 +567,17 @@ msgid ""
554
567
"envvar:`PYTHONBREAKPOINT` environment variable. See :func:`sys."
555
568
"breakpointhook` for usage details."
556
569
msgstr ""
570
+ "デフォルトでは、環境変数 :envvar:`PYTHONBREAKPOINT` をセットすることで :func:"
571
+ "`breakpoint` の動作を変えることができます。\n"
572
+ "使い方の詳細は :func:`sys.breakpointhook` を参照してください。"
557
573
558
574
#: ../../library/functions.rst:175
559
575
msgid ""
560
576
"Note that this is not guaranteed if :func:`sys.breakpointhook` has been "
561
577
"replaced."
562
578
msgstr ""
579
+ "ただし、 :func:`sys.breakpointhook` が別の関数で置き換えられている場合、上記"
580
+ "の環境変数によって必ずしも動作を変えることができないことに注意してください。"
563
581
564
582
#: ../../library/functions.rst:178
565
583
msgid ""
@@ -964,6 +982,11 @@ msgid ""
964
982
"falls back to :meth:`~object.__float__`. If :meth:`!__float__` is not "
965
983
"defined then it falls back to :meth:`~object.__index__`."
966
984
msgstr ""
985
+ "一般的な Python オブジェクト ``x`` に対して、 ``complex(x)`` は ``x."
986
+ "__complex__()`` に処理を委譲します。 :meth:`~object.__complex__` が定義されて"
987
+ "いない場合は :meth:`~object.__float__` にフォールバックします。 :meth:"
988
+ "`~object.__float__` も定義されていない場合は :meth:`~object.__index__` に"
989
+ "フォールバックします。"
967
990
968
991
#: ../../library/functions.rst:392
969
992
msgid ""
@@ -989,6 +1012,8 @@ msgid ""
989
1012
"Falls back to :meth:`~object.__index__` if :meth:`~object.__complex__` and :"
990
1013
"meth:`~object.__float__` are not defined."
991
1014
msgstr ""
1015
+ ":meth:`~object.__complex__` と :meth:`~object.__float__` が定義されていない場"
1016
+ "合、 :meth:`~object.__index__` へフォールバックします。"
992
1017
993
1018
#: ../../library/functions.rst:409
994
1019
msgid ""
@@ -1425,6 +1450,9 @@ msgid ""
1425
1450
"__float__()``. If :meth:`~object.__float__` is not defined then it falls "
1426
1451
"back to :meth:`~object.__index__`."
1427
1452
msgstr ""
1453
+ "一般の Python オブジェクト ``x`` に対して、``float(x)`` は ``x.__float__()`` "
1454
+ "に委譲します。 :meth:`~object.__float__()` が定義されていない場合、:meth:"
1455
+ "`~object.__index__` へフォールバックします。"
1428
1456
1429
1457
#: ../../library/functions.rst:687
1430
1458
msgid "If no argument is given, ``0.0`` is returned."
@@ -1443,6 +1471,8 @@ msgid ""
1443
1471
"Falls back to :meth:`~object.__index__` if :meth:`~object.__float__` is not "
1444
1472
"defined."
1445
1473
msgstr ""
1474
+ ":meth:`~object.__float__` が定義されていない場合、 :meth:`~object.__index__` "
1475
+ "へフォールバックします。"
1446
1476
1447
1477
#: ../../library/functions.rst:720
1448
1478
msgid ""
@@ -1575,6 +1605,9 @@ msgid ""
1575
1605
"truncates the return value based on the bit width of the host machine. See :"
1576
1606
"meth:`__hash__ <object.__hash__>` for details."
1577
1607
msgstr ""
1608
+ "独自の :meth:`__hash__` メソッドを実装したオブジェクトを使う場合、:func:"
1609
+ "`hash` が実行するマシンのビット幅に合わせて戻り値を切り捨てることに注意してく"
1610
+ "ださい。詳しくは :meth:`__hash__ <object.__hash__>` を参照してください。"
1578
1611
1579
1612
#: ../../library/functions.rst:802
1580
1613
msgid ""
@@ -1624,6 +1657,10 @@ msgid ""
1624
1657
"\" 0x\" . If *x* is not a Python :class:`int` object, it has to define an :"
1625
1658
"meth:`~object.__index__` method that returns an integer. Some examples:"
1626
1659
msgstr ""
1660
+ "整数を先頭に \" 0x\" が付いた小文字の 16 進文字列に変換します。\n"
1661
+ "*x* が Python の :class:`int` オブジェクトでない場合、整数を返す :meth:"
1662
+ "`~object.__index__` メソッドが定義されていなければなりません。\n"
1663
+ "いくつかの例を示します:"
1627
1664
1628
1665
#: ../../library/functions.rst:832
1629
1666
msgid ""
@@ -1733,6 +1770,15 @@ msgid ""
1733
1770
"__trunc__`, it returns ``x.__trunc__()``. For floating point numbers, this "
1734
1771
"truncates towards zero."
1735
1772
msgstr ""
1773
+ "数値または文字列 *x* から作成された整数オブジェクトを返します。引数が与えられ"
1774
+ "ない場合には ``0`` を返します。\n"
1775
+ "*x* に :meth:`~object.__int__` が定義されている場合は、 ``int(x)`` は ``x."
1776
+ "__int__()`` を返します。\n"
1777
+ "*x* に :meth:`~object.__index__` が定義されている場合は、 ``x.__index__()`` "
1778
+ "を返します。\n"
1779
+ "*x* に :meth:`~object.__trunc__` が定義されている場合は、 ``x.__trunc__()`` "
1780
+ "を返します。\n"
1781
+ "浮動小数点数については、これは 0 に近い側へ切り捨てます。"
1736
1782
1737
1783
#: ../../library/functions.rst:902
1738
1784
msgid ""
@@ -1796,10 +1842,12 @@ msgid ""
1796
1842
"Falls back to :meth:`~object.__index__` if :meth:`~object.__int__` is not "
1797
1843
"defined."
1798
1844
msgstr ""
1845
+ ":meth:`~object.__int__` が定義されていない場合、 :meth:`~object.__index__` へ"
1846
+ "フォールバックします。"
1799
1847
1800
1848
#: ../../library/functions.rst:937
1801
1849
msgid "The delegation to :meth:`~object.__trunc__` is deprecated."
1802
- msgstr ""
1850
+ msgstr ":meth:`~object.__trunc__` への処理の委譲は非推奨になりました。 "
1803
1851
1804
1852
#: ../../library/functions.rst:940
1805
1853
msgid ""
@@ -2089,6 +2137,11 @@ msgid ""
2089
2137
"object, it has to define an :meth:`~object.__index__` method that returns an "
2090
2138
"integer. For example:"
2091
2139
msgstr ""
2140
+ "整数を先頭に \" 0o\" が付いた 8 進文字列に変換します。\n"
2141
+ "結果は Python の式としても使える形式になります。\n"
2142
+ "*x* が Python の :class:`int` オブジェクトでない場合、整数を返す :meth:"
2143
+ "`~object.__index__` メソッドが定義されていなければなりません。\n"
2144
+ "例えば、次のようになります:"
2092
2145
2093
2146
#: ../../library/functions.rst:1149
2094
2147
msgid ""
@@ -2280,6 +2333,10 @@ msgid ""
2280
2333
"size\" and falling back on :const:`io.DEFAULT_BUFFER_SIZE`. On many "
2281
2334
"systems, the buffer will typically be 4096 or 8192 bytes long."
2282
2335
msgstr ""
2336
+ "バイナリファイルは固定サイズのチャンクでバッファリングされます。バッファサイ"
2337
+ "ズは、下層のデバイスの「ブロックサイズ」を決定するヒューリスティックを用いて"
2338
+ "選択され、それが不可能な場合は代わりに :const:`io.DEFAULT_BUFFER_SIZE` が使わ"
2339
+ "れます。多くのシステムでは、バッファサイズは通常 4096 か 8192 バイト長です。"
2283
2340
2284
2341
#: ../../library/functions.rst:1237
2285
2342
msgid ""
@@ -2364,6 +2421,9 @@ msgid ""
2364
2421
"not supported by the encoding are replaced with the appropriate XML "
2365
2422
"character reference :samp:`&#{nnn};`."
2366
2423
msgstr ""
2424
+ "``'xmlcharrefreplace'`` はファイルへの書き込み時のみサポートされます。そのエ"
2425
+ "ンコーディングでサポートされない文字は、:samp:`&#{nnn};` 形式の適切な XML 文"
2426
+ "字参照で置換されます。"
2367
2427
2368
2428
#: ../../library/functions.rst:1276
2369
2429
msgid ""
@@ -2694,6 +2754,8 @@ msgid ""
2694
2754
"Output buffering is usually determined by *file*. However, if *flush* is "
2695
2755
"true, the stream is forcibly flushed."
2696
2756
msgstr ""
2757
+ "出力がバッファ化されるかどうかは通常 *file* で決まりますが、*flush* キーワー"
2758
+ "ド引数が真ならストリームは強制的にフラッシュされます。"
2697
2759
2698
2760
#: ../../library/functions.rst:1458
2699
2761
msgid "Added the *flush* keyword argument."
@@ -2956,6 +3018,9 @@ msgid ""
2956
3018
"Slice objects are now :term:`hashable` (provided :attr:`~slice.start`, :attr:"
2957
3019
"`~slice.stop`, and :attr:`~slice.step` are hashable)."
2958
3020
msgstr ""
3021
+ "スライスオブジェクトが :term:`hashable` (ハッシュ可能) となりました (ただし、"
3022
+ "属性 :attr:`~slice.start` 、 :attr:`~slice.stop` 、 :attr:`~slice.step` がす"
3023
+ "べてハッシュ可能である場合に限ります)。"
2959
3024
2960
3025
#: ../../library/functions.rst:1652
2961
3026
msgid "Return a new sorted list from the items in *iterable*."
@@ -3150,6 +3215,8 @@ msgid ""
3150
3215
"Summation of floats switched to an algorithm that gives higher accuracy on "
3151
3216
"most builds."
3152
3217
msgstr ""
3218
+ "浮動小数点数の総和を計算するとき、ほとんどの環境でより高精度な結果が得られる"
3219
+ "アルゴリズムを使用するようになりました。"
3153
3220
3154
3221
#: ../../library/functions.rst:1761
3155
3222
msgid ""
@@ -3739,7 +3806,7 @@ msgstr "ファイル"
3739
3806
3740
3807
#: ../../library/functions.rst:1189
3741
3808
msgid "modes"
3742
- msgstr ""
3809
+ msgstr "modes "
3743
3810
3744
3811
#: ../../library/functions.rst:1282
3745
3812
msgid "universal newlines"
0 commit comments