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

Skip to content

Commit 6349ce4

Browse files
Update translations from Transifex
1 parent 14af440 commit 6349ce4

File tree

1 file changed

+61
-10
lines changed

1 file changed

+61
-10
lines changed

library/asyncio-eventloop.po

Lines changed: 61 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1137,49 +1137,69 @@ msgid ""
11371137
"AF_INET6` to force the socket to use IPv4 or IPv6. If not set, the *family* "
11381138
"will be determined from host name (defaults to :data:`~socket.AF_UNSPEC`)."
11391139
msgstr ""
1140+
"*family* pode ser definido para :data:`socket.AF_INET` ou :data:`~socket."
1141+
"AF_INET6` para forçar o soquete a usar IPv4 ou IPv6. Se não for definido, "
1142+
"*family* será determinado a partir do nome do servidor (por padrão será :"
1143+
"data:`~socket.AF_UNSPEC`)."
11401144

11411145
#: ../../library/asyncio-eventloop.rst:639
11421146
msgid "*flags* is a bitmask for :meth:`getaddrinfo`."
1143-
msgstr ""
1147+
msgstr "*flags* é uma máscara de bits para :meth:`getaddrinfo`."
11441148

11451149
#: ../../library/asyncio-eventloop.rst:641
11461150
msgid ""
11471151
"*sock* can optionally be specified in order to use a preexisting socket "
11481152
"object. If specified, *host* and *port* must not be specified."
11491153
msgstr ""
1154+
"*sock* pode opcionalmente ser especificado para usar um objeto soquete pré-"
1155+
"existente. Se especificado, *host* e *port* não devem ser especificados."
11501156

11511157
#: ../../library/asyncio-eventloop.rst:644
11521158
msgid ""
11531159
"*backlog* is the maximum number of queued connections passed to :meth:"
11541160
"`~socket.socket.listen` (defaults to 100)."
11551161
msgstr ""
1162+
"*backlog* é o número máximo de conexões enfileiradas pasadas para :meth:"
1163+
"`~socket.socket.listen` (padrão é 100)."
11561164

11571165
#: ../../library/asyncio-eventloop.rst:647
11581166
msgid ""
11591167
"*ssl* can be set to an :class:`~ssl.SSLContext` instance to enable TLS over "
11601168
"the accepted connections."
11611169
msgstr ""
1170+
"*ssl* pode ser definido para uma instância de :class:`~ssl.SSLContext` para "
1171+
"habilitar TLS sobre as conexões aceitas."
11621172

11631173
#: ../../library/asyncio-eventloop.rst:650
11641174
msgid ""
11651175
"*reuse_address* tells the kernel to reuse a local socket in ``TIME_WAIT`` "
11661176
"state, without waiting for its natural timeout to expire. If not specified "
11671177
"will automatically be set to ``True`` on Unix."
11681178
msgstr ""
1179+
"*reuse_address* diz ao kernel para reusar um soquete local em estado "
1180+
"``TIME_WAIT``, serm aguardar pela expiração natural do seu tempo limite. Se "
1181+
"não especificado, será automaticamente definida como ``True`` no Unix."
11691182

11701183
#: ../../library/asyncio-eventloop.rst:655
11711184
msgid ""
11721185
"*reuse_port* tells the kernel to allow this endpoint to be bound to the same "
11731186
"port as other existing endpoints are bound to, so long as they all set this "
11741187
"flag when being created. This option is not supported on Windows."
11751188
msgstr ""
1189+
"*reuse_port* diz ao kernel para permitir que este endpoint seja vinculado a "
1190+
"mesma porta que outros endpoints existentes estão vinculados, contanto que "
1191+
"todos eles definam este sinalizador quando forem criados. Esta opção não é "
1192+
"suportada no Windows."
11761193

11771194
#: ../../library/asyncio-eventloop.rst:660
11781195
msgid ""
11791196
"*ssl_handshake_timeout* is (for a TLS server) the time in seconds to wait "
11801197
"for the TLS handshake to complete before aborting the connection. ``60.0`` "
11811198
"seconds if ``None`` (default)."
11821199
msgstr ""
1200+
"*ssl_handshake_timeout* é (para um servidor TLS) o tempo em segundos para "
1201+
"aguardar pelo aperto de mão TLS ser concluído, antes de abortar a conexão. "
1202+
"``60.0`` segundos se ``None`` (valor padrão)."
11831203

