@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version : Python 3.14\n "
1414"Report-Msgid-Bugs-To : \n "
15- "POT-Creation-Date : 2025-11-17 14:14 +0000\n "
15+ "POT-Creation-Date : 2025-11-23 14:12 +0000\n "
1616"PO-Revision-Date : 2025-09-16 00:01+0000\n "
1717"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -885,18 +885,27 @@ msgid ""
885885"get as many members as possible. This is only useful for reading "
886886"concatenated or damaged archives."
887887msgstr ""
888+ "Se *ignore_zeros* for :const:`False`, trata um bloco vazio como o fim do "
889+ "arquivo. Se for :const:`True`, ignora blocos vazios (e inválidos) e tenta "
890+ "obter o máximo de membros possível. Isso só é útil para ler arquivos "
891+ "concatenados ou corrompidos."
888892
889893#: ../../library/tarfile.rst:456
890894msgid ""
891895"*debug* can be set from ``0`` (no debug messages) up to ``3`` (all debug "
892896"messages). The messages are written to ``sys.stderr``."
893897msgstr ""
898+ "O parâmetro *debug* pode ser configurado de ``0`` (nenhuma mensagem de "
899+ "depuração) até ``3`` (todas as mensagens de depuração). As mensagens são "
900+ "gravadas em ``sys.stderr``."
894901
895902#: ../../library/tarfile.rst:459
896903msgid ""
897904"*errorlevel* controls how extraction errors are handled, see :attr:`the "
898905"corresponding attribute <TarFile.errorlevel>`."
899906msgstr ""
907+ "*errorlevel* controla como os erros de extração são tratados, veja :attr:`o "
908+ "atributo correspondente <TarFile.errorlevel>`."
900909
901910#: ../../library/tarfile.rst:462
902911msgid ""
@@ -905,44 +914,60 @@ msgid ""
905914"to be handled. The default settings will work for most users. See section :"
906915"ref:`tar-unicode` for in-depth information."
907916msgstr ""
917+ "Os argumentos *encoding* e *errors* definem a codificação de caracteres a "
918+ "ser usada para leitura ou gravação do arquivo e como os erros de conversão "
919+ "serão tratados. As configurações padrão funcionarão para a maioria dos "
920+ "usuários. Consulta a seção :ref:`tar-unicode` para obter informações "
921+ "detalhadas."
908922
909923#: ../../library/tarfile.rst:467
910924msgid ""
911925"The *pax_headers* argument is an optional dictionary of strings which will "
912926"be added as a pax global header if *format* is :const:`PAX_FORMAT`."
913927msgstr ""
928+ "O argumento *pax_headers* é um dicionário opcional de strings que será "
929+ "adicionado como um cabeçalho global pax se *format* for :const:`PAX_FORMAT`."
914930
915931#: ../../library/tarfile.rst:470
916932msgid ""
917933"If *stream* is set to :const:`True` then while reading the archive info "
918934"about files in the archive are not cached, saving memory."
919935msgstr ""
936+ "Se *stream* estiver definido como :const:`True`, então, durante a leitura do "
937+ "arquivo, as informações sobre os arquivos no arquivo não serão armazenadas "
938+ "em cache, economizando memória."
920939
921940#: ../../library/tarfile.rst:473 ../../library/tarfile.rst:796
922941msgid "Use ``'surrogateescape'`` as the default for the *errors* argument."
923- msgstr ""
942+ msgstr "Usa ``'surrogateescape'`` como padrão para o argumento *errors*. "
924943
925944#: ../../library/tarfile.rst:482
926945msgid "Add the *stream* parameter."
927- msgstr ""
946+ msgstr "Adiciona o parâmetro *stream*. "
928947
929948#: ../../library/tarfile.rst:487
930949msgid ""
931950"Alternative constructor. The :func:`tarfile.open` function is actually a "
932951"shortcut to this classmethod."
933952msgstr ""
953+ "Construtor alternativo. A função :func:`tarfile.open` é, na verdade, um "
954+ "atalho para este método de classe."
934955
935956#: ../../library/tarfile.rst:493
936957msgid ""
937958"Return a :class:`TarInfo` object for member *name*. If *name* can not be "
938959"found in the archive, :exc:`KeyError` is raised."
939960msgstr ""
961+ "Retorna um objeto :class:`TarInfo` para o membro *name*. Se *name* não for "
962+ "encontrado no arquivo, uma exceção :exc:`KeyError` será levantada."
940963
941964#: ../../library/tarfile.rst:498
942965msgid ""
943966"If a member occurs more than once in the archive, its last occurrence is "
944967"assumed to be the most up-to-date version."
945968msgstr ""
969+ "Se um membro aparecer mais de uma vez no arquivo, presume-se que sua última "
970+ "ocorrência seja a versão mais atualizada."
946971
947972#: ../../library/tarfile.rst:504
948973msgid ""
@@ -957,6 +982,8 @@ msgid ""
957982"Return the members as a list of their names. It has the same order as the "
958983"list returned by :meth:`getmembers`."
959984msgstr ""
985+ "Retorna os membros como uma lista com seus nomes. A lista está na mesma "
986+ "ordem que a lista retornada por :meth:`getmembers`."
960987
961988#: ../../library/tarfile.rst:516
962989msgid ""
@@ -965,17 +992,25 @@ msgid ""
965992"similar to that of :program:`ls -l` is produced. If optional *members* is "
966993"given, it must be a subset of the list returned by :meth:`getmembers`."
967994msgstr ""
995+ "Envia um índice para ``sys.stdout``. Se *verbose* for :const:`False`, apenas "
996+ "os nomes dos membros serão exibidos. Se for :const:`True`, a saída será "
997+ "semelhante à do comando :program:`ls -l`. Se o parâmetro opcional *members* "
998+ "for fornecido, ele deverá ser um subconjunto da lista retornada pelo método :"
999+ "meth:`getmembers`."
9681000
9691001#: ../../library/tarfile.rst:521
9701002msgid "Added the *members* parameter."
971- msgstr ""
1003+ msgstr "Adicionado o parâmetro *members*. "
9721004
9731005#: ../../library/tarfile.rst:527
9741006msgid ""
9751007"Return the next member of the archive as a :class:`TarInfo` object, when :"
9761008"class:`TarFile` is opened for reading. Return :const:`None` if there is no "
9771009"more available."
9781010msgstr ""
1011+ "Retorna o próximo membro do arquivo como um objeto :class:`TarInfo`, quando :"
1012+ "class:`TarFile` é aberto para leitura. Retorna :const:`None` se não houver "
1013+ "mais nenhum disponível."
9791014
9801015#: ../../library/tarfile.rst:534
9811016msgid ""
0 commit comments