@@ -6030,6 +6030,13 @@ msgid ""
6030
6030
"an empty list. To get distinct values, use a :ref:`dict comprehension "
6031
6031
"<dict>` instead."
6032
6032
msgstr ""
6033
+ ":meth:`fromkeys` は新しい辞書を返すクラスメソッドです。\n"
6034
+ "*value* はデフォルトで ``None`` となります。\n"
6035
+ "作られる辞書内のすべての値が同一のインスタンスを指すことになるため、*value* "
6036
+ "にミュータブルなオブジェクト (例えば空のリスト) を指定しても通常意味はありま"
6037
+ "せん。\n"
6038
+ "別々の値を指すようにしたい場合は、代わりに :ref:`辞書内包表記 <dict>` を使用"
6039
+ "してください。"
6033
6040
6034
6041
#: ../../library/stdtypes.rst:4440
6035
6042
msgid ""
@@ -6145,20 +6152,29 @@ msgid ""
6145
6152
"always return ``False``. This also applies when comparing ``dict.values()`` "
6146
6153
"to itself::"
6147
6154
msgstr ""
6155
+ "``dict.values()`` で得られた2つのビューの等しさを比較すると、必ず ``False`` "
6156
+ "が返ります。\n"
6157
+ "``dict.values()`` どうしを比較したときも同様です::"
6148
6158
6149
6159
#: ../../library/stdtypes.rst:4511
6150
6160
msgid ""
6151
6161
"Create a new dictionary with the merged keys and values of *d* and *other*, "
6152
6162
"which must both be dictionaries. The values of *other* take priority when "
6153
6163
"*d* and *other* share keys."
6154
6164
msgstr ""
6165
+ "*d* と *other* のキーと値を統合した新しい辞書を作成します。\n"
6166
+ "*d* と *other* のキーに重複がある場合は、 *other* の方の値が優先されます。"
6155
6167
6156
6168
#: ../../library/stdtypes.rst:4519
6157
6169
msgid ""
6158
6170
"Update the dictionary *d* with keys and values from *other*, which may be "
6159
6171
"either a :term:`mapping` or an :term:`iterable` of key/value pairs. The "
6160
6172
"values of *other* take priority when *d* and *other* share keys."
6161
6173
msgstr ""
6174
+ "辞書 *d* のキーと値を *other* で更新します。\n"
6175
+ "*other* は :term:`マッピング <mapping>` か、またはキーと値のペアの :term:`イ"
6176
+ "テラブル <iterable>` です。\n"
6177
+ "*d* と *other* のキーに重複がある場合は、 *other* の方の値が優先されます。"
6162
6178
6163
6179
#: ../../library/stdtypes.rst:4525
6164
6180
msgid ""
@@ -6189,11 +6205,11 @@ msgstr ""
6189
6205
6190
6206
#: ../../library/stdtypes.rst:4551
6191
6207
msgid "Dictionaries and dictionary views are reversible. ::"
6192
- msgstr ""
6208
+ msgstr "辞書と辞書のビューは ``reversed()`` で順序を逆にすることができます:: "
6193
6209
6194
6210
#: ../../library/stdtypes.rst:4563
6195
6211
msgid "Dictionaries are now reversible."
6196
- msgstr ""
6212
+ msgstr "辞書がリバース可能になりました。 "
6197
6213
6198
6214
#: ../../library/stdtypes.rst:4568
6199
6215
msgid ""
@@ -6276,10 +6292,12 @@ msgid ""
6276
6292
"Return a reverse iterator over the keys, values or items of the dictionary. "
6277
6293
"The view will be iterated in reverse order of the insertion."
6278
6294
msgstr ""
6295
+ "辞書のキーもしくは値、項目の順序を逆にしたイテレーターを返します。\n"
6296
+ "戻り値のビューは、挿入された順とは逆の順でイテレートします。"
6279
6297
6280
6298
#: ../../library/stdtypes.rst:4615
6281
6299
msgid "Dictionary views are now reversible."
6282
- msgstr ""
6300
+ msgstr "辞書のビューがリバース可能になりました。 "
6283
6301
6284
6302
#: ../../library/stdtypes.rst:4619
6285
6303
msgid ""
@@ -6441,7 +6459,7 @@ msgstr ""
6441
6459
6442
6460
#: ../../library/stdtypes.rst:4736
6443
6461
msgid "Generic Alias Type"
6444
- msgstr ""
6462
+ msgstr "ジェネリックエイリアス型 "
6445
6463
6446
6464
#: ../../library/stdtypes.rst:4742
6447
6465
msgid ""
0 commit comments