11841204
#: ../../library/asyncio-eventloop.rst:664
11851205
msgid ""
@@ -1188,103 +1208,128 @@ msgid ""
11881208
"should await on :meth:`Server.start_serving` or :meth:`Server.serve_forever` "
11891209
"to make the server to start accepting connections."
11901210
msgstr ""
1211+
"Definir *start_serving* para ``True`` (o valor padrão) faz o servidor criado "
1212+
"começar a aceitar conexões imediatamente. Quando definido para ``False``, o "
1213+
"usuário deve aguardar com :meth:`Server.start_serving` ou :meth:`Server."
1214+
"serve_forever` para fazer o servidor começar a aceitar conexões."
11911215

11921216
#: ../../library/asyncio-eventloop.rst:672
11931217
msgid "Added *ssl_handshake_timeout* and *start_serving* parameters."
1194-
msgstr ""
1218+
msgstr "Adicionado os parâmetros *ssl_handshake_timeout* e *start_serving*."
11951219

11961220
#: ../../library/asyncio-eventloop.rst:685
11971221
msgid "The *host* parameter can be a sequence of strings."
1198-
msgstr ""
1222+
msgstr "O parâmetro *host* pode ser uma sequência de strings."
11991223

12001224
#: ../../library/asyncio-eventloop.rst:689
12011225
msgid ""
12021226
"The :func:`start_server` function is a higher-level alternative API that "
12031227
"returns a pair of :class:`StreamReader` and :class:`StreamWriter` that can "
12041228
"be used in an async/await code."
12051229
msgstr ""
1230+
"A função :func:`start_server` é uma API alternativa de alto nível que "
1231+
"retorna um par de :class:`StreamReader` e :class:`StreamWriter` que pode ser "
1232+
"usado em um código async/await."
12061233

12071234
#: ../../library/asyncio-eventloop.rst:698
12081235
msgid ""
12091236
"Similar to :meth:`loop.create_server` but works with the :py:data:`~socket."
12101237
"AF_UNIX` socket family."
12111238
msgstr ""
1239+
"Similar a :meth:`loop.create_server`, mas trabalha com a familia de soquete :"
1240+
"py:data:`~socket.AF_UNIX`."
12121241

12131242
#: ../../library/asyncio-eventloop.rst:701
12141243
msgid ""
12151244
"*path* is the name of a Unix domain socket, and is required, unless a *sock* "
12161245
"argument is provided. Abstract Unix sockets, :class:`str`, :class:`bytes`, "
12171246
"and :class:`~pathlib.Path` paths are supported."
12181247
msgstr ""
1248+
"*path* é o nome de um soquete de domínio Unix, e é obrigatório, a não ser "
1249+
"que um argumento *sock* seja fornecido. Soquetes Unix abstratos, :class:"
1250+
"`str`, :class:`bytes`, e caminhos :class:`~pathlib.Path` são suportados."
12191251

12201252
#: ../../library/asyncio-eventloop.rst:706
12211253
msgid ""
12221254
"See the documentation of the :meth:`loop.create_server` method for "
12231255
"information about arguments to this method."
12241256
msgstr ""
1257+
"Veja a documentação do método :meth:`loop.create_server` para informações "
1258+
"sobre argumentos para este método."
12251259

12261260
#: ../../library/asyncio-eventloop.rst:713
12271261
msgid "The *ssl_handshake_timeout* and *start_serving* parameters."
12281262
msgstr "Os parâmetros *ssl_handshake_timeout* e *start_serving*."
12291263

12301264
#: ../../library/asyncio-eventloop.rst:717
12311265
msgid "The *path* parameter can now be a :class:`~pathlib.Path` object."
1232-
msgstr ""
1266+
msgstr "O parâmetro *path* agora pode ser um objeto :class:`~pathlib.Path`."
12331267

12341268
#: ../../library/asyncio-eventloop.rst:722
12351269
msgid "Wrap an already accepted connection into a transport/protocol pair."
1236-
msgstr ""
1270+
msgstr "Envolve uma conexão já aceita em um par transporte/protocolo."
12371271

