@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.12\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2025-02-28 14:56 +0000\n "
14+ "POT-Creation-Date : 2025-03-14 14:53 +0000\n "
1515"PO-Revision-Date : 2024-05-11 00:33+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -148,12 +148,14 @@ msgstr "Cria um subprocesso."
148148#: ../../library/asyncio-subprocess.rst:89
149149msgid ""
150150"The *limit* argument sets the buffer limit for :class:`StreamReader` "
151- "wrappers for :attr:`Process.stdout` and :attr:`Process.stderr` (if :const:"
152- "`subprocess.PIPE` is passed to *stdout* and *stderr* arguments)."
151+ "wrappers for :attr:`~asyncio.subprocess.Process.stdout` and :attr:`~asyncio."
152+ "subprocess.Process.stderr` (if :const:`subprocess.PIPE` is passed to "
153+ "*stdout* and *stderr* arguments)."
153154msgstr ""
154155"O argumento *limit* define o limite do buffer para os invólucros :class:"
155- "`StreamReader` para :attr:`Process.stdout` e :attr:`Process.stderr` (se :"
156- "const:`subprocess.PIPE` for passado para os argumentos *stdout* e *stderr*)."
156+ "`StreamReader` para :attr:`~asyncio.subprocess.Process.stdout` e :attr:"
157+ "`~asyncio.subprocess.Process.stderr` (se :const:`subprocess.PIPE` for "
158+ "passado para os argumentos *stdout* e *stderr*)."
157159
158160#: ../../library/asyncio-subprocess.rst:74
159161#: ../../library/asyncio-subprocess.rst:93
@@ -232,24 +234,24 @@ msgstr "Pode ser passado para os parâmetros *stdin*, *stdout* ou *stderr*."
232234#: ../../library/asyncio-subprocess.rst:133
233235msgid ""
234236"If *PIPE* is passed to *stdin* argument, the :attr:`Process.stdin <asyncio."
235- "subprocess.Process.stdin>` attribute will point to a :class:`StreamWriter` "
236- "instance."
237+ "subprocess.Process.stdin>` attribute will point to a :class:`~asyncio. "
238+ "StreamWriter` instance."
237239msgstr ""
238240"Se *PIPE* for passado para o argumento *stdin*, o atributo :attr:`Process."
239241"stdin <asyncio.subprocess.Process.stdin>` irá apontar para uma instância :"
240- "class:`StreamWriter`."
242+ "class:`~asyncio. StreamWriter`."
241243
242244#: ../../library/asyncio-subprocess.rst:137
243245msgid ""
244246"If *PIPE* is passed to *stdout* or *stderr* arguments, the :attr:`Process."
245247"stdout <asyncio.subprocess.Process.stdout>` and :attr:`Process.stderr "
246248"<asyncio.subprocess.Process.stderr>` attributes will point to :class:"
247- "`StreamReader` instances."
249+ "`~asyncio. StreamReader` instances."
248250msgstr ""
249251"Se *PIPE* for passado para os argumentos *stdout* ou *stderr*, os atributos :"
250252"attr:`Process.stdout <asyncio.subprocess.Process.stdout>` e :attr:`Process."
251253"stderr <asyncio.subprocess.Process.stderr>` irão apontar para instâncias :"
252- "class:`StreamReader`."
254+ "class:`~asyncio. StreamReader`."
253255
254256#: ../../library/asyncio-subprocess.rst:145
255257msgid ""
@@ -288,11 +290,13 @@ msgstr ""
288290
289291#: ../../library/asyncio-subprocess.rst:167
290292msgid ""
291- "An object that wraps OS processes created by the :func:"
292- "`create_subprocess_exec` and :func:`create_subprocess_shell` functions."
293+ "An object that wraps OS processes created by the :func:`~asyncio."
294+ "create_subprocess_exec` and :func:`~asyncio.create_subprocess_shell` "
295+ "functions."
293296msgstr ""
294297"Um objeto que envolve processos do sistema operacional criados pelas "
295- "funções :func:`create_subprocess_exec` e :func:`create_subprocess_shell`."
298+ "funções :func:`~asyncio.create_subprocess_exec` e :func:`~asyncio."
299+ "create_subprocess_shell`."
296300
297301#: ../../library/asyncio-subprocess.rst:171
298302msgid ""
@@ -478,37 +482,39 @@ msgstr "Mata o processo filho."
478482
479483#: ../../library/asyncio-subprocess.rst:266
480484msgid ""
481- "On POSIX systems this method sends :py:data:`SIGKILL` to the child process."
485+ "On POSIX systems this method sends :py:data:`~signal.SIGKILL` to the child "
486+ "process."
482487msgstr ""
483- "Em sistemas POSIX este método envia :py:data:`SIGKILL` para o processo filho."
488+ "Em sistemas POSIX este método envia :py:data:`~signal.SIGKILL` para o "
489+ "processo filho."
484490
485491#: ../../library/asyncio-subprocess.rst:269
486492msgid "On Windows this method is an alias for :meth:`terminate`."
487493msgstr "No Windows, este método é um atalho para :meth:`terminate`."
488494
489495#: ../../library/asyncio-subprocess.rst:273
490496msgid ""
491- "Standard input stream (:class:`StreamWriter`) or ``None`` if the process was "
492- "created with ``stdin=None``."
497+ "Standard input stream (:class:`~asyncio. StreamWriter`) or ``None`` if the "
498+ "process was created with ``stdin=None``."
493499msgstr ""
494- "Fluxo de entrada padrão (:class:`StreamWriter`) ou ``None`` se o processo "
495- "foi criado com ``stdin=None``."
500+ "Fluxo de entrada padrão (:class:`~asyncio. StreamWriter`) ou ``None`` se o "
501+ "processo foi criado com ``stdin=None``."
496502
497503#: ../../library/asyncio-subprocess.rst:278
498504msgid ""
499- "Standard output stream (:class:`StreamReader`) or ``None`` if the process "
500- "was created with ``stdout=None``."
505+ "Standard output stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
506+ "process was created with ``stdout=None``."
501507msgstr ""
502- "Fluxo de saída padrão (:class:`StreamReader`) ou ``None`` se o processo foi "
503- "criado com ``stdout=None``."
508+ "Fluxo de saída padrão (:class:`~asyncio. StreamReader`) ou ``None`` se o "
509+ "processo foi criado com ``stdout=None``."
504510
505511#: ../../library/asyncio-subprocess.rst:283
506512msgid ""
507- "Standard error stream (:class:`StreamReader`) or ``None`` if the process was "
508- "created with ``stderr=None``."
513+ "Standard error stream (:class:`~asyncio. StreamReader`) or ``None`` if the "
514+ "process was created with ``stderr=None``."
509515msgstr ""
510- "Erro de fluxo padrão (:class:`StreamReader`) ou ``None`` se o processo foi "
511- "criado com ``stderr=None``."
516+ "Erro de fluxo padrão (:class:`~asyncio. StreamReader`) ou ``None`` se o "
517+ "processo foi criado com ``stderr=None``."
512518
513519#: ../../library/asyncio-subprocess.rst:288
514520msgid ""
@@ -528,11 +534,12 @@ msgstr "Número de identificação do processo (PID)."
528534
529535#: ../../library/asyncio-subprocess.rst:299
530536msgid ""
531- "Note that for processes created by the :func:`create_subprocess_shell` "
532- "function, this attribute is the PID of the spawned shell."
537+ "Note that for processes created by the :func:`~asyncio."
538+ "create_subprocess_shell` function, this attribute is the PID of the spawned "
539+ "shell."
533540msgstr ""
534- "Perceba que para processos criados pela função :func:"
535- "` create_subprocess_shell`, este atributo é o PID do console gerado."
541+ "Perceba que para processos criados pela função :func:`~asyncio. "
542+ "create_subprocess_shell`, este atributo é o PID do console gerado."
536543
537544#: ../../library/asyncio-subprocess.rst:304
538545msgid "Return code of the process when it exits."
0 commit comments