88msgstr ""
99"Project-Id-Version : Python 3.14\n "
1010"Report-Msgid-Bugs-To : \n "
11- "POT-Creation-Date : 2025-10-11 14:13 +0000\n "
11+ "POT-Creation-Date : 2025-10-23 14:15 +0000\n "
1212"PO-Revision-Date : 2025-09-16 00:02+0000\n "
1313"Language-Team : Indonesian (https://app.transifex.com/python-doc/teams/5390/ "
1414"id/)\n "
@@ -64,19 +64,17 @@ msgstr ""
6464msgid ""
6565"Compresses the bytes in *data*, returning a bytes object containing "
6666"compressed data. *level* is an integer from ``0`` to ``9`` or ``-1`` "
67- "controlling the level of compression; ``1`` (Z_BEST_SPEED) is fastest and "
68- "produces the least compression, ``9`` (Z_BEST_COMPRESSION) is slowest and "
69- "produces the most. ``0`` (Z_NO_COMPRESSION) is no compression. The default "
70- "value is ``-1`` (Z_DEFAULT_COMPRESSION). Z_DEFAULT_COMPRESSION represents a "
71- "default compromise between speed and compression (currently equivalent to "
72- "level 6)."
67+ "controlling the level of compression; See :const:`Z_BEST_SPEED` (``1``), :"
68+ "const:`Z_BEST_COMPRESSION` (``9``), :const:`Z_NO_COMPRESSION` (``0``), and "
69+ "the default, :const:`Z_DEFAULT_COMPRESSION` (``-1``) for more information "
70+ "about these values."
7371msgstr ""
7472
7573msgid ""
7674"The *wbits* argument controls the size of the history buffer (or the "
7775"\" window size\" ) used when compressing data, and whether a header and "
7876"trailer is included in the output. It can take several ranges of values, "
79- "defaulting to ``15`` (MAX_WBITS):"
77+ "defaulting to ``15`` (:const:` MAX_WBITS` ):"
8078msgstr ""
8179
8280msgid ""
@@ -115,12 +113,9 @@ msgstr ""
115113
116114msgid ""
117115"*level* is the compression level -- an integer from ``0`` to ``9`` or "
118- "``-1``. A value of ``1`` (Z_BEST_SPEED) is fastest and produces the least "
119- "compression, while a value of ``9`` (Z_BEST_COMPRESSION) is slowest and "
120- "produces the most. ``0`` (Z_NO_COMPRESSION) is no compression. The default "
121- "value is ``-1`` (Z_DEFAULT_COMPRESSION). Z_DEFAULT_COMPRESSION represents a "
122- "default compromise between speed and compression (currently equivalent to "
123- "level 6)."
116+ "``-1``. See :const:`Z_BEST_SPEED` (``1``), :const:`Z_BEST_COMPRESSION` "
117+ "(``9``), :const:`Z_NO_COMPRESSION` (``0``), and the default, :const:"
118+ "`Z_DEFAULT_COMPRESSION` (``-1``) for more information about these values."
124119msgstr ""
125120
126121msgid ""
@@ -143,7 +138,7 @@ msgstr ""
143138msgid ""
144139"*strategy* is used to tune the compression algorithm. Possible values are :"
145140"const:`Z_DEFAULT_STRATEGY`, :const:`Z_FILTERED`, :const:`Z_HUFFMAN_ONLY`, :"
146- "const:`Z_RLE` (zlib 1.2.0.1) and :const:`Z_FIXED` (zlib 1.2.2.2) ."
141+ "const:`Z_RLE` and :const:`Z_FIXED`."
147142msgstr ""
148143
149144msgid ""
@@ -264,13 +259,12 @@ msgid ""
264259"All pending input is processed, and a bytes object containing the remaining "
265260"compressed output is returned. *mode* can be selected from the constants :"
266261"const:`Z_NO_FLUSH`, :const:`Z_PARTIAL_FLUSH`, :const:`Z_SYNC_FLUSH`, :const:"
267- "`Z_FULL_FLUSH`, :const:`Z_BLOCK` (zlib 1.2.3.4), or :const:`Z_FINISH`, "
268- "defaulting to :const:`Z_FINISH`. Except :const:`Z_FINISH`, all constants "
269- "allow compressing further bytestrings of data, while :const:`Z_FINISH` "
270- "finishes the compressed stream and prevents compressing any more data. "
271- "After calling :meth:`flush` with *mode* set to :const:`Z_FINISH`, the :meth:"
272- "`compress` method cannot be called again; the only realistic action is to "
273- "delete the object."
262+ "`Z_FULL_FLUSH`, :const:`Z_BLOCK`, or :const:`Z_FINISH`, defaulting to :const:"
263+ "`Z_FINISH`. Except :const:`Z_FINISH`, all constants allow compressing "
264+ "further bytestrings of data, while :const:`Z_FINISH` finishes the compressed "
265+ "stream and prevents compressing any more data. After calling :meth:`flush` "
266+ "with *mode* set to :const:`Z_FINISH`, the :meth:`compress` method cannot be "
267+ "called again; the only realistic action is to delete the object."
274268msgstr ""
275269
276270msgid ""
@@ -373,16 +367,18 @@ msgstr ""
373367msgid "The default buffer size for decompression operations."
374368msgstr ""
375369
376- msgid "Compression level ``0``."
370+ msgid "Compression level ``0``; no compression ."
377371msgstr ""
378372
379- msgid "Compression level ``1``."
373+ msgid "Compression level ``1``; fastest and produces the least compression ."
380374msgstr ""
381375
382- msgid "Compression level ``9``."
376+ msgid "Compression level ``9``; slowest and produces the most compression ."
383377msgstr ""
384378
385- msgid "Default compression level (``-1``)."
379+ msgid ""
380+ "Default compression level (``-1``); a compromise between speed and "
381+ "compression. Currently equivalent to compression level ``6``."
386382msgstr ""
387383
388384msgid "Default compression strategy, for normal data."
0 commit comments