12381272
#: ../../library/asyncio-eventloop.rst:724
12391273
msgid ""
12401274
"This method can be used by servers that accept connections outside of "
12411275
"asyncio but that use asyncio to handle them."
12421276
msgstr ""
1277+
"Este método pode ser usado por servidores que aceitam conexões fora do "
1278+
"asyncio, mas que usam asyncio para manipulá-las."
12431279

12441280
#: ../../library/asyncio-eventloop.rst:727
12451281
#: ../../library/asyncio-eventloop.rst:794
12461282
msgid "Parameters:"
1247-
msgstr ""
1283+
msgstr "Parâmetros:"
12481284

12491285
#: ../../library/asyncio-eventloop.rst:732
12501286
msgid ""
12511287
"*sock* is a preexisting socket object returned from :meth:`socket.accept "
12521288
"<socket.socket.accept>`."
12531289
msgstr ""
1290+
"*sock* é um objeto soquete pré-existente retornado a partir de :meth:`socket."
1291+
"accept <socket.socket.accept>`."
12541292

12551293
#: ../../library/asyncio-eventloop.rst:735
12561294
msgid ""
12571295
"*ssl* can be set to an :class:`~ssl.SSLContext` to enable SSL over the "
12581296
"accepted connections."
12591297
msgstr ""
1298+
"*ssl* pode ser definido para um :class:`~ssl.SSLContext` para habilitar SSL "
1299+
"sobre as conexões aceitas."
12601300

12611301
#: ../../library/asyncio-eventloop.rst:738
12621302
msgid ""
12631303
"*ssl_handshake_timeout* is (for an SSL connection) the time in seconds to "
12641304
"wait for the SSL handshake to complete before aborting the connection. "
12651305
"``60.0`` seconds if ``None`` (default)."
12661306
msgstr ""
1307+
"*ssl_handshake_timeout* é (para uma conexão SSL) o tempo em segundos para "
1308+
"aguardar pelo aperto de mão SSL ser concluído, antes de abortar a conexão. "
1309+
"``60.0`` segundos se ``None`` (valor padrão)."
12671310

12681311
#: ../../library/asyncio-eventloop.rst:742
12691312
msgid "Returns a ``(transport, protocol)`` pair."
1270-
msgstr ""
1313+
msgstr "Retorna um par ``(transport, protocol)``."
12711314

12721315
#: ../../library/asyncio-eventloop.rst:752
12731316
msgid "Transferring files"
1274-
msgstr ""
1317+
msgstr "Transferindo arquivos"
12751318

12761319
#: ../../library/asyncio-eventloop.rst:757
12771320
msgid ""
12781321
"Send a *file* over a *transport*. Return the total number of bytes sent."
12791322
msgstr ""
1323+
"Envia um *file* sobre um *transport*. Retorna o número total de bytes "
1324+
"enviados."
12801325

12811326
#: ../../library/asyncio-eventloop.rst:760
12821327
msgid "The method uses high-performance :meth:`os.sendfile` if available."
1283-
msgstr ""
1328+
msgstr "O método usa :meth:`os.sendfile` de alto desempenho, se disponível."
12841329

12851330
#: ../../library/asyncio-eventloop.rst:762
12861331
msgid "*file* must be a regular file object opened in binary mode."
1287-
msgstr ""
1332+
msgstr "*file* deve ser um objeto arquivo regular aberto em modo binário."
12881333

12891334
#: ../../library/asyncio-eventloop.rst:764
12901335
#: ../../library/asyncio-eventloop.rst:954
@@ -1295,6 +1340,12 @@ msgid ""
12951340
"raises an error, and :meth:`file.tell() <io.IOBase.tell>` can be used to "
12961341
"obtain the actual number of bytes sent."
12971342
msgstr ""
1343+
"*offset* indica a partir de onde deve iniciar a leitura do arquivo. Se "
1344+
"especificado, *count* é o número total de bytes para transmitir, ao "
1345+
"contrário de transmitir o arquivo até que EOF seja atingido. A posição do "
1346+
"arquivo é sempre atualizada, mesmo quando este método levanta um erro, e :"
1347+
"meth:`file.tell() <io.IOBase.tell>` pode ser usado para obter o número atual "
1348+
"de bytes enviados."
12981349

12991350
#: ../../library/asyncio-eventloop.rst:771
13001351
msgid ""

0 commit comments

Comments
 (0)