Skip to content

Commit c7ea520

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 1c16441 commit c7ea520

File tree

1 file changed

+46
-12
lines changed

1 file changed

+46
-12
lines changed

library/os.po

+46-12
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ msgid ""
2727
msgstr ""
2828
"Project-Id-Version: Python 3.13\n"
2929
"Report-Msgid-Bugs-To: \n"
30-
"POT-Creation-Date: 2024-05-11 18:37+0000\n"
30+
"POT-Creation-Date: 2024-05-17 14:15+0000\n"
3131
"PO-Revision-Date: 2021-06-28 01:10+0000\n"
3232
"Last-Translator: Adorilson Bezerra <[email protected]>, 2024\n"
3333
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -5656,33 +5656,36 @@ msgstr ":ref:`Disponibilidade <availability>`: Linux >= 2.6.30"
56565656

56575657
#: ../../library/os.rst:3866
56585658
msgid "Timer File Descriptors"
5659-
msgstr ""
5659+
msgstr "Descritores de arquivo de temporizador"
56605660

56615661
#: ../../library/os.rst:3870
56625662
msgid ""
56635663
"These functions provide support for Linux's *timer file descriptor* API. "
56645664
"Naturally, they are all only available on Linux."
56655665
msgstr ""
5666+
"Essas funções fornecem suporte para a API de *descritores de arquivo de "
5667+
"temporizador*."
56665668

56675669
#: ../../library/os.rst:3875
56685670
msgid "Create and return a timer file descriptor (*timerfd*)."
5669-
msgstr ""
5671+
msgstr "Cria e retorna um descritor de arquivo de temporizador (*timerfd*)."
56705672

56715673
#: ../../library/os.rst:3877
56725674
msgid "The file descriptor returned by :func:`timerfd_create` supports:"
56735675
msgstr ""
5676+
"O descritor de arquivo retornado por :func:`timerfd_create` implementa:"
56745677

56755678
#: ../../library/os.rst:3879
56765679
msgid ":func:`read`"
5677-
msgstr ""
5680+
msgstr ":func:`read`"
56785681

56795682
#: ../../library/os.rst:3880
56805683
msgid ":func:`~select.select`"
5681-
msgstr ""
5684+
msgstr ":func:`~select.select`"
56825685

56835686
#: ../../library/os.rst:3881
56845687
msgid ":func:`~select.poll`"
5685-
msgstr ""
5688+
msgstr ":func:`~select.poll`"
56865689

56875690
#: ../../library/os.rst:3883
56885691
msgid ""
@@ -5692,30 +5695,40 @@ msgid ""
56925695
"converted to an :class:`int` by ``int.from_bytes(x, byteorder=sys."
56935696
"byteorder)``."
56945697
msgstr ""
5698+
"O método :func:`read` do descritor de arquivo pode ser chamado com um buffer "
5699+
"de tamanho 8. Se o temporizador já expirou uma ou mais vezes,:func:`read` "
5700+
"retorna o número de vezes que o descritor expirou com a extremidade do "
5701+
"hospedeiro, que pode ser convertido para um :class:`int` com ``int."
5702+
"from_bytes(x, byteorder=sys.byteorder)``. "
56955703

56965704
#: ../../library/os.rst:3888
56975705
msgid ""
56985706
":func:`~select.select` and :func:`~select.poll` can be used to wait until "
56995707
"timer expires and the file descriptor is readable."
57005708
msgstr ""
5709+
":func:`~select.select` e :func:`~select.poll` pode ser usado para esperar "
5710+
"até que o temporizador expire e o descritor de arquivo possa ser lido."
57015711

57025712
#: ../../library/os.rst:3891
57035713
msgid ""
57045714
"*clockid* must be a valid :ref:`clock ID <time-clock-id-constants>`, as "
57055715
"defined in the :py:mod:`time` module:"
57065716
msgstr ""
5717+
"*clockid* deve ser um :ref:`ID de relógio <time-clock-id-constants>` válido, "
5718+
"conforme definido no módulo :py:mod:`time`:"
57075719

57085720
#: ../../library/os.rst:3894
57095721
msgid ":const:`time.CLOCK_REALTIME`"
5710-
msgstr ""
5722+
msgstr ":const:`time.CLOCK_REALTIME`"
57115723

57125724
#: ../../library/os.rst:3895
57135725
msgid ":const:`time.CLOCK_MONOTONIC`"
5714-
msgstr ""
5726+
msgstr ":const:`time.CLOCK_MONOTONIC`"
57155727

57165728
#: ../../library/os.rst:3896
57175729
msgid ":const:`time.CLOCK_BOOTTIME` (Since Linux 3.15 for timerfd_create)"
57185730
msgstr ""
5731+
":const:`time.CLOCK_BOOTTIME` (A partir de Linux 3.15 para timerfd_create)"
57195732

