8000 Agrego un poco de homogeneidad a la traducción · python/python-docs-es@85e154d · GitHub
[go: up one dir, main page]

Skip to content

Commit 85e154d

Browse files
committed
Agrego un poco de homogeneidad a la traducción
1 parent fde3945 commit 85e154d

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

library/asyncio-stream.po

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2023-02-10 13:49+0100\n"
14+
"PO-Revision-Date: 2023-02-10 14:01+0100\n"
1515
"Last-Translator: Gustavo Huarcaya <diavolo@gahd.net>\n"
1616
"Language-Team: python-doc-es\n"
1717
"Language: es\n"
@@ -67,15 +67,15 @@ msgid ""
6767
"Establish a network connection and return a pair of ``(reader, writer)`` "
6868
"objects."
6969
msgstr ""
70-
"Establece una conexión de red y retorna un par de objetos ``(reader, "
70+
"Establece una conexión de red y devuelve un par de objetos ``(reader, "
7171
"writer)``."
7272

7373
#: ../Doc/library/asyncio-stream.rst:60
7474
msgid ""
7575
"The returned *reader* and *writer* objects are instances of :class:"
7676
"`StreamReader` and :class:`StreamWriter` classes."
7777
msgstr ""
78-
"Los objetos retornados *reader* y *writer* son instancias de las clases :"
78+
"Los objetos *reader* y *writer* devueltos son instancias de las clases :"
7979
"class:`StreamReader` y :class:`StreamWriter`."
8080

8181
#: ../Doc/library/asyncio-stream.rst:63 ../Doc/library/asyncio-stream.rst:105
@@ -84,7 +84,7 @@ msgid ""
8484
"`StreamReader` instance. By default the *limit* is set to 64 KiB."
8585
msgstr ""
8686
"*limit* determina el límite de tamaño del búfer utilizado por la instancia "
87-
"de :class:`StreamReader` retornada. De forma predeterminada, *limit* está "
87+
"de :class:`StreamReader` devuelta. De forma predeterminada, *limit* está "
8888
"establecido en 64 KiB."
8989

9090
#: ../Doc/library/asyncio-stream.rst:67
@@ -111,12 +111,12 @@ msgstr "Se agregó el parámetro *ssl_handshake_timeout*."
111111

112112
#: ../Doc/library/asyncio-stream.rst:79
113113
msgid "Added *happy_eyeballs_delay* and *interleave* parameters."
114-
msgstr "Añadidos los parámetros *happy_eyeballs_delay* e *interleave*."
114+
msgstr "Se agregaron los parámetros *happy_eyeballs_delay* e *interleave*."
115115

116116
#: ../Doc/library/asyncio-stream.rst:82 ../Doc/library/asyncio-stream.rst:121
117117
#: ../Doc/library/asyncio-stream.rst:150 ../Doc/library/asyncio-stream.rst:176
118118
msgid "Removed the *loop* parameter."
119-
msgstr "Se ha eliminado el parámetro *loop*."
119+
msgstr "Se eliminó el parámetro *loop*."
120120

121121
#: ../Doc/library/asyncio-stream.rst:94
122122
msgid "Start a socket server."
@@ -172,7 +172,7 @@ msgstr "Sockets Unix"
172172
msgid ""
173173
"Establish a Unix socket connection and return a pair of ``(reader, writer)``."
174174
msgstr ""
175-
"Establece una conexión de socket Unix y retorna un par de ``(reader, "
175+
"Establece una conexión de socket Unix y devuelve un par de ``(reader, "
176176
"writer)``."
177177

178178
#: ../Doc/library/asyncio-stream.rst:134
@@ -242,15 +242,15 @@ msgid ""
242242
"EOF and return all read bytes."
243243
msgstr ""
244244
"Lee hasta *n* bytes. Si no se proporciona *n*, o se establece en ``-1``, lee "
245-
"hasta EOF (final del archivo) y retorna todos los bytes leídos."
245+
"hasta EOF (final del archivo) y devuelve todos los bytes leídos."
246246

