@@ -2440,6 +2440,9 @@ msgid ""
2440
2440
"spaced-numbers-linspace/>`_ shows how to implement a lazy version of range "
2441
2441
"suitable for floating point applications."
2442
2442
msgstr ""
2443
+ "`linspace レシピ <https://code.activestate.com/recipes/579000-equally-spaced-"
2444
+ "numbers-linspace/>`_ は浮動小数点数向けの遅延評価版 range を実装する方法を紹"
2445
+ "介しています。"
2443
2446
2444
2447
#: ../../library/stdtypes.rst:1511
2445
2448
msgid "Text Sequence Type --- :class:`str`"
@@ -2683,6 +2686,9 @@ msgid ""
2683
2686
"Folding' of the Unicode Standard <https://www.unicode.org/versions/"
2684
2687
"Unicode15.1.0/ch03.pdf>`__."
2685
2688
msgstr ""
2689
+ "casefold のアルゴリズムは、 `Unicode 標準の 3.13 章 'Default Case Folding' に"
2690
+ "説明されています <https://www.unicode.org/versions/Unicode15.1.0/ch03."
2691
+ "pdf>`__ 。 "
2686
2692
2687
2693
#: ../../library/stdtypes.rst:1652
2688
2694
msgid ""
@@ -2908,6 +2914,13 @@ msgid ""
2908
2914
"of the Unicode Standard <https://www.unicode.org/versions/Unicode15.1.0/ch04."
2909
2915
"pdf>`_."
2910
2916
msgstr ""
2917
+ "文字列中のすべての文字がアルファベットで、かつ文字列が1文字以上であるならば "
2918
+ "``True`` を返します。それ以外は ``False`` を返します。ここでアルファベットと"
2919
+ "は Unicode 文字列データベースで \" Letter\" として定義されているもの、すなわ"
2920
+ "ち、一般カテゴリプロパティ \" Lm\" , \" Lt\" , \" Lu\" , \" Ll\" , または \" Lo\" のい"
2921
+ "ずれかをもつ文字です。なお、この定義は `Unicode 標準 の 4.10 章 'Letters, "
2922
+ "Alphabetic, and Ideographic' で定義されているアルファベットプロパティ"
2923
+ "<https://www.unicode.org/versions/Unicode15.1.0/ch04.pdf>`_ とは異なります。"
2911
2924
2912
2925
#: ../../library/stdtypes.rst:1814
2913
2926
msgid ""
@@ -3083,6 +3096,9 @@ msgid ""
3083
3096
"Folding' of the Unicode Standard <https://www.unicode.org/versions/"
3084
3097
"Unicode15.1.0/ch03.pdf>`__."
3085
3098
msgstr ""
3099
+ "小文字化のアルゴリズムは `Unicode Standardの 3.13 章 'Default Case Folding' "
3100
+ "で説明されています <https://www.unicode.org/versions/Unicode15.1.0/ch03."
3101
+ "pdf>`__。"
3086
3102
3087
3103
#: ../../library/stdtypes.rst:1950
3088
3104
msgid ""
@@ -3171,10 +3187,14 @@ msgid ""
3171
3187
"replaced. If *count* is not specified or ``-1``, then all occurrences are "
3172
3188
"replaced."
3173
3189
msgstr ""
3190
+ "文字列中にあらわれる部分文字列 *old* を全て *new* に置き換えた、文字列のコ"
3191
+ "ピーを返します。 *count* が与えられた場合、先頭から *count* で指定された数の"
3192
+ "部分文字列だけを置き換えます。 *count* の指定がないか、または ``-1`` が与えら"
3193
+ "れた場合、全ての部分文字列が置き換えられます。"
3174
3194
3175
3195
#: ../../library/stdtypes.rst:2026
3176
3196
msgid "*count* is now supported as a keyword argument."
3177
- msgstr ""
3197
+ msgstr "*count* はキーワード引数として指定可能になりました。 "
3178
3198
3179
3199
#: ../../library/stdtypes.rst:2032
3180
3200
msgid ""
@@ -3571,6 +3591,9 @@ msgid ""
3571
3591
"Folding' of the Unicode Standard <https://www.unicode.org/versions/"
3572
3592
"Unicode15.1.0/ch03.pdf>`__."
3573
3593
msgstr ""
3594
+ "大文字化のアルゴリズムは `Unicode 標準の 3.13 章 'Default Case Folding' で説"
3595
+ "明されています <https://www.unicode.org/versions/Unicode15.1.0/ch03."
3596
+ "pdf>`__ 。"
3574
3597
3575
3598
#: ../../library/stdtypes.rst:2299
3576
3599
msgid ""
@@ -3615,6 +3638,11 @@ msgid ""
3615
3638
"elements of *values*. The effect is similar to using the :c:func:`sprintf` "
3616
3639
"function in the C language. For example:"
3617
3640
msgstr ""
3641
+ "文字列オブジェクトには独特の組み込み演算子: ``%`` 演算子 (モジュロ) がありま"
3642
+ "す。これは 文字列の *書式化* あるいは *補間* 演算子としても知られています。 "
3643
+ "``format % values`` (*format* は文字列とします) が与えられると、*format* の中"
3644
+ "の ``%`` による変換の指定は0こ以上の *values* の要素で置き換えられます。この"
3645
+ "動作は C 言語における :c:func:`sprintf` 関数の利用方法に似ています。使用例:"
3618
3646
3619
3647
#: ../../library/stdtypes.rst:2350
3620
3648
msgid ""
0 commit comments