Skip to content

Commit 0210e90

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent dce1691 commit 0210e90

File tree

3 files changed

+759
-23
lines changed

3 files changed

+759
-23
lines changed

library/dis.po

+26-9
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,17 @@
88
# Marco Rougeth <marco@rougeth.com>, 2022
99
# Danilo Lima <djkcond@gmail.com>, 2023
1010
# Vitor Buxbaum Orlandi, 2023
11-
# Pedro Fonini, 2024
1211
# Rafael Fontenelle <rffontenelle@gmail.com>, 2024
12+
# Pedro Fonini, 2024
1313
#
1414
#, fuzzy
1515
msgid ""
1616
msgstr ""
1717
"Project-Id-Version: Python 3.13\n"
1818
"Report-Msgid-Bugs-To: \n"
19-
"POT-Creation-Date: 2024-06-28 14:15+0000\n"
19+
"POT-Creation-Date: 2024-07-05 14:16+0000\n"
2020
"PO-Revision-Date: 2021-06-28 01:04+0000\n"
21-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n"
21+
"Last-Translator: Pedro Fonini, 2024\n"
2222
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2323
"teams/5390/pt_BR/)\n"
2424
"MIME-Version: 1.0\n"
@@ -801,61 +801,78 @@ msgid ""
801801
"itself. It is automatically hidden by all ``dis`` utilities, but can be "
802802
"viewed with ``show_caches=True``."
803803
msgstr ""
804+
"Ao invés de ser uma instrução de fato, este opcode é usado para demarcar "
805+
"espaço extra para o interpretador armazernar dados úteis diretamente no "
806+
"próprio bytecode. É escondido automaticamente por todas as utilidades do "
807+
"``dis``, mas pode ser visualizado com ``show_caches=True``."
804808

805809
#: ../../library/dis.rst:592
806810
msgid ""
807811
"Logically, this space is part of the preceding instruction. Many opcodes "
808812
"expect to be followed by an exact number of caches, and will instruct the "
809813
"interpreter to skip over them at runtime."
810814
msgstr ""
815+
"Do ponto de vista lógico, este espaço faz parde da instrução anterior. "
816+
"Muitos opcodes esperam ser seguidos por um número exato de caches, e "
817+
"instruem o interpretador a pulá-los em tempo de execução."
811818

812819
#: ../../library/dis.rst:596
813820
msgid ""
814821
"Populated caches can look like arbitrary instructions, so great care should "
815822
"be taken when reading or modifying raw, adaptive bytecode containing "
816823
"quickened data."
817824
msgstr ""
825+
"Caches populados podem se parecer com qualquer instrução, de forma que ler "
826+
"ou modificar bytecode adaptativo bruto contendo dados \"quickened\" requer "
827+
"muito cuidado."
818828

819829
#: ../../library/dis.rst:603
820830
msgid "**Unary operations**"
821-
msgstr ""
831+
msgstr "**Operações unárias**"
822832

823833
#: ../../library/dis.rst:605
824834
msgid ""
825835
"Unary operations take the top of the stack, apply the operation, and push "
826836
"the result back on the stack."
827837
msgstr ""
838+
"Operações unárias tiram o topo da pilha, aplicam a operação, e põem o "
839+
"resultado de volta na pilha."
828840

829841
#: ../../library/dis.rst:611
830842
msgid "Implements ``STACK[-1] = -STACK[-1]``."
831-
msgstr ""
843+
msgstr "Implementa ``STACK[-1] = -STACK[-1]``."
832844

833845
#: ../../library/dis.rst:616
834846
msgid "Implements ``STACK[-1] = not STACK[-1]``."
835-
msgstr ""
847+
msgstr "Implementa ``STACK[-1] = not STACK[-1]``."
836848

837849
#: ../../library/dis.rst:618 ../../library/dis.rst:1309
838850
#: ../../library/dis.rst:1325
839851
msgid "This instruction now requires an exact :class:`bool` operand."
840852
msgstr ""
853+
"Essa instrução agora requer que o operando seja exatamente do tipo :class:"
854+
"`bool`."
841855

842856
#: ../../library/dis.rst:624
843857
msgid "Implements ``STACK[-1] = ~STACK[-1]``."
844-
msgstr ""
858+
msgstr "Implementa ``STACK[-1] = ~STACK[-1]``."
845859

846860
#: ../../library/dis.rst:629
847861
msgid "Implements ``STACK[-1] = iter(STACK[-1])``."
848-
msgstr ""
862+
msgstr "Implementa ``STACK[-1] = iter(STACK[-1])``."
849863

850864
#: ../../library/dis.rst:634
851865
msgid ""
852866
"If ``STACK[-1]`` is a :term:`generator iterator` or :term:`coroutine` object "
853867
"it is left as is. Otherwise, implements ``STACK[-1] = iter(STACK[-1])``."
854868
msgstr ""
869+
"Se ``STACK[-1]`` for um :term:`iterador gerador` ou um objeto :term:"
870+
"`corrotina`, nada acontece. Caso contrário, implementa ``STACK[-1] = "
871+
"iter(STACK[-1])``."
855872

856873
#: ../../library/dis.rst:642
857874
msgid "Implements ``STACK[-1] = bool(STACK[-1])``."
858-
msgstr ""
875+
msgstr "Implementa ``STACK[-1] = bool(STACK[-1])``."
859876

860877
#: ../../library/dis.rst:647
861878
msgid "**Binary and in-place operations**"

0 commit comments

Comments
 (0)