Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 7e59b96

Browse files
author
github-actions
committed
Update translations from Transifex
1 parent b3177d8 commit 7e59b96

File tree

9 files changed

+171
-61
lines changed

9 files changed

+171
-61
lines changed

c-api/call.po

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Alexandre B A Villares, 2021
99
# Renan Lopes <[email protected]>, 2021
1010
# Rafael Fontenelle <[email protected]>, 2022
11+
# Mozart Mozart, 2022
1112
#
1213
#, fuzzy
1314
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617
"Report-Msgid-Bugs-To: \n"
1718
"POT-Creation-Date: 2022-06-16 06:28+0000\n"
1819
"PO-Revision-Date: 2021-06-28 00:47+0000\n"
19-
"Last-Translator: Rafael Fontenelle <[email protected]>, 2022\n"
20+
"Last-Translator: Mozart Mozart, 2022\n"
2021
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2122
"teams/5390/pt_BR/)\n"
2223
"MIME-Version: 1.0\n"
@@ -65,6 +66,9 @@ msgid ""
6566
"This convention is not only used by *tp_call*: :c:member:`~PyTypeObject."
6667
"tp_new` and :c:member:`~PyTypeObject.tp_init` also pass arguments this way."
6768
msgstr ""
69+
"Esta convenção não é somente usada por *tp_call*: :c:member:`~PyTypeObject."
70+
"tp_new` e :c:member:`~PyTypeObject.tp_init` também passam argumento dessa "
71+
"forma."
6872

6973
#: ../../c-api/call.rst:29
7074
msgid ""
@@ -81,6 +85,8 @@ msgid ""
8185
"The vectorcall protocol was introduced in :pep:`590` as an additional "
8286
"protocol for making calls more efficient."
8387
msgstr ""
88+
"O protocolo vectorcall foi introduzido pela :pep:`590` como um protocolo "
89+
"adicional para tornar invocações mais eficientes."
8490

8591
#: ../../c-api/call.rst:43
8692
msgid ""
@@ -93,6 +99,15 @@ msgid ""
9399
"achieve this is by setting :c:member:`~PyTypeObject.tp_call` to :c:func:"
94100
"`PyVectorcall_Call`. This bears repeating:"
95101
msgstr ""
102+
"Como regra de bolso. CPython vai preferir o vectorcall para invocações "
103+
"internas se o invocável suportar. Entretanto, isso não é uma regra rígida.\n"
104+
"Ademais, alguma extensões de terceiros usam diretamente *tp_call* (em vez "
105+
"de utilizar :c:func:`PyObject_Call`). Portanto, uma classe que suporta "
106+
"vectorcall precisa também implementar :c:member:`~PyTypeObject.tp_call`. "
107+
"Além disso, o invocável precisa se comportar da mesma forma independe de "
108+
"qual protocolo é utilizado. A forma recomendada de alcançar isso é "
109+
"definindo :c:member:`~PyTypeObject.tp_call` para :c:func:"
110+
"`PyVectorcall_Call`. Vale a pena repetir:"
96111

97112
#: ../../c-api/call.rst:57
98113
msgid ""

library/asyncio-eventloop.po

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# i17obot <[email protected]>, 2021
1414
# Rafael Fontenelle <[email protected]>, 2021
1515
# Vinicius Gubiani Ferreira <[email protected]>, 2021
16+
# Adorilson Bezerra <[email protected]>, 2022
1617
#
1718
#, fuzzy
1819
msgid ""
@@ -21,7 +22,7 @@ msgstr ""
2122
"Report-Msgid-Bugs-To: \n"
2223
"POT-Creation-Date: 2022-06-16 06:28+0000\n"
2324
"PO-Revision-Date: 2021-06-28 00:54+0000\n"
24-
"Last-Translator: Vinicius Gubiani Ferreira <vini.g.fer@gmail.com>, 2021\n"
25+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2022\n"
2526
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2627
"teams/5390/pt_BR/)\n"
2728
"MIME-Version: 1.0\n"
@@ -149,7 +150,7 @@ msgstr ""
149150

150151
#: ../../library/asyncio-eventloop.rst:67
151152
msgid "Create and return a new event loop object."
152-
msgstr ""
153+
msgstr "Cria e retorna um novo objeto de laço de eventos."
153154

154155
#: ../../library/asyncio-eventloop.rst:69
155156
msgid ""
@@ -592,7 +593,7 @@ msgstr ""
592593

593594
#: ../../library/asyncio-eventloop.rst:345
594595
msgid "Added the *name* parameter."
595-
msgstr ""
596+
msgstr "Adicionado o parâmetro *name*."
596597

597598
#: ../../library/asyncio-eventloop.rst:350
598599
msgid "Set a task factory that will be used by :meth:`loop.create_task`."
@@ -839,7 +840,7 @@ msgstr ""
839840
#: ../../library/asyncio-eventloop.rst:470
840841
#: ../../library/asyncio-eventloop.rst:743
841842
msgid "Added the *ssl_handshake_timeout* parameter."
842-
msgstr ""
843+
msgstr "Adicionado o parâmetro *ssl_handshake_timeout*."
843844

