@@ -12,7 +12,7 @@ msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.11\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2023-03-17 14:14 +0000\n "
15
+ "POT-Creation-Date : 2023-03-31 14:13 +0000\n "
16
16
"PO-Revision-Date : 2021-06-28 01:07+0000\n "
17
17
"Last-Translator : tomo, 2021\n "
18
18
"Language-Team : Japanese (https://www.transifex.com/python-doc/teams/5390/ "
@@ -137,7 +137,7 @@ msgstr ""
137
137
msgid "Added support for the ``'x'``, ``'xb'`` and ``'xt'`` modes."
138
138
msgstr " ``'x'``、``'xb'``、``'xt'`` モードのサポートが追加されました。"
139
139
140
- #: ../../library/gzip.rst:59 ../../library/gzip.rst:165
140
+ #: ../../library/gzip.rst:59 ../../library/gzip.rst:171
141
141
msgid "Accepts a :term:`path-like object`."
142
142
msgstr ":term:`path-like object` を受け入れるようになりました。"
143
143
@@ -301,28 +301,35 @@ msgstr ""
301
301
"スタンプを使用します。形式は、 :func:`time.time` の返り値や、:func:`os.stat` "
302
302
"が返すオブジェクトの :attr:`~os.stat_result.st_mtime` 属性と同一です。"
303
303
304
- #: ../../library/gzip.rst:146
304
+ #: ../../library/gzip.rst:148
305
+ msgid ""
306
+ "The path to the gzip file on disk, as a :class:`str` or :class:`bytes`. "
307
+ "Equivalent to the output of :func:`os.fspath` on the original input path, "
308
+ "with no other normalization, resolution or expansion."
309
+ msgstr ""
310
+
311
+ #: ../../library/gzip.rst:152
305
312
msgid ""
306
313
"Support for the :keyword:`with` statement was added, along with the *mtime* "
307
314
"constructor argument and :attr:`mtime` attribute."
308
315
msgstr ""
309
316
":keyword:`with` 文がサポートされました。*mtime* コンストラクタ引数と :attr:"
310
317
"`mtime` 属性が追加されました。"
311
318
312
- #: ../../library/gzip.rst:150
319
+ #: ../../library/gzip.rst:156
313
320
msgid "Support for zero-padded and unseekable files was added."
314
321
msgstr ""
315
322
"ゼロパディングされたファイルやシーク出来ないファイルがサポートされました。"
316
323
317
- #: ../../library/gzip.rst:153
324
+ #: ../../library/gzip.rst:159
318
325
msgid "The :meth:`io.BufferedIOBase.read1` method is now implemented."
319
326
msgstr ":meth:`io.BufferedIOBase.read1` メソッドを実装しました。"
320
327
321
- #: ../../library/gzip.rst:156
328
+ #: ../../library/gzip.rst:162
322
329
msgid "Added support for the ``'x'`` and ``'xb'`` modes."
323
330
msgstr "``'x'`` ならびに ``'xb'`` モードがサポートされました。"
324
331
325
- #: ../../library/gzip.rst:159
332
+ #: ../../library/gzip.rst:165
326
333
msgid ""
327
334
"Added support for writing arbitrary :term:`bytes-like objects <bytes-like "
328
335
"object>`. The :meth:`~io.BufferedIOBase.read` method now accepts an argument "
@@ -332,13 +339,13 @@ msgstr ""
332
339
"ポートされました。 :meth:`~io.BufferedIOBase.read` メソッドが ``None`` を引数"
333
340
"として受け取るようになりました。"
334
341
335
- #: ../../library/gzip.rst:168
342
+ #: ../../library/gzip.rst:174
336
343
msgid ""
337
344
"Opening :class:`GzipFile` for writing without specifying the *mode* argument "
338
345
"is deprecated."
339
346
msgstr ""
340
347
341
- #: ../../library/gzip.rst:175
348
+ #: ../../library/gzip.rst:181
342
349
msgid ""
343
350
"Compress the *data*, returning a :class:`bytes` object containing the "
344
351
"compressed data. *compresslevel* and *mtime* have the same meaning as in "
@@ -347,18 +354,18 @@ msgid ""
347
354
"The zlib function is faster."
348
355
msgstr ""
349
356
350
- #: ../../library/gzip.rst:182
357
+ #: ../../library/gzip.rst:188
351
358
msgid "Added the *mtime* parameter for reproducible output."
352
359
msgstr ""
353
360
354
- #: ../../library/gzip.rst:184
361
+ #: ../../library/gzip.rst:190
355
362
msgid ""
356
363
"Speed is improved by compressing all data at once instead of in a streamed "
357
364
"fashion. Calls with *mtime* set to ``0`` are delegated to :func:`zlib."
358
365
"compress` for better speed."
359
366
msgstr ""
360
367
361
- #: ../../library/gzip.rst:191
368
+ #: ../../library/gzip.rst:197
362
369
msgid ""
363
370
"Decompress the *data*, returning a :class:`bytes` object containing the "
364
371
"uncompressed data. This function is capable of decompressing multi-member "
@@ -367,86 +374,86 @@ msgid ""
367
374
"*wbits* set to 31 is faster."
368
375
msgstr ""
369
376
370
- #: ../../library/gzip.rst:198
377
+ #: ../../library/gzip.rst:204
371
378
msgid ""
372
379
"Speed is improved by decompressing members at once in memory instead of in a "
373
380
"streamed fashion."
374
381
msgstr ""
375
382
376
- #: ../../library/gzip.rst:205
383
+ #: ../../library/gzip.rst:211
377
384
msgid "Examples of usage"
378
385
msgstr "使い方の例"
379
386
380
- #: ../../library/gzip.rst:207
387
+ #: ../../library/gzip.rst:213
381
388
msgid "Example of how to read a compressed file::"
382
389
msgstr "圧縮されたファイルを読み込む例::"
383
390
384
- #: ../../library/gzip.rst:213
391
+ #: ../../library/gzip.rst:219
385
392
msgid "Example of how to create a compressed GZIP file::"
386
393
msgstr "GZIP 圧縮されたファイルを作成する例::"
387
394
388
- #: ../../library/gzip.rst:220
395
+ #: ../../library/gzip.rst:226
389
396
msgid "Example of how to GZIP compress an existing file::"
390
397
msgstr "既存のファイルを GZIP 圧縮する例::"
391
398
392
- #: ../../library/gzip.rst:228
399
+ #: ../../library/gzip.rst:234
393
400
msgid "Example of how to GZIP compress a binary string::"
394
401
msgstr "バイナリ文字列を GZIP 圧縮する例::"
395
402
396
- #: ../../library/gzip.rst:237
403
+ #: ../../library/gzip.rst:243
397
404
msgid "Module :mod:`zlib`"
398
405
msgstr ":mod:`zlib` モジュール"
399
406
400
- #: ../../library/gzip.rst:237
407
+ #: ../../library/gzip.rst:243
401
408
msgid ""
402
409
"The basic data compression module needed to support the :program:`gzip` file "
403
410
"format."
404
411
msgstr ""
405
412
":program:`gzip` ファイル形式のサポートを行うために必要な基本ライブラリモ"
406
413
"ジュール。"
407
414
408
- #: ../../library/gzip.rst:244
415
+ #: ../../library/gzip.rst:250
409
416
msgid "Command Line Interface"
410
417
msgstr "コマンドラインインターフェイス"
411
418
412
- #: ../../library/gzip.rst:246
419
+ #: ../../library/gzip.rst:252
413
420
msgid ""
414
421
"The :mod:`gzip` module provides a simple command line interface to compress "
415
422
"or decompress files."
416
423
msgstr ""
417
424
":mod:`gzip` モジュールは、 ファイルを圧縮、展開するための簡単なコマンドライン"
418
425
"インターフェースを提供しています。"
419
426
420
- #: ../../library/gzip.rst:249
427
+ #: ../../library/gzip.rst:255
421
428
msgid "Once executed the :mod:`gzip` module keeps the input file(s)."
422
429
msgstr ""
423
430
424
- #: ../../library/gzip.rst:253
431
+ #: ../../library/gzip.rst:259
425
432
msgid ""
426
433
"Add a new command line interface with a usage. By default, when you will "
427
434
"execute the CLI, the default compression level is 6."
428
435
msgstr ""
429
436
430
- #: ../../library/gzip.rst:257
437
+ #: ../../library/gzip.rst:263
431
438
msgid "Command line options"
432
439
msgstr "コマンドラインオプション"
433
440
434
- #: ../../library/gzip.rst:261
441
+ #: ../../library/gzip.rst:267
435
442
msgid "If *file* is not specified, read from :attr:`sys.stdin`."
436
443
msgstr "*file* を指定しない場合、 :attr:`sys.stdin` から読み込みます。"
437
444
438
- #: ../../library/gzip.rst:265
445
+ #: ../../library/gzip.rst:271
439
446
msgid "Indicates the fastest compression method (less compression)."
440
447
msgstr ""
441
448
442
- #: ../../library/gzip.rst:269
449
+ #: ../../library/gzip.rst:275
443
450
msgid "Indicates the slowest compression method (best compression)."
444
451
msgstr ""
445
452
446
- #: ../../library/gzip.rst:273
453
+ #: ../../library/gzip.rst:279
447
454
msgid "Decompress the given file."
448
455
msgstr ""
449
456
450
- #: ../../library/gzip.rst:277
457
+ #: ../../library/gzip.rst:283
451
458
msgid "Show the help message."
452
459
msgstr "ヘルプメッセージを出力します"
0 commit comments