@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version :Python 3.13\n "
1414"Report-Msgid-Bugs-To :\n "
15- "POT-Creation-Date :2025-11-17 15:03 +0000\n "
15+ "POT-Creation-Date :2025-11-23 14:59 +0000\n "
1616"PO-Revision-Date :2025-09-15 01:04+0000\n "
1717"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -782,18 +782,27 @@ msgid ""
782782"get as many members as possible. This is only useful for reading "
783783"concatenated or damaged archives."
784784msgstr ""
785+ "Se *ignore_zeros* for :const:`False`, trata um bloco vazio como o fim do "
786+ "arquivo. Se for :const:`True`, ignora blocos vazios (e inválidos) e tenta "
787+ "obter o máximo de membros possível. Isso só é útil para ler arquivos "
788+ "concatenados ou corrompidos."
785789
786790#: ../../library/tarfile.rst:415
787791msgid ""
788792"*debug* can be set from ``0`` (no debug messages) up to ``3`` (all debug "
789793"messages). The messages are written to ``sys.stderr``."
790794msgstr ""
795+ "O parâmetro *debug* pode ser configurado de ``0`` (nenhuma mensagem de "
796+ "depuração) até ``3`` (todas as mensagens de depuração). As mensagens são "
797+ "gravadas em ``sys.stderr``."
791798
792799#: ../../library/tarfile.rst:418
793800msgid ""
794801"*errorlevel* controls how extraction errors are handled, see :attr:`the "
795802"corresponding attribute <TarFile.errorlevel>`."
796803msgstr ""
804+ "*errorlevel* controla como os erros de extração são tratados, veja :attr:`o "
805+ "atributo correspondente <TarFile.errorlevel>`."
797806
798807#: ../../library/tarfile.rst:421
799808msgid ""
@@ -802,44 +811,60 @@ msgid ""
802811"to be handled. The default settings will work for most users. See section :"
803812"ref:`tar-unicode` for in-depth information."
804813msgstr ""
814+ "Os argumentos *encoding* e *errors* definem a codificação de caracteres a "
815+ "ser usada para leitura ou gravação do arquivo e como os erros de conversão "
816+ "serão tratados. As configurações padrão funcionarão para a maioria dos "
817+ "usuários. Consulta a seção :ref:`tar-unicode` para obter informações "
818+ "detalhadas."
805819
806820#: ../../library/tarfile.rst:426
807821msgid ""
808822"The *pax_headers* argument is an optional dictionary of strings which will "
809823"be added as a pax global header if *format* is :const:`PAX_FORMAT`."
810824msgstr ""
825+ "O argumento *pax_headers* é um dicionário opcional de strings que será "
826+ "adicionado como um cabeçalho global pax se *format* for :const:`PAX_FORMAT`."
811827
812828#: ../../library/tarfile.rst:429
813829msgid ""
814830"If *stream* is set to :const:`True` then while reading the archive info "
815831"about files in the archive are not cached, saving memory."
816832msgstr ""
833+ "Se *stream* estiver definido como :const:`True`, então, durante a leitura do "
834+ "arquivo, as informações sobre os arquivos no arquivo não serão armazenadas "
835+ "em cache, economizando memória."
817836
818837#: ../../library/tarfile.rst:432 ../../library/tarfile.rst:752
819838msgid "Use ``'surrogateescape'`` as the default for the *errors* argument."
820- msgstr ""
839+ msgstr "Usa ``'surrogateescape'`` como padrão para o argumento *errors*. "
821840
822841#: ../../library/tarfile.rst:441
823842msgid "Add the *stream* parameter."
824- msgstr ""
843+ msgstr "Adiciona o parâmetro *stream*. "
825844
826845#: ../../library/tarfile.rst:446
827846msgid ""
828847"Alternative constructor. The :func:`tarfile.open` function is actually a "
829848"shortcut to this classmethod."
830849msgstr ""
850+ "Construtor alternativo. A função :func:`tarfile.open` é, na verdade, um "
851+ "atalho para este método de classe."
831852
832853#: ../../library/tarfile.rst:452
833854msgid ""
834855"Return a :class:`TarInfo` object for member *name*. If *name* can not be "
835856"found in the archive, :exc:`KeyError` is raised."
836857msgstr ""
858+ "Retorna um objeto :class:`TarInfo` para o membro *name*. Se *name* não for "
859+ "encontrado no arquivo, uma exceção :exc:`KeyError` será levantada."
837860
838861#: ../../library/tarfile.rst:457
839862msgid ""
840863"If a member occurs more than once in the archive, its last occurrence is "
841864"assumed to be the most up-to-date version."
842865msgstr ""
866+ "Se um membro aparecer mais de uma vez no arquivo, presume-se que sua última "
867+ "ocorrência seja a versão mais atualizada."
843868
844869#: ../../library/tarfile.rst:463
845870msgid ""
@@ -854,6 +879,8 @@ msgid ""
854879"Return the members as a list of their names. It has the same order as the "
855880"list returned by :meth:`getmembers`."
856881msgstr ""
882+ "Retorna os membros como uma lista com seus nomes. A lista está na mesma "
883+ "ordem que a lista retornada por :meth:`getmembers`."
857884
858885#: ../../library/tarfile.rst:475
859886msgid ""
@@ -862,17 +889,25 @@ msgid ""
862889"similar to that of :program:`ls -l` is produced. If optional *members* is "
863890"given, it must be a subset of the list returned by :meth:`getmembers`."
864891msgstr ""
892+ "Envia um índice para ``sys.stdout``. Se *verbose* for :const:`False`, apenas "
893+ "os nomes dos membros serão exibidos. Se for :const:`True`, a saída será "
894+ "semelhante à do comando :program:`ls -l`. Se o parâmetro opcional *members* "
895+ "for fornecido, ele deverá ser um subconjunto da lista retornada pelo método :"
896+ "meth:`getmembers`."
865897
866898#: ../../library/tarfile.rst:480
867899msgid "Added the *members* parameter."
868- msgstr ""
900+ msgstr "Adicionado o parâmetro *members*. "
869901
870902#: ../../library/tarfile.rst:486
871903msgid ""
872904"Return the next member of the archive as a :class:`TarInfo` object, when :"
873905"class:`TarFile` is opened for reading. Return :const:`None` if there is no "
874906"more available."
875907msgstr ""
908+ "Retorna o próximo membro do arquivo como um objeto :class:`TarInfo`, quando :"
909+ "class:`TarFile` é aberto para leitura. Retorna :const:`None` se não houver "
910+ "mais nenhum disponível."
876911
877912#: ../../library/tarfile.rst:493
878913msgid ""