57205733
#: ../../library/os.rst:3898
57215734
msgid ""
@@ -5724,34 +5737,48 @@ msgid ""
57245737
"updated. To cancel timer when system clock is changed, see :const:"
57255738
"`TFD_TIMER_CANCEL_ON_SET`."
57265739
msgstr ""
5740+
"Se *clockid* é :const:`time.CLOCK_REALTIME`, é usado um relógio em tempo "
5741+
"real definido em todo o sistema. Se o relógio do sistema muda, a "
5742+
"configuração do temporizador precisa ser atualizado. Para cancelar o "
5743+
"temporizador quando o relógio do sistema é alterado, veja :const:"
5744+
"`TFD_TIMER_CANCEL_ON_SET`."
57275745

57285746
#: ../../library/os.rst:3903
57295747
msgid ""
57305748
"If *clockid* is :const:`time.CLOCK_MONOTONIC`, a non-settable monotonically "
57315749
"increasing clock is used. Even if the system clock is changed, the timer "
57325750
"setting will not be affected."
57335751
msgstr ""
5752+
"Se *clockid* é :const:`time.CLOCK_MONOTONIC`, é usado um relógio "
5753+
"monotonicamente não estável. Mesmo se o relógio do sistema é alterado, a "
5754+
"configuração do temporizador não será afetada."
57345755

57355756
#: ../../library/os.rst:3907
57365757
msgid ""
57375758
"If *clockid* is :const:`time.CLOCK_BOOTTIME`, same as :const:`time."
57385759
"CLOCK_MONOTONIC` except it includes any time that the system is suspended."
57395760
msgstr ""
5761+
"Se *clockid* é :const:`time.CLOCK_BOOTTIME`, é idêntica a :const:`time."
5762+
"CLOCK_MONOTONIC` exceto por incluir qualquer tempo que o sistema está "
5763+
"suspenso."
57405764

57415765
#: ../../library/os.rst:3910
57425766
msgid ""
57435767
"The file descriptor's behaviour can be modified by specifying a *flags* "
57445768
"value. Any of the following variables may used, combined using bitwise OR "
57455769
"(the ``|`` operator):"
57465770
msgstr ""
5771+
"O comportamento do descritor de arquivo pode ser modificado especificando um "
5772+
"valor para *flags*. Qualquer um dos seguintes valores pode ser usado, "
5773+
"combinadas usando OU bit a bit (o operador ``|``):"
57475774

57485775
#: ../../library/os.rst:3914
57495776
msgid ":const:`TFD_NONBLOCK`"
5750-
msgstr ""
5777+
msgstr ":const:`TFD_NONBLOCK`"
57515778

57525779
#: ../../library/os.rst:3915
57535780
msgid ":const:`TFD_CLOEXEC`"
5754-
msgstr ""
5781+
msgstr ":const:`TFD_CLOEXEC`"
57555782

57565783
#: ../../library/os.rst:3917
57575784
msgid ""
@@ -5760,20 +5787,27 @@ msgid ""
57605787
"there hasn't been an expiration since the last call to read, :func:`read` "
57615788
"raises :class:`OSError` with ``errno`` is set to :const:`errno.EAGAIN`."
57625789
msgstr ""
5790+
"Se :const:`TFD_NONBLOCK` não está definido como um sinalizador, :func:`read` "
5791+
"bloqueia até o temporizador expirar. Se está definido como um sinalizador, :"
5792+
"func:`read` não bloqueia, mas se não expirou desde a última chamada, :func:"
5793+
"`read` levanta :class:`OSError` com ``errno`` definido como :const:`errno."
5794+
"EAGAIN`."
57635795

57645796
#: ../../library/os.rst:3923
57655797
msgid ":const:`TFD_CLOEXEC` is always set by Python automatically."
5766-
msgstr ""
5798+
msgstr ":const:`TFD_CLOEXEC` é sempre definido pelo Python automaticamente."
57675799

57685800
#: ../../library/os.rst:3925
57695801
msgid ""
57705802
"The file descriptor must be closed with :func:`os.close` when it is no "
57715803
"longer needed, or else the file descriptor will be leaked."
57725804
msgstr ""
5805+
"O descritor de arquivo deve ser fechado com :func:`os.close` quando não é "
5806+
"mais necessário, caso contrário o descritor de arquivo será vazado."
57735807

57745808
#: ../../library/os.rst:3928
57755809
msgid "The :manpage:`timerfd_create(2)` man page."
5776-
msgstr ""
5810+
msgstr "A página man :manpage:`timerfd_create(2)`."
57775811

57785812
#: ../../library/os.rst:3937
57795813
msgid ""

0 commit comments

Comments
 (0)