@@ -1173,6 +1173,8 @@ msgid ""
11731173"Added :func:`~gettext.pgettext` and its variants. (Contributed by Franz "
11741174"Glasner, Éric Araujo, and Cheryl Sabella in :issue:`2504`.)"
11751175msgstr ""
1176+ ":func:`~gettext.pgettext` を含む、類似のいくつかの関数が追加されました。 (Franz Glasner, Éric "
1177+ "Araujo, Cheryl Sabella の貢献による :issue:`2504`)"
11761178
11771179#: ../../whatsnew/3.8.rst:835
11781180msgid "gzip"
@@ -1183,17 +1185,22 @@ msgid ""
11831185"Added the *mtime* parameter to :func:`gzip.compress` for reproducible "
11841186"output. (Contributed by Guo Ci Teo in :issue:`34898`.)"
11851187msgstr ""
1188+ "出力の再現性のために、func:`gzip.compress` に *mtime* パラメータが追加されました。 (Guo Ci Teo の貢献による "
1189+ ":issue:`34898`)"
11861190
11871191#: ../../whatsnew/3.8.rst:840
11881192msgid ""
11891193"A :exc:`~gzip.BadGzipFile` exception is now raised instead of :exc:`OSError`"
11901194" for certain types of invalid or corrupt gzip files. (Contributed by Filip "
11911195"Gruszczyński, Michele Orrù, and Zackery Spytz in :issue:`6584`.)"
11921196msgstr ""
1197+ "不正な、あるいは破損した gzip ファイルのうち、所定の種類のものについて、:exc:`OSError` にかわって "
1198+ ":exc:`~gzip.BadGzipFile` 例外が送出されるようになりました。(Filip Gruszczyński, Michele "
1199+ "Orrù, Zackery Spytz の貢献による :issue:`6584`)"
11931200
11941201#: ../../whatsnew/3.8.rst:847
11951202msgid "IDLE and idlelib"
1196- msgstr ""
1203+ msgstr "IDLE と idelelib "
11971204
11981205#: ../../whatsnew/3.8.rst:849
11991206msgid ""
@@ -1235,7 +1242,7 @@ msgstr ""
12351242
12361243#: ../../whatsnew/3.8.rst:875
12371244msgid "The changes above have been backported to 3.7 maintenance releases."
1238- msgstr ""
1245+ msgstr "上で挙げた変更は 3.7 のメンテナンスリリースにバックポートされました。 "
12391246
12401247#: ../../whatsnew/3.8.rst:879
12411248msgid "inspect"
@@ -1248,10 +1255,14 @@ msgid ""
12481255"docstrings. This provides documentation options similar to what we already "
12491256"have for :func:`property`, :func:`classmethod`, and :func:`staticmethod`::"
12501257msgstr ""
1258+ ":func:`inspect.getdoc` 関数は、``__slots__`` 属性に値が docstrings であるような "
1259+ ":class:`dict` がある場合、docstrings の内容を探索できるようになりました。これは、既に "
1260+ ":func:`property`、:func:`classmethod`、:func:`staticmethod` "
1261+ "に現在あるような、ドキュメント生成の選択肢を提供します::"
12511262
12521263#: ../../whatsnew/3.8.rst:893
12531264msgid "(Contributed by Raymond Hettinger in :issue:`36326`.)"
1254- msgstr ""
1265+ msgstr "(Raymond Hettinger の貢献による :issue:`36326`) "
12551266
12561267#: ../../whatsnew/3.8.rst:897
12571268msgid "io"
@@ -1274,20 +1285,23 @@ msgid ""
12741285"The :func:`itertools.accumulate` function added an option *initial* keyword "
12751286"argument to specify an initial value::"
12761287msgstr ""
1288+ ":func:`itertools.accumulate` 関数に、初期値を定める、オプションの *initial* キーワード引数が追加されました::"
12771289
12781290#: ../../whatsnew/3.8.rst:915
12791291msgid "(Contributed by Lisa Roach in :issue:`34659`.)"
1280- msgstr ""
1292+ msgstr "(Lisa Roach の貢献による :issue:`34659`) "
12811293
12821294#: ../../whatsnew/3.8.rst:919
12831295msgid "json.tool"
1284- msgstr ""
1296+ msgstr "json.tool "
12851297
12861298#: ../../whatsnew/3.8.rst:921
12871299msgid ""
12881300"Add option ``--json-lines`` to parse every input line as a separate JSON "
12891301"object. (Contributed by Weipeng Hong in :issue:`31553`.)"
12901302msgstr ""
1303+ "一行ごとに別々の JSON オブジェクトへ解析をする ``--json-lines`` オプションが追加されました。(Weipeng Hong "
1304+ "の貢献による :issue:`31553`)"
12911305
12921306#: ../../whatsnew/3.8.rst:926
12931307msgid "logging"
@@ -1300,6 +1314,8 @@ msgid ""
13001314"closed before carrying out the configuration specified by the other "
13011315"arguments."
13021316msgstr ""
1317+ ":func:`logging.basicConfig()` に *force* "
1318+ "キーワード引数が追加されました。これが真になっている場合、ルートのロガーに取り付けられたハンドラは全て取り除かれ、他の引数によって指定された設定が有効になる前に閉じられます。"
13031319
13041320#: ../../whatsnew/3.8.rst:933
13051321msgid ""
@@ -1324,24 +1340,30 @@ msgid ""
13241340"Added new function :func:`math.dist` for computing Euclidean distance "
13251341"between two points. (Contributed by Raymond Hettinger in :issue:`33089`.)"
13261342msgstr ""
1343+ "二点間のユークリッド距離を計算する :func:`math.dist` 関数が追加されました。(Raymond Hettinger の貢献による "
1344+ ":issue:`33089`)"
13271345
13281346#: ../../whatsnew/3.8.rst:949
13291347msgid ""
13301348"Expanded the :func:`math.hypot` function to handle multiple dimensions. "
13311349"Formerly, it only supported the 2-D case. (Contributed by Raymond Hettinger "
13321350"in :issue:`33089`.)"
13331351msgstr ""
1352+ ":func:`math.hypot` 関数は、3次元以上を扱えるように拡張されました。以前は、二次元の場合のみに対応していました。(Raymond "
1353+ "Hettinger の貢献による :issue:`33089`)"
13341354
13351355#: ../../whatsnew/3.8.rst:953
13361356msgid ""
13371357"Added new function, :func:`math.prod`, as analogous function to :func:`sum` "
13381358"that returns the product of a 'start' value (default: 1) times an iterable "
13391359"of numbers::"
13401360msgstr ""
1361+ ":func:`sum` に類似する関数として、初期値(デフォルトは1) に対してイテレート可能なオブジェクトの数を掛けていく "
1362+ ":func:`math.prod` 関数が追加されました::"
13411363
13421364#: ../../whatsnew/3.8.rst:962
13431365msgid "(Contributed by Pablo Galindo in :issue:`35606`.)"
1344- msgstr ""
1366+ msgstr "(Pablo Galindo の貢献による :issue:`35606`) "
13451367
13461368#: ../../whatsnew/3.8.rst:964
13471369msgid ""