Skip to content

Commit eccd1d2

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent 14a333a commit eccd1d2

File tree

16 files changed

+136
-70
lines changed

16 files changed

+136
-70
lines changed

c-api/allocation.po

Lines changed: 22 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@
66
# Translators:
77
# Welington Carlos <wcarlos3@gmail.com>, 2021
88
# Felipefpl, 2021
9-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
9+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
16+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1717
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
18-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
18+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1919
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2020
"teams/5390/pt_BR/)\n"
2121
"MIME-Version: 1.0\n"
@@ -58,6 +58,11 @@ msgid ""
5858
"be one. The size of the memory allocation is determined from the :c:member:"
5959
"`~PyTypeObject.tp_basicsize` field of the type object."
6060
msgstr ""
61+
"Aloca um novo objeto Python usando o tipo de estrutura do C *TYPE* e o "
62+
"objeto Python do tipo *typeobj* (``PyTypeObject*``). Campos não definidos "
63+
"pelo cabeçalho do objeto Python não são inicializados; a contagem de "
64+
"referências do objeto será um. O tamanho da alocação de memória é "
65+
"determinado do campo :c:member:`~PyTypeObject.tp_basicsize` do objeto tipo."
6166

6267
#: ../../c-api/allocation.rst:42
6368
msgid ""
@@ -71,6 +76,15 @@ msgid ""
7176
"same allocation decreases the number of allocations, improving the memory "
7277
"management efficiency."
7378
msgstr ""
79+
"Aloca um novo objeto Python usando o tipo de estrutura do C *TYPE* e o "
80+
"objeto Python do tipo *typeobj* (``PyTypeObject*``). Campos não definidos "
81+
"pelo cabeçalho do objeto Python não são inicializados. A memória alocada "
82+
"permite a estrutura *TYPE* e os campos *size* (``Py_ssize_t``) do tamanho "
83+
"dado pelo campo :c:member:`~PyTypeObject.tp_itemsize` do tipo *typeobj*. "
84+
"Isto é útil para implementar objetos como tuplas, as quais são capazes de "
85+
"determinar seu tamanho no tempo da construção. Incorporando o vetor de "
86+
"campos dentro da mesma alocação diminuindo o numero de alocações, melhorando "
87+
"a eficiência do gerenciamento de memória."
7488

7589
#: ../../c-api/allocation.rst:56
7690
msgid ""
@@ -80,6 +94,11 @@ msgid ""
8094
"fields of the object should not be accessed after this call as the memory is "
8195
"no longer a valid Python object."
8296
msgstr ""
97+
"Libera memória alocada a um objeto usando :c:macro:`PyObject_New` ou :c:"
98+
"macro:`PyObject_NewVar`. Isto é normalmente chamado pelo manipulador de :c:"
99+
"member:`~PyTypeObject.tp_dealloc` especificado no tipo do objeto. Os campos "
100+
"do objeto não devem ser acessados após esta chamada como a memória não é "
101+
"mais um objeto Python válido."
83102

84103
#: ../../c-api/allocation.rst:65
85104
msgid ""

c-api/capsule.po

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -128,6 +128,10 @@ msgid ""
128128
"also be ``NULL``. Python uses the C function :c:func:`!strcmp` to compare "
129129
"capsule names."
130130
msgstr ""
131+
"O parâmetro *name* deve ser comparado exatamente com o nome armazenado na "
132+
"cápsula. Se o nome armazenado na cápsula for ``NULL``, o *name* passado "
133+
"também deve ser ``NULL``. Python usa a função C :c:func:`!strcmp` para "
134+
"comparar nomes de cápsulas."
131135

132136
#: ../../c-api/capsule.rst:73
133137
msgid ""
@@ -227,6 +231,9 @@ msgid ""
227231
"to any of the accessors (any function starting with ``PyCapsule_Get``) are "
228232
"guaranteed to succeed."
229233
msgstr ""
234+
"Em outras palavras, se :c:func:`PyCapsule_IsValid` retornar um valor "
235+
"verdadeiro, as chamadas para qualquer um dos acessadores (qualquer função "
236+
"que comece com ``PyCapsule_Get``) terão êxito garantido."
230237

231238
#: ../../c-api/capsule.rst:127
232239
msgid ""
@@ -276,4 +283,4 @@ msgstr "objeto"
276283

277284
#: ../../c-api/capsule.rst:8
278285
msgid "Capsule"
279-
msgstr ""
286+
msgstr "Cápsula"

c-api/structures.po

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
87
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2023
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1616
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
17-
"Last-Translator: Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, "
18-
"2023\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1918
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2019
"teams/5390/pt_BR/)\n"
2120
"MIME-Version: 1.0\n"
@@ -190,7 +189,7 @@ msgstr ""
190189

