@@ -2456,6 +2456,12 @@ msgid ""
2456
2456
"longer than 1 byte, and the ``LC_NUMERIC`` locale is different than the "
2457
2457
"``LC_CTYPE`` locale. This temporary change affects other threads."
2458
2458
msgstr ""
2459
+ "数値 (:class:`int`, :class:`float`, :class:`complex`, :class:`decimal.Decimal`"
2460
+ " とサブクラス) を ``n`` の整数表現型 (例: ``'{:n}'.format(1234)``) "
2461
+ "でフォーマットするとき、``LC_CTYPE`` ロケールと ``LC_NUMERIC`` ロケールの一方または両方が 1 バイトより長い非 ASCII"
2462
+ " 文字であると同時に異なる値である場合、この関数は :c:func:`localeconv` の ``decimal_point`` と "
2463
+ "``thousands_sep`` フィールドを読み取るため一時的に ``LC_CTYPE`` ロケールに ``LC_NUMERIC`` "
2464
+ "のロケール値を設定します。この一時的な変更は他のスレッドの動作に影響します。"
2459
2465
2460
2466
#: ../../library/stdtypes.rst:1622
2461
2467
msgid ""
@@ -3512,6 +3518,10 @@ msgid ""
3512
3518
"(blindly applying text processing algorithms to binary data formats that are"
3513
3519
" not ASCII compatible will usually lead to data corruption)."
3514
3520
msgstr ""
3521
+ "bytesリテラルと repr 出力は ASCII テキストをベースにしたものですが、 bytes オブジェクトは、各値が ``0 <= x < "
3522
+ "256`` の範囲に収まるような整数 (この制限に違反しようとすると :exc:`ValueError` が発生します) "
3523
+ "の不変なシーケンスとして振る舞います。多くのバイナリフォーマットがASCIIテキストを元にした要素を持っていたり何らかのテキスト操作アルゴリズムによって操作されるものの、任意のバイナリデータが一般にテキストになっているわけではないことを強調するためにこのように設計されました"
3524
+ " (何も考えずにテキスト操作アルゴリズムをASCII非互換なバイナリデータフォーマットに対して行うとデータを破壊することがあります)。"
3515
3525
3516
3526
#: ../../library/stdtypes.rst:2338
3517
3527
msgid ""
@@ -4715,6 +4725,8 @@ msgid ""
4715
4725
"amount of space in bytes that the array would use in a contiguous "
4716
4726
"representation. It is not necessarily equal to ``len(m)``::"
4717
4727
msgstr ""
4728
+ "``nbytes == product(shape) * itemsize == len(m.tobytes())``. "
4729
+ "その配列が連続表現において利用するスペースです。これは ``len(m)`` と一致するとは限りません::"
4718
4730
4719
4731
#: ../../library/stdtypes.rst:3763
4720
4732
msgid "Multi-dimensional arrays::"