7
7
msgstr ""
8
8
"Project-Id-Version : Python 3.12\n "
9
9
"Report-Msgid-Bugs-To : \n "
10
- "POT-Creation-Date : 2024-05-09 00:03+0000\n "
10
+ "POT-Creation-Date : 2024-06-18 00:03+0000\n "
11
11
"PO-Revision-Date : 2018-05-23 16:03+0000\n "
12
12
"Last-Translator : Adrian Liaw <adrianliaw2000@gmail.com>\n "
13
13
"Language-Team : Chinese - TAIWAN (https://github.com/python/python-docs-zh- "
@@ -285,10 +285,12 @@ msgstr ""
285
285
msgid ""
286
286
"Speed is improved by compressing all data at once instead of in a streamed "
287
287
"fashion. Calls with *mtime* set to ``0`` are delegated to :func:`zlib."
288
- "compress` for better speed."
288
+ "compress` for better speed. In this situation the output may contain a gzip "
289
+ "header \" OS\" byte value other than 255 \" unknown\" as supplied by the "
290
+ "underlying zlib implementation."
289
291
msgstr ""
290
292
291
- #: ../../library/gzip.rst:201
293
+ #: ../../library/gzip.rst:203
292
294
msgid ""
293
295
"Decompress the *data*, returning a :class:`bytes` object containing the "
294
296
"uncompressed data. This function is capable of decompressing multi-member "
@@ -297,82 +299,82 @@ msgid ""
297
299
"*wbits* set to 31 is faster."
298
300
msgstr ""
299
301
300
- #: ../../library/gzip.rst:208
302
+ #: ../../library/gzip.rst:210
301
303
msgid ""
302
304
"Speed is improved by decompressing members at once in memory instead of in a "
303
305
"streamed fashion."
304
306
msgstr ""
305
307
306
- #: ../../library/gzip.rst:215
308
+ #: ../../library/gzip.rst:217
307
309
msgid "Examples of usage"
308
310
msgstr "用法範例"
309
311
310
- #: ../../library/gzip.rst:217
312
+ #: ../../library/gzip.rst:219
311
313
msgid "Example of how to read a compressed file::"
312
314
msgstr "如何讀取壓縮檔案的範例: ::"
313
315
314
- #: ../../library/gzip.rst:223
316
+ #: ../../library/gzip.rst:225
315
317
msgid "Example of how to create a compressed GZIP file::"
316
318
msgstr "如何建立一個壓縮的 GZIP 檔案的範例: ::"
317
319
318
- #: ../../library/gzip.rst:230
320
+ #: ../../library/gzip.rst:232
319
321
msgid "Example of how to GZIP compress an existing file::"
320
322
msgstr "如何壓縮一個已存在的檔案的範例: ::"
321
323
322
- #: ../../library/gzip.rst:238
324
+ #: ../../library/gzip.rst:240
323
325
msgid "Example of how to GZIP compress a binary string::"
324
326
msgstr "如何壓縮一個二進位字串的範例: ::"
325
327
326
- #: ../../library/gzip.rst:246
328
+ #: ../../library/gzip.rst:248
327
329
msgid "Module :mod:`zlib`"
328
330
msgstr ":mod:`zlib` 模組"
329
331
330
- #: ../../library/gzip.rst:247
332
+ #: ../../library/gzip.rst:249
331
333
msgid ""
332
334
"The basic data compression module needed to support the :program:`gzip` file "
333
335
"format."
334
336
msgstr ""
335
337
336
- #: ../../library/gzip.rst:256
338
+ #: ../../library/gzip.rst:258
337
339
msgid "Command Line Interface"
338
340
msgstr "命令列介面"
339
341
340
- #: ../../library/gzip.rst:258
342
+ #: ../../library/gzip.rst:260
341
343
msgid ""
342
344
"The :mod:`gzip` module provides a simple command line interface to compress "
343
345
"or decompress files."
344
346
msgstr ""
345
347
346
- #: ../../library/gzip.rst:261
348
+ #: ../../library/gzip.rst:263
347
349
msgid "Once executed the :mod:`gzip` module keeps the input file(s)."
348
350
msgstr ""
349
351
350
- #: ../../library/gzip.rst:265
352
+ #: ../../library/gzip.rst:267
351
353
msgid ""
352
354
"Add a new command line interface with a usage. By default, when you will "
353
355
"execute the CLI, the default compression level is 6."
354
356
msgstr ""
355
357
356
- #: ../../library/gzip.rst:269
358
+ #: ../../library/gzip.rst:271
357
359
msgid "Command line options"
358
360
msgstr "命令列選項"
359
361
360
- #: ../../library/gzip.rst:273
362
+ #: ../../library/gzip.rst:275
361
363
msgid "If *file* is not specified, read from :data:`sys.stdin`."
362
364
msgstr "如果未指定 *file*,則從 :data:`sys.stdin` 讀取。"
363
365
364
- #: ../../library/gzip.rst:277
366
+ #: ../../library/gzip.rst:279
365
367
msgid "Indicates the fastest compression method (less compression)."
366
368
msgstr ""
367
369
368
- #: ../../library/gzip.rst:281
370
+ #: ../../library/gzip.rst:283
369
371
msgid "Indicates the slowest compression method (best compression)."
370
372
msgstr ""
371
373
372
- #: ../../library/gzip.rst:285
374
+ #: ../../library/gzip.rst:287
373
375
msgid "Decompress the given file."
374
376
msgstr "解壓縮指定的檔案。"
375
377
376
- #: ../../library/gzip.rst:289
378
+ #: ../../library/gzip.rst:291
377
379
msgid "Show the help message."
378
380
msgstr "顯示幫助訊息。"