19
19
# Masato HASHIMOTO <cabezon.hashimoto@gmail.com>, 2023
20
20
# righteous righteous, 2023
21
21
# Skydelta, 2024
22
- # TENMYO Masakazu, 2024
23
22
# tomo, 2024
23
+ # TENMYO Masakazu, 2024
24
24
#
25
25
#, fuzzy
26
26
msgid ""
27
27
msgstr ""
28
28
"Project-Id-Version : Python 3.13\n "
29
29
"Report-Msgid-Bugs-To : \n "
30
- "POT-Creation-Date : 2024-06-07 14:15 +0000\n "
30
+ "POT-Creation-Date : 2024-06-21 14:14 +0000\n "
31
31
"PO-Revision-Date : 2021-06-28 01:06+0000\n "
32
- "Last-Translator : tomo , 2024\n "
32
+ "Last-Translator : TENMYO Masakazu , 2024\n "
33
33
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
34
34
"ja/)\n "
35
35
"MIME-Version : 1.0\n "
@@ -528,10 +528,17 @@ msgid ""
528
528
"`typesnumeric`). It cannot be subclassed further. Its only instances are "
529
529
"``False`` and ``True`` (see :ref:`typebool`)."
530
530
msgstr ""
531
+ "真偽値、すなわち ``True`` か ``False`` のいずれかを返します。引数は標準の :"
532
+ "ref:`真偽値判定手続き <truth>` を用いて変換されます。引数が偽かまたは省略され"
533
+ "た場合、この関数は ``False`` を返します。それ以外の場合は ``True`` を返しま"
534
+ "す。 :class:`bool` クラスは :class:`int` クラスの派生クラスです (:ref:"
535
+ "`typesnumeric` を参照してください)。このクラスからさらに派生することはできま"
536
+ "せん。このクラスのインスタンスは ``False`` と ``True`` のみです (:ref:"
537
+ "`typebool` を参照してください)。"
531
538
532
539
#: ../../library/functions.rst:156 ../../library/functions.rst:794
533
540
msgid "The parameter is now positional-only."
534
- msgstr ""
541
+ msgstr "引数は位置専用になりました。 "
535
542
536
543
#: ../../library/functions.rst:161
537
544
msgid ""
@@ -957,6 +964,8 @@ msgid ""
957
964
"Convert a single string or number to a complex number, or create a complex "
958
965
"number from real and imaginary parts."
959
966
msgstr ""
967
+ "単一の文字列や数値を複素数に変換する、あるいは実部と虚部から複素数を作成しま"
968
+ "す。"
960
969
961
970
#: ../../library/functions.rst:382 ../../library/functions.rst:739
962
971
#: ../../library/functions.rst:985
@@ -977,6 +986,15 @@ msgid ""
977
986
"token:`~float:complexvalue` production rule in the following grammar, after "
978
987
"parentheses and leading and trailing whitespace characters are removed:"
979
988
msgstr ""
989
+ "引数が文字列の場合、実数部( :func:`float` と同じ形式)、虚数部(同様の形式"
990
+ "で ``'j'`` または ``'J'`` 接尾辞)どちらか、あるいは両方(この場合、虚数部の"
991
+ "符号は必須)を含まなければなりません。文字列 は空白や括弧 ``'('`` と``')'`` "
992
+ "で囲むこともできますが、無視されます。文字列は、 ``'+'`` 、``'-'`` 、 "
993
+ "``'j'`` または ``'J'`` 接尾辞 、そして10進数の間に空白を含んではなりません。"
994
+ "たとえば ``complex('1+2j')`` はよいですが、 ``complex('1 + 2j')`` は :exc:"
995
+ "`ValueError` を送出します。より正確には、入力は括弧および先頭と末尾の空白文字"
996
+ "を除去した後、以下の文法における :token:`~float:complexvalue` の生成規則を満"
997
+ "たす必要があります:"
980
998
981
999
#: ../../library/functions.rst:422
982
1000
msgid ""
@@ -987,6 +1005,12 @@ msgid ""
987
1005
"If :meth:`!__float__` is not defined then it falls back to :meth:`~object."
988
1006
"__index__`."
989
1007
msgstr ""
1008
+ "引数が数値の場合、コンストラクタは :class:`int` や :class:`float` のように数"
1009
+ "値変換します。一般的な Python オブジェクト ``x`` では、 ``complex(x)`` は "
1010
+ "``x.__complex__()`` に委譲します。 :meth:`~object.__complex__` が定義されてい"
1011
+ "ない場合は :meth:`~object.__float__` にフォールバックします。 :meth:`!"
1012
+ "__float__` も定義されていない場合には、 :meth:`~object.__index__` にフォール"
1013
+ "バックします。"
990
1014
991
1015
#: ../../library/functions.rst:431
992
1016
msgid ""
@@ -998,10 +1022,15 @@ msgid ""
998
1022
"imaginary component ``real.imag+imag.real``. If one of arguments is a real "
999
1023
"number, only its real component is used in the above expressions."
1000
1024
msgstr ""
1025
+ "2引数が指定されるかキーワード引数が使われている場合、各引数は任意の数値型"
1026
+ "(複素数を含む)となります。両方の引数が実数の場合には、実数成分 *real* と虚"
1027
+ "数成分 *imag* を持つ複素数を返します。引数が両方とも複素数の場合、実数成分 "
1028
+ "``real.real-imag.imag`` と虚数成分 ``real.imag+imag.real`` を持つ複素数を返し"
1029
+ "ます。引数の片方が実数の場合、前述の式ではその実数成分のみ使われます。"
1001
1030
1002
1031
#: ../../library/functions.rst:441
1003
1032
msgid "If all arguments are omitted, returns ``0j``."
1004
- msgstr ""
1033
+ msgstr "引数がすべて省略された場合は、 ``0j`` を返します。 "
1005
1034
1006
1035
#: ../../library/functions.rst:443
1007
1036
msgid "The complex type is described in :ref:`typesnumeric`."
0 commit comments