17
17
# tomo, 2023
18
18
# righteous, 2023
19
19
# TENMYO Masakazu, 2024
20
- # Takeshi Nakazato, 2024
21
20
# Takanori Suzuki <[email protected] >, 2024
21
+ # Takeshi Nakazato, 2024
22
22
#
23
23
#, fuzzy
24
24
msgid ""
25
25
msgstr ""
26
26
"Project-Id-Version : Python 3.13\n "
27
27
"Report-Msgid-Bugs-To : \n "
28
- "POT-Creation-Date : 2024-07-19 14:16 +0000\n "
28
+ "POT-Creation-Date : 2024-07-26 14:15 +0000\n "
29
29
"PO-Revision-Date : 2021-06-28 01:13+0000\n "
30
- "
Last-Translator :
Takanori Suzuki <[email protected] > , 2024\n"
30
+ "Last-Translator : Takeshi Nakazato , 2024\n "
31
31
"Language-Team : Japanese (https://app.transifex.com/python-doc/teams/5390/ "
32
32
"ja/)\n "
33
33
"MIME-Version : 1.0\n "
@@ -2430,6 +2430,9 @@ msgid ""
2430
2430
"spaced-numbers-linspace/>`_ shows how to implement a lazy version of range "
2431
2431
"suitable for floating-point applications."
2432
2432
msgstr ""
2433
+ "`linspace レシピ <https://code.activestate.com/recipes/579000-equally-spaced-"
2434
+ "numbers-linspace/>`_ は浮動小数点数向けの遅延評価版 range を実装する方法を紹"
2435
+ "介しています。"
2433
2436
2434
2437
#: ../../library/stdtypes.rst:1511
2435
2438
msgid "Text Sequence Type --- :class:`str`"
@@ -3848,15 +3851,15 @@ msgstr "``'e'``"
3848
3851
3849
3852
#: ../../library/stdtypes.rst:2445 ../../library/stdtypes.rst:3664
3850
3853
msgid "Floating-point exponential format (lowercase)."
3851
- msgstr ""
3854
+ msgstr "指数表記の浮動小数点数 (小文字)。 "
3852
3855
3853
3856
#: ../../library/stdtypes.rst:2447 ../../library/stdtypes.rst:3666
3854
3857
msgid "``'E'``"
3855
3858
msgstr "``'E'``"
3856
3859
3857
3860
#: ../../library/stdtypes.rst:2447 ../../library/stdtypes.rst:3666
3858
3861
msgid "Floating-point exponential format (uppercase)."
3859
- msgstr ""
3862
+ msgstr "指数表記の浮動小数点数 (大文字)。 "
3860
3863
3861
3864
#: ../../library/stdtypes.rst:2449 ../../library/stdtypes.rst:3668
3862
3865
msgid "``'f'``"
@@ -3865,7 +3868,7 @@ msgstr "``'f'``"
3865
3868
#: ../../library/stdtypes.rst:2449 ../../library/stdtypes.rst:2451
3866
3869
#: ../../library/stdtypes.rst:3668 ../../library/stdtypes.rst:3670
3867
3870
msgid "Floating-point decimal format."
3868
- msgstr ""
3871
+ msgstr "10 進浮動小数点数。 "
3869
3872
3870
3873
#: ../../library/stdtypes.rst:2451 ../../library/stdtypes.rst:3670
3871
3874
msgid "``'F'``"
@@ -3880,6 +3883,8 @@ msgid ""
3880
3883
"Floating-point format. Uses lowercase exponential format if exponent is less "
3881
3884
"than -4 or not less than precision, decimal format otherwise."
3882
3885
msgstr ""
3886
+ "浮動小数点数。指数部が -4 以上または精度以下の場合には小文字指数表記、それ以"
3887
+ "外の場合には10進表記。"
3883
3888
3884
3889
#: ../../library/stdtypes.rst:2457 ../../library/stdtypes.rst:3676
3885
3890
msgid "``'G'``"
@@ -3890,6 +3895,8 @@ msgid ""
3890
3895
"Floating-point format. Uses uppercase exponential format if exponent is less "
3891
3896
"than -4 or not less than precision, decimal format otherwise."
3892
3897
msgstr ""
3898
+ "浮動小数点数。指数部が -4 以上または精度以下の場合には大文字指数表記、それ以"
3899
+ "外の場合には10進表記。"
3893
3900
3894
3901
#: ../../library/stdtypes.rst:2461 ../../library/stdtypes.rst:3680
3895
3902
msgid "``'c'``"
@@ -5424,6 +5431,8 @@ msgid ""
5424
5431
"Note that, as with floating-point numbers, ``v is w`` does *not* imply ``v "
5425
5432
"== w`` for memoryview objects."
5426
5433
msgstr ""
5434
+ "浮動小数点数の場合と同様 memoryview オブジェクトに対する ``v is w`` は ``v "
5435
+ "== w`` を意味 *しない* ことに注意してください。"
5427
5436
5428
5437
#: ../../library/stdtypes.rst:3901
5429
5438
msgid ""
@@ -7276,6 +7285,9 @@ msgid ""
7276
7285
"UnionType` and used for :func:`isinstance` checks. An object cannot be "
7277
7286
"instantiated from the type::"
7278
7287
msgstr ""
7288
+ "ユーザー定義の Union オブジェクトは :data:`types.UnionType` からアクセスする"
7289
+ "ことができ、 :func:`isinstance` によるチェックにも使うことができます。型から"
7290
+ "オブジェクトをインスタンスかすることができません::"
7279
7291
7280
7292
#: ../../library/stdtypes.rst:5250
7281
7293
msgid ""
@@ -7706,13 +7718,17 @@ msgstr ""
7706
7718
msgid ""
7707
7719
"Limiting conversion size offers a practical way to avoid :cve:`2020-10735`."
7708
7720
msgstr ""
7721
+ "変換するサイズを制限することは、 :cve:`2020-10735` を回避する実践的な方法を提"
7722
+ "供します。"
7709
7723
7710
7724
#: ../../library/stdtypes.rst:5575
7711
7725
msgid ""
7712
7726
"The limit is applied to the number of digit characters in the input or "
7713
7727
"output string when a non-linear conversion algorithm would be involved. "
7714
7728
"Underscores and the sign are not counted towards the limit."
7715
7729
msgstr ""
7730
+ "制限は、非線形な変換アルゴリズムが必要とされる場合に、入力または出力文字列の"
7731
+ "桁数に対して適用されます。アンダースコアや正負の符号はカウントされません。"
7716
7732
7717
7733
#: ../../library/stdtypes.rst:5579
7718
7734
msgid ""
@@ -7895,6 +7911,14 @@ msgid ""
7895
7911
"exist for the code. A workaround for source that contains such large "
7896
7912
"constants is to convert them to ``0x`` hexadecimal form as it has no limit."
7897
7913
msgstr ""
7914
+ "小さな上限値を設定することで、問題が起きる *可能性があります* 。まれではあり"
7915
+ "ますが、ソースコード内で閾値を超える定数が10進数の整数として存在するコードが"
7916
+ "存在します。値に制限をつけることの帰結は、10進数の整数リテラルで制限を超える"
7917
+ "長さを持つ定数を含むコードのパース時、すなわち通常は起動時、モジュールのイン"
7918
+ "ポート時、またはインストール時など、そのコードのための ``.pyc`` ファイルが作"
7919
+ "られるまでのどこかの時点でのエラーです。大きな定数を含むソースコードに対する"
7920
+ "回避策は、その定数を、 ``0x`` を使って値の制限を持たない16進数の値に変換する"
7921
+ "ことです。"
7898
7922
7899
7923
#: ../../library/stdtypes.rst:5686
7900
7924
msgid ""
@@ -7903,6 +7927,10 @@ msgid ""
7903
7927
"during startup and even during any installation step that may invoke Python "
7904
7928
"to precompile ``.py`` sources to ``.pyc`` files."
7905
7929
msgstr ""
7930
+ "小さな上限値を使う場合、アプリケーションを徹底的にテストしてください。環境変"
7931
+ "数やフラグを使って、制限が起動時や、さらにはインストールの段階で Python が "
7932
+ "``.py`` ファイルを事前にコンパイルして ``.pyc`` ファイルを作成する際にも適用"
7933
+ "されるようにした状態で、確実にテストが実行されるようにしてください。"
7906
7934
7907
7935
#: ../../library/stdtypes.rst:5692
7908
7936
msgid "Recommended configuration"
@@ -7915,6 +7943,12 @@ msgid ""
7915
7943
"limit, set it from your main entry point using Python version agnostic code "
7916
7944
"as these APIs were added in security patch releases in versions before 3.12."
7917
7945
msgstr ""
7946
+ "デフォルトの :data:`sys.int_info.default_max_str_digits` は、ほとんどのアプリ"
7947
+ "ケーションで適切な値であると期待されます。もしあなたのアプリケーションが異な"
7948
+ "る制限値を必要とする場合は、メインのエントリーポイントから、 Python バージョ"
7949
+ "ンに依存しないコードを使って制限値を設定してください。こうしなければならない"
7950
+ "理由は、これらの API が 3.12 以前のセキュリテイパッチリリースで追加されたため"
7951
+ "です。"
7918
7952
7919
7953
#: ../../library/stdtypes.rst:5699
7920
7954
msgid "Example::"
@@ -8164,7 +8198,7 @@ msgstr "整数"
8164
8198
8165
8199
#: ../../library/stdtypes.rst:208 ../../library/stdtypes.rst:229
8166
8200
msgid "floating-point"
8167
- msgstr ""
8201
+ msgstr "浮動小数点 "
8168
8202
8169
8203
#: ../../library/stdtypes.rst:208 ../../library/stdtypes.rst:229
8170
8204
msgid "complex number"
0 commit comments