191190
#: ../../c-api/structures.rst:174
192191
msgid "The function signature is::"
193-
msgstr ""
192+
msgstr "A assinatura da função é::"
194193

195194
#: ../../c-api/structures.rst:181
196195
msgid ""

c-api/veryhigh.po

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@
55
#
66
# Translators:
77
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
89
#
910
#, fuzzy
1011
msgid ""
1112
msgstr ""
1213
"Project-Id-Version: Python 3.12\n"
1314
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1516
"PO-Revision-Date: 2021-06-28 00:50+0000\n"
16-
"Last-Translator: Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, "
17-
"2021\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1919
"teams/5390/pt_BR/)\n"
2020
"MIME-Version: 1.0\n"
@@ -358,6 +358,8 @@ msgid ""
358358
"This function now includes a debug assertion to help ensure that it does not "
359359
"silently discard an active exception."
360360
msgstr ""
361+
"Essa função agora inclui uma asserção de depuração para ajudar a garantir "
362+
"que ela não descarte silenciosamente uma exceção ativa."
361363

362364
#: ../../c-api/veryhigh.rst:319
363365
msgid ""

howto/enum.po

Lines changed: 20 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,16 @@
88
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2021
99
# i17obot <i17obot@rougeth.com>, 2021
1010
# Misael borges <misael@planosassessoria.com.br>, 2021
11-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2022
11+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1212
#
1313
#, fuzzy
1414
msgid ""
1515
msgstr ""
1616
"Project-Id-Version: Python 3.12\n"
1717
"Report-Msgid-Bugs-To: \n"
18-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
18+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1919
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
20-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
20+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2121
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2222
"teams/5390/pt_BR/)\n"
2323
"MIME-Version: 1.0\n"
@@ -552,7 +552,7 @@ msgstr ""
552552

553553
#: ../../howto/enum.rst:0
554554
msgid "qualname"
555-
msgstr ""
555+
msgstr "qualname"
556556

557557
#: ../../howto/enum.rst:622
558558
msgid "where in module new enum class can be found."
@@ -568,7 +568,7 @@ msgstr ""
568568

569569
#: ../../howto/enum.rst:0
570570
msgid "start"
571-
msgstr ""
571+
msgstr "start"
572572

573573
#: ../../howto/enum.rst:626
574574
msgid "number to start counting at if only names are passed in."
@@ -826,7 +826,7 @@ msgstr ""
826826

827827
#: ../../howto/enum.rst:935
828828
msgid "Supported ``__dunder__`` names"
829-
msgstr ""
829+
msgstr "Nomes ``__dunder__`` suportados"
830830

831831
#: ../../howto/enum.rst:937
832832
msgid ""
@@ -843,35 +843,43 @@ msgstr ""
843843

844844
#: ../../howto/enum.rst:946
845845
msgid "Supported ``_sunder_`` names"
846-
msgstr ""
846+
msgstr "Nomes ``_sunder_`` suportados"
847847

848848
#: ../../howto/enum.rst:948
849849
msgid "``_name_`` -- name of the member"
850-
msgstr ""
850+
msgstr "``_name_`` -- nome do membro"
851851

852852
#: ../../howto/enum.rst:949
853853
msgid ""
854854
"``_value_`` -- value of the member; can be set / modified in ``__new__``"
855855
msgstr ""
856+
"``_value_`` -- valor do membro; pode ser definido / modificado em ``__new__``"
856857

857858
#: ../../howto/enum.rst:951
858859
msgid ""
859860
"``_missing_`` -- a lookup function used when a value is not found; may be "
860861
"overridden"
861862
msgstr ""
863+
"``_missing_`` -- uma função de pesquisa usada quando um valor não é "
864+
"encontrado; pode ser substituída"
862865

863866
#: ../../howto/enum.rst:953
864867
msgid ""
865868
"``_ignore_`` -- a list of names, either as a :class:`list` or a :class:"
866869
"`str`, that will not be transformed into members, and will be removed from "
867870
"the final class"
868871
msgstr ""
872+
"``_ignore_`` -- uma lista de nomes, seja como :class:`list` ou :class:`str`, "
873+
"que não serão transformados em membros e serão removidos da classe final"
869874

870875
#: ../../howto/enum.rst:956
871876
msgid ""
872877
"``_order_`` -- used in Python 2/3 code to ensure member order is consistent "
873878
"(class attribute, removed during class creation)"
874879
msgstr ""
880+
"``_order_`` -- usado no código Python 2/3 para garantir que a ordem dos "
881+
"membros seja consistente (atributo de classe, removido durante a criação da "
882+
"classe)"
875883

876884
#: ../../howto/enum.rst:958
877885
msgid ""
@@ -884,12 +892,16 @@ msgid ""
884892
"For standard :class:`Enum` classes the next value chosen is the last value "
885893
"seen incremented by one."
886894
msgstr ""
895+
"Para classes :class:`Enum` padrão, o próximo valor escolhido é o último "
896+
"valor visto incrementado em um."
887897

