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

Skip to content

Commit 46893d8

Browse files
pomerge from 3.10 branch into 3.7
1 parent 7b716ea commit 46893d8

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

library/asyncio-eventloop.po

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -913,19 +913,26 @@ msgid ""
913913
"The socket family will be :py:data:`~socket.AF_UNIX`; socket type will be :"
914914
"py:data:`~socket.SOCK_STREAM`."
915915
msgstr ""
916+
"A família de soquete será :py:data:`~socket.AF_UNIX`; o tipo de soquete "
917+
"será :py:data:`~socket.SOCK_STREAM`."
916918

917919
#: ../../library/asyncio-eventloop.rst:515
918920
msgid ""
919921
"*path* is the name of a Unix domain socket and is required, unless a *sock* "
920922
"parameter is specified. Abstract Unix sockets, :class:`str`, :class:"
921923
"`bytes`, and :class:`~pathlib.Path` paths are supported."
922924
msgstr ""
925+
"*path* é o nome de um soquete de domínio Unix e é obrigatório, a não ser que "
926+
"um parâmetro *sock* seja esecificado. Soquetes Unix abstratos, :class:"
927+
"`str`, :class:`bytes`, e caminhos :class:`~pathlib.Path` são suportados."
923928

924929
#: ../../library/asyncio-eventloop.rst:520
925930
msgid ""
926931
"See the documentation of the :meth:`loop.create_connection` method for "
927932
"information about arguments to this method."
928933
msgstr ""
934+
"Veja a documentação do método :meth:`loop.create_connection` para "
935+
"informações a respeito de argumentos para este método."
929936

930937
#: ../../library/asyncio-eventloop.rst:524
931938
#: ../../library/asyncio-eventloop.rst:644
@@ -941,46 +948,57 @@ msgstr ""
941948

942949
#: ../../library/asyncio-eventloop.rst:535
943950
msgid "Creating network servers"
944-
msgstr ""
951+
msgstr "Criando servidores de rede"
945952

946953
#: ../../library/asyncio-eventloop.rst:545
947954
msgid ""
948955
"Create a TCP server (socket type :data:`~socket.SOCK_STREAM`) listening on "
949956
"*port* of the *host* address."
950957
msgstr ""
958+
"Cria um servidor TCP (tipo de soquete :data:`~socket.SOCK_STREAM`) escutando "
959+
"em *port* do entedeço *host*."
951960

952961
#: ../../library/asyncio-eventloop.rst:548
953962
msgid "Returns a :class:`Server` object."
954-
msgstr ""
963+
msgstr "Retorna um objeto :class:`Server`."
955964

956965
#: ../../library/asyncio-eventloop.rst:550
957966
msgid "Arguments:"
958-
msgstr ""
967+
msgstr "Argumentos:"
959968

960969
#: ../../library/asyncio-eventloop.rst:555
961970
msgid ""
962971
"The *host* parameter can be set to several types which determine where the "
963972
"server would be listening:"
964973
msgstr ""
974+
"O parâmetro *host* pode ser definido para diversos tipos, o qual determina "
975+
"onde o servidor deve escutar:"
965976

966977
#: ../../library/asyncio-eventloop.rst:558
967978
msgid ""
968979
"If *host* is a string, the TCP server is bound to a single network interface "
969980
"specified by *host*."
970981
msgstr ""
982+
"Se *host* for uma string, o servidor TCP está vinculado a apenas uma "
983+
"interface de rede, especificada por *host*."
971984

972985
#: ../../library/asyncio-eventloop.rst:561
973986
msgid ""
974987
"If *host* is a sequence of strings, the TCP server is bound to all network "
975988
"interfaces specified by the sequence."
976989
msgstr ""
990+
"Se *host* é uma sequência de strings, o servidor TCP está vinculado a todas "
991+
"as interfaces de rede especificadas pela sequência."
977992

978993
#: ../../library/asyncio-eventloop.rst:564
979994
msgid ""
980995
"If *host* is an empty string or ``None``, all interfaces are assumed and a "
981996
"list of multiple sockets will be returned (most likely one for IPv4 and "
982997
"another one for IPv6)."
983998
msgstr ""
999+
"Se *host* é uma string vazia ou ``None``, todas as interfaces são assumidas "
1000+
"e uma lista de múltiplos soquetes será retornada (muito provavelmente um "
1001+
"para IPv4 e outro para IPv6)."
9841002

9851003
#: ../../library/asyncio-eventloop.rst:568
9861004
msgid ""

0 commit comments

Comments
 (0)