247247
#: ../Doc/library/asyncio-stream.rst:197
248248
msgid ""
249249
"If EOF was received and the internal buffer is empty, return an empty "
250250
"``bytes`` object."
251251
msgstr ""
252-
"Si se recibió EOF (final del archivo) y el búfer interno está vacío, retorna "
253-
"un objeto de ``bytes`` vacío."
252+
"Si se recibió EOF (final del archivo) y el búfer interno está vacío, "
253+
"devuelve un objeto ``bytes`` vacío."
254254

255255
#: ../Doc/library/asyncio-stream.rst:202
256256
msgid ""
@@ -265,15 +265,15 @@ msgid ""
265265
"read data."
266266
msgstr ""
267267
"Si se recibe EOF (final del archivo) y no se encontró ``\\n``, el método "
268-
"retorna datos leídos parcialmente."
268+
"devuelve datos leídos parcialmente."
269269

270270
#: ../Doc/library/asyncio-stream.rst:208
271271
msgid ""
272272
"If EOF is received and the internal buffer is empty, return an empty "
273273
"``bytes`` object."
274274
msgstr ""
275-
"Si se recibe EOF (final de archivo) y el búfer interno está vacío, retorna "
276-
"un objeto de ``bytes`` vacío."
275+
"Si se recibe EOF (final de archivo) y el búfer interno está vacío, devuelve "
276+
"un objeto ``bytes`` vacío."
277277

278278
#: ../Doc/library/asyncio-stream.rst:213
279279
msgid "Read exactly *n* bytes."
@@ -300,7 +300,7 @@ msgid ""
300300
"(consumed). Returned data will include the separator at the end."
301301
msgstr ""
302302
"En caso de éxito, los datos y el separador se eliminarán del búfer interno "
303-
"(consumido). Los datos retornados incluirán el separador al final."
303+
"(consumido). Los datos devueltos incluirán el separador al final."
304304

305305
#: ../Doc/library/asyncio-stream.rst:227
306306
msgid ""
@@ -327,7 +327,7 @@ msgstr ""
327327
#: ../Doc/library/asyncio-stream.rst:240
328328
msgid "Return ``True`` if the buffer is empty and :meth:`feed_eof` was called."
329329
msgstr ""
330-
"Retorna ``True`` si el buffer está vacío y :meth:`feed_eof` fue llamado."
330+
"Devuelve ``True`` si el buffer está vacío y :meth:`feed_eof` fue llamado."
331331

332332
#: ../Doc/library/asyncio-stream.rst:245
333333
msgid "StreamWriter"
@@ -385,7 +385,7 @@ msgid ""
385385
"Return ``True`` if the underlying transport supports the :meth:`write_eof` "
386386
"method, ``False`` otherwise."
387387
msgstr ""
388-
"Retorna ``True`` si el transporte subyacente admite el método :meth:"
388+
"Devuelve ``True`` si el transporte subyacente admite el método :meth:"
389389
"`write_eof`, ``False`` en caso contrario."
390390

391391
#: ../Doc/library/asyncio-stream.rst:295
@@ -397,7 +397,7 @@ msgstr ""
397397

398398
#: ../Doc/library/asyncio-stream.rst:300
399399
msgid "Return the underlying asyncio transport."
400-
msgstr "Retorna el transporte asyncio subyacente."
400+
msgstr "Devuelve el transporte asyncio subyacente."
401401

402402
#: ../Doc/library/asyncio-stream.rst:304
403403
msgid ""
@@ -461,7 +461,7 @@ msgstr ""
461461
msgid ""
462462
"Return ``True`` if the stream is closed or in the process of being closed."
463463
msgstr ""
464-
"Retorna ``True`` si la secuencia está cerrada o en proceso de cerrarse."
464+
"Devuelve ``True`` si la secuencia está cerrada o en proceso de cerrarse."
465465

466466
#: ../Doc/library/asyncio-stream.rst:349
467467
msgid "Wait until the stream is closed."

0 commit comments

Comments
 (0)
0