888898
#: ../../howto/enum.rst:967
889899
msgid ""
890900
"For :class:`Flag` classes the next value chosen will be the next highest "
891901
"power-of-two, regardless of the last value seen."
892902
msgstr ""
903+
"Para as classes :class:`Flag` o próximo valor escolhido será a próxima "
904+
"potência de dois mais alta, independentemente do último valor visto."
893905

894906
#: ../../howto/enum.rst:970
895907
msgid "``_missing_``, ``_order_``, ``_generate_next_value_``"

howto/logging.po

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,21 @@
77
# Raphael Mendonça, 2021
88
# Hildeberto Abreu Magalhães <hildeberto@gmail.com>, 2021
99
# Leticia Portella <leportella@gmail.com>, 2021
10-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2021
1110
# Marco Rougeth <marco@rougeth.com>, 2021
1211
# Katyanna Moura <amelie.kn@gmail.com>, 2021
1312
# Aline Balogh <linecrist@hotmail.com>, 2021
1413
# i17obot <i17obot@rougeth.com>, 2021
1514
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2023
15+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1616
#
1717
#, fuzzy
1818
msgid ""
1919
msgstr ""
2020
"Project-Id-Version: Python 3.12\n"
2121
"Report-Msgid-Bugs-To: \n"
22-
"POT-Creation-Date: 2023-05-26 14:12+0000\n"
22+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
2323
"PO-Revision-Date: 2021-06-28 00:53+0000\n"
24-
"Last-Translator: Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, "
25-
"2023\n"
24+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2625
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2726
"teams/5390/pt_BR/)\n"
2827
"MIME-Version: 1.0\n"
@@ -1610,7 +1609,7 @@ msgstr "Módulo :mod:`logging.handlers`"
16101609

16111610
#: ../../howto/logging.rst:1130
16121611
msgid "Useful handlers included with the logging module."
1613-
msgstr ""
1612+
msgstr "Manipuladores úteis incluídos no módulo logging."
16141613

16151614
#: ../../howto/logging.rst:1132
16161615
msgid ":ref:`A logging cookbook <logging-cookbook>`"

library/gettext.po

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.12\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2023-07-28 14:13+0000\n"
15+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1616
"PO-Revision-Date: 2021-06-28 01:06+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -1075,12 +1075,12 @@ msgstr "Consulte a nota de rodapé para a :func:`bindtextdomain` acima."
10751075

10761076
#: ../../library/gettext.rst:56
10771077
msgid "_ (underscore)"
1078-
msgstr ""
1078+
msgstr "_ (underscore)"
10791079

10801080
#: ../../library/gettext.rst:56
10811081
msgid "gettext"
10821082
msgstr "gettext"
10831083

10841084
#: ../../library/gettext.rst:397
10851085
msgid "GNOME"
1086-
msgstr ""
1086+
msgstr "GNOME"

library/html.entities.po

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.12\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-05-26 14:12+0000\n"
14+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1515
"PO-Revision-Date: 2021-06-28 01:07+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -66,10 +66,14 @@ msgstr ""
6666
#: ../../library/html.entities.rst:37
6767
msgid "A dictionary that maps HTML4 entity names to the Unicode code points."
6868
msgstr ""
69+
"Um dicionário que mapeia nomes de entidades HTML4 para os pontos de código "
70+
"Unicode."
6971

7072
#: ../../library/html.entities.rst:42
7173
msgid "A dictionary that maps Unicode code points to HTML4 entity names."
7274
msgstr ""
75+
"Um dicionário que mapeia pontos de código Unicode para nomes de entidades "
76+
"HTML4."
7377

7478
#: ../../library/html.entities.rst:46
7579
msgid "Footnotes"

library/marshal.po

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,18 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
87
# Marco Rougeth <marco@rougeth.com>, 2023
98
# Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, 2023
9+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
1010
#
1111
#, fuzzy
1212
msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.12\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2023-06-09 14:13+0000\n"
16+
"POT-Creation-Date: 2023-07-29 02:08+0000\n"
1717
"PO-Revision-Date: 2021-06-28 01:09+0000\n"
18-
"Last-Translator: Claudio Rogerio Carvalho Filho <excriptbrasil@gmail.com>, "
19-
"2023\n"
18+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
2019
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
2120
"teams/5390/pt_BR/)\n"
2221
"MIME-Version: 1.0\n"
@@ -290,8 +289,8 @@ msgstr "objeto"
290289

291290
#: ../../library/marshal.rst:37
292291
msgid "code"
293-
msgstr ""
292+
msgstr "código"
294293

295294
#: ../../library/marshal.rst:37
296295
msgid "code object"
297-
msgstr ""
296+
msgstr "objeto código"

0 commit comments

Comments
 (0)