844845
#: ../../library/asyncio-eventloop.rst:474
845846
msgid "Added the *happy_eyeballs_delay* and *interleave* parameters."
@@ -1081,6 +1082,8 @@ msgid ""
10811082
"Added the *ssl_handshake_timeout* parameter. The *path* parameter can now be "
10821083
"a :term:`path-like object`."
10831084
msgstr ""
1085+
"Adicionado o parâmetro *ssl_handshake_timeout*. O parâmetro *path* agora "
1086+
"pode ser um :term:`path-like object`."
10841087

10851088
#: ../../library/asyncio-eventloop.rst:597
10861089
msgid "Creating network servers"
@@ -1143,6 +1146,11 @@ msgid ""
11431146
"selected (note that if *host* resolves to multiple network interfaces, a "
11441147
"different random port will be selected for each interface)."
11451148
msgstr ""
1149+
"O parâmetro *port* pode ser definido para especificar qual porta o servidor "
1150+
"deve escutar. Se ``0`` ou ``None`` (o padrão), uma porta aleatória "
1151+
"disponível será selecionada (note que se *host* resolve para múltiplas "
1152+
"interfaces de rede, uma porta aleatória diferente será selecionada para cada "
1153+
"interface)."
11461154

11471155
#: ../../library/asyncio-eventloop.rst:635
11481156
msgid ""
@@ -1236,6 +1244,9 @@ msgid ""
12361244
"option :py:data:`~socket.TCP_NODELAY` is set by default for all TCP "
12371245
"connections."
12381246
msgstr ""
1247+
"Adicionado os parâmetros *ssl_handshake_timeout* e *start_serving*. A opção "
1248+
"do soquete :py:data:`~socket.TCP_NODELAY` está definida por padrão para "
1249+
"todas as conexões TCP."
12391250

12401251
#: ../../library/asyncio-eventloop.rst:687
12411252
msgid ""
@@ -1278,6 +1289,8 @@ msgid ""
12781289
"Added the *ssl_handshake_timeout* and *start_serving* parameters. The *path* "
12791290
"parameter can now be a :class:`~pathlib.Path` object."
12801291
msgstr ""
1292+
"Adicionados os parâmetros *ssl_handshake_timeout* estart_serving*. O "
1293+
"parâmetros *path* agora pode ser um objeto da classe :class:`~pathlib.Path`."
12811294

12821295
#: ../../library/asyncio-eventloop.rst:717
12831296
msgid "Wrap an already accepted connection into a transport/protocol pair."

library/asyncio-policy.po

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# Sheila Gomes <[email protected]>, 2021
99
# Vinicius Gubiani Ferreira <[email protected]>, 2021
1010
# Rafael Fontenelle <[email protected]>, 2021
11+
# Adorilson Bezerra <[email protected]>, 2022
1112
#
1213
#, fuzzy
1314
msgid ""
@@ -16,7 +17,7 @@ msgstr ""
1617
"Report-Msgid-Bugs-To: \n"
1718
"POT-Creation-Date: 2022-06-16 06:28+0000\n"
1819
"PO-Revision-Date: 2021-06-28 00:55+0000\n"
19-
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2021\n"
20+
"Last-Translator: Adorilson Bezerra <adorilson@gmail.com>, 2022\n"
2021
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
2122
"teams/5390/pt_BR/)\n"
2223
"MIME-Version: 1.0\n"
@@ -116,7 +117,7 @@ msgstr "Define o laço de eventos do contexto atual como *loop*."
116117

117118
#: ../../library/asyncio-policy.rst:69
118119
msgid "Create and return a new event loop object."
119-
msgstr ""
120+
msgstr "Cria e retorna um novo objeto de laço de eventos."
120121

121122
#: ../../library/asyncio-policy.rst:75
122123
msgid "Get a child process watcher object."

library/asyncio-stream.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ msgstr ""
102102

103103
#: ../../library/asyncio-stream.rst:70
104104
msgid "Added the *ssl_handshake_timeout* parameter."
105-
msgstr ""
105+
msgstr "Adicionado o parâmetro *ssl_handshake_timeout*."
106106

107107
#: ../../library/asyncio-stream.rst:73
108108
msgid "Added *happy_eyeballs_delay* and *interleave* parameters."

library/asyncio-task.po

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ msgstr ""
334334

335335
#: ../../library/asyncio-task.rst:286 ../../library/asyncio-task.rst:832
336336
msgid "Added the *name* parameter."
337-
msgstr ""
337+
msgstr "Adicionado o parâmetro *name*."
338338

339339
#: ../../library/asyncio-task.rst:291
340340
msgid "Sleeping"

0 commit comments

Comments
 (0)