Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 82def0b

Browse files
Update translations
1 parent da88ad1 commit 82def0b

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

library/gzip.po

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.11\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2025-01-21 22:20+0000\n"
14+
"POT-Creation-Date: 2025-04-11 15:29+0000\n"
1515
"PO-Revision-Date: 2023-05-24 02:16+0000\n"
1616
"Last-Translator: Rafael Fontenelle <[email protected]>, 2024\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -51,13 +51,22 @@ msgid ""
5151
"files, automatically compressing or decompressing the data so that it looks "
5252
"like an ordinary :term:`file object`."
5353
msgstr ""
54+
"O módulo :mod:`gzip` fornece a classe :class:`GzipFile`, bem como as funções "
55+
"de conveniência :func:`.open`, :func:`compress` e :func:`decompress`. A "
56+
"classe :class:`GzipFile` lê e grava arquivos no formato :program:`gzip`, "
57+
"compactando ou descompactando automaticamente os dados para que se pareçam "
58+
"com um :term:`objeto arquivo` comum."
5459

5560
#: ../../library/gzip.rst:22
5661
msgid ""
5762
"Note that additional file formats which can be decompressed by the :program:"
5863
"`gzip` and :program:`gunzip` programs, such as those produced by :program:"
5964
"`compress` and :program:`pack`, are not supported by this module."
6065
msgstr ""
66+
"Observe que formatos de arquivo adicionais que podem ser descompactados "
67+
"pelos programas :program:`gzip` e :program:`gunzip`, como aqueles produzidos "
68+
"por :program:`compress` e :program:`pack`, não são suportados por este "
69+
"módulo."
6170

6271
#: ../../library/gzip.rst:26
6372
msgid "The module defines the following items:"
@@ -76,39 +85,55 @@ msgid ""
7685
"The *filename* argument can be an actual filename (a :class:`str` or :class:"
7786
"`bytes` object), or an existing file object to read from or write to."
7887
msgstr ""
88+
"O argumento *filename* pode ser um nome de arquivo real (um objeto :class:"
89+
"`str` ou :class:`bytes`), ou um objeto arquivo existente para ler ou gravar."
7990

8091
#: ../../library/gzip.rst:37
8192
msgid ""
8293
"The *mode* argument can be any of ``'r'``, ``'rb'``, ``'a'``, ``'ab'``, "
8394
"``'w'``, ``'wb'``, ``'x'`` or ``'xb'`` for binary mode, or ``'rt'``, "
8495
"``'at'``, ``'wt'``, or ``'xt'`` for text mode. The default is ``'rb'``."
8596
msgstr ""
97+
"O argumento *mode* pode ser qualquer um de ``'r'``, ``'rb'``, ``'a'``, "
98+
"``'ab'``, ``'w'``, ``'wb'``, ``'x'`` ou ``'xb'`` para modo binário, ou "
99+
"``'rt'``, ``'at'``, ``'wt'`` ou ``'xt'`` para modo texto. O padrão é "
100+
"``'rb'``."
86101

87102
#: ../../library/gzip.rst:41
88103
msgid ""
89104
"The *compresslevel* argument is an integer from 0 to 9, as for the :class:"
90105
"`GzipFile` constructor."
91106
msgstr ""
107+
"O argumento *compresslevel* é um inteiro de 0 a 9, como para o construtor "
108+
"de :class:`GzipFile`."
92109

93110
#: ../../library/gzip.rst:44
94111
msgid ""
95112
"For binary mode, this function is equivalent to the :class:`GzipFile` "
96113
"constructor: ``GzipFile(filename, mode, compresslevel)``. In this case, the "
97114
"*encoding*, *errors* and *newline* arguments must not be provided."
98115
msgstr ""
116+
"Para o modo binário, esta função equivale ao construtor de :class:"
117+
"`GzipFile`: ``GzipFile(filename, mode, compresslevel)``. Neste caso, os "
118+
"argumentos *encoding*, *errors* e *newline* não devem ser fornecidos."
99119

100120
#: ../../library/gzip.rst:48
101121
msgid ""
102122
"For text mode, a :class:`GzipFile` object is created, and wrapped in an :"
103123
"class:`io.TextIOWrapper` instance with the specified encoding, error "
104124
"handling behavior, and line ending(s)."
105125
msgstr ""
126+
"Para o modo texto, um objeto :class:`GzipFile` é criado e encapsulado em uma "
127+
"instância :class:`io.TextIOWrapper` com a codificação especificada, "
128+
"comportamento de tratamento de erros e final(is) de linha."
106129

107130
#: ../../library/gzip.rst:52
108131
msgid ""
109132
"Added support for *filename* being a file object, support for text mode, and "
110133
"the *encoding*, *errors* and *newline* arguments."
111134
msgstr ""
135+
"Adicionado suporte para *filename* ser um objeto arquivo, suporte para modo "
136+
"texto e os argumentos *encoding*, *errors* e *newline*."
112137

113138
#: ../../library/gzip.rst:56
114139
msgid "Added support for the ``'x'``, ``'xb'`` and ``'xt'`` modes."
@@ -124,6 +149,9 @@ msgid ""
124149
"`OSError`. :exc:`EOFError` and :exc:`zlib.error` can also be raised for "
125150
"invalid gzip files."
126151
msgstr ""
152+
"Uma exceção levantada para arquivos gzip inválidos. Herda de :exc:"
153+
"`OSError`. :exc:`EOFError` e :exc:`zlib.error` também podem ser levantadas "
154+
"para arquivos gzip inválidos."
127155

128156
#: ../../library/gzip.rst:72
129157
msgid ""

potodo.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585

8686

8787

88-
# library (61.59% done)
88+
# library (61.62% done)
8989

9090
- _thread.po 49 / 51 ( 96.0% translated).
9191
- abc.po 48 / 49 ( 97.0% translated).
@@ -157,7 +157,7 @@
157157
- gc.po 56 / 57 ( 98.0% translated).
158158
- glob.po 32 / 33 ( 96.0% translated).
159159
- grp.po 28 / 29 ( 96.0% translated).
160-
- gzip.po 22 / 60 ( 36.0% translated).
160+
- gzip.po 31 / 60 ( 51.0% translated).
161161
- hashlib.po 13 / 161 ( 8.0% translated).
162162
- heapq.po 50 / 51 ( 98.0% translated).
163163
- hmac.po 26 / 27 ( 96.0% translated).
@@ -327,5 +327,5 @@
327327
- 3.8.po 468 / 469 ( 99.0% translated).
328328

329329

330-
# TOTAL (66.49% done)
330+
# TOTAL (66.51% done)
331331

stats.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"completion": "66.49%", "translated": 37098, "entries": 55794, "updated_at": "2025-04-11T23:38:02+00:00Z"}
1+
{"completion": "66.51%", "translated": 37107, "entries": 55794, "updated_at": "2025-04-12T23:44:38+00:00Z"}

0 commit comments

Comments
 (0)