Skip to content

Commit ac67bf5

Browse files
committed
Traducido archivo library/asyncio.po
1 parent fe40a5a commit ac67bf5

File tree

2 files changed

+38
-15
lines changed

2 files changed

+38
-15
lines changed

TRANSLATORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,3 +28,4 @@ Agustina Quiros (@qagustina)
2828
María Andrea Vignau (@mavignau @marian-vignau)
2929
Leonardo Gomez (@gomezgleonardob)
3030
José Miguel Hernández Cabrera (@miguelheca)
31+
David Revillas (@r3v1)

library/asyncio.po

Lines changed: 37 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,89 +6,102 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-06-28 20:50+0200\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
21+
"Last-Translator: \n"
22+
"Language: es_ES\n"
23+
"X-Generator: Poedit 2.3\n"
2224

2325
#: ../Doc/library/asyncio.rst:66
2426
msgid "High-level APIs"
25-
msgstr ""
27+
msgstr "*APIs* de alto nivel"
2628

2729
#: ../Doc/library/asyncio.rst:77
2830
msgid "Low-level APIs"
29-
msgstr ""
31+
msgstr "*APIs* de bajo nivel"
3032

3133
#: ../Doc/library/asyncio.rst:87
3234
msgid "Guides and Tutorials"
33-
msgstr ""
35+
msgstr "Guías y tutoriales"
3436

3537
#: ../Doc/library/asyncio.rst:2
3638
msgid ":mod:`asyncio` --- Asynchronous I/O"
37-
msgstr ""
39+
msgstr ":mod:`asyncio` --- E/S Asíncrona"
3840

3941
msgid "Hello World!"
40-
msgstr ""
42+
msgstr "¡Hola Mundo!"
4143

4244
#: ../Doc/library/asyncio.rst:23
4345
msgid ""
4446
"asyncio is a library to write **concurrent** code using the **async/await** "
4547
"syntax."
4648
msgstr ""
49+
"asyncio es una librería para escribir código **concurrente** utilizando la "
50+
"sintaxis **async/await**."
4751

4852
#: ../Doc/library/asyncio.rst:26
4953
msgid ""
5054
"asyncio is used as a foundation for multiple Python asynchronous frameworks "
5155
"that provide high-performance network and web-servers, database connection "
5256
"libraries, distributed task queues, etc."
5357
msgstr ""
58+
"asyncio es utilizado como base en múltiples *frameworks* de Python y provee "
59+
"un alto rendimiento en redes y servidores web, librerías de conexión de base "
60+
"de datos, colas de tareas distribuidas, etc."
5461

5562
#: ../Doc/library/asyncio.rst:30
5663
msgid ""
5764
"asyncio is often a perfect fit for IO-bound and high-level **structured** "
5865
"network code."
5966
msgstr ""
67+
"asyncio suele encajar perfectamente con operaciones E/S y código de red "
68+
"**estructurado** de alto nivel."
6069

6170
#: ../Doc/library/asyncio.rst:33
6271
msgid "asyncio provides a set of **high-level** APIs to:"
63-
msgstr ""
72+
msgstr "asyncio provee un conjunto de *APIs* de alto nivel:"
6473

6574
#: ../Doc/library/asyncio.rst:35
6675
msgid ""
6776
":ref:`run Python coroutines <coroutine>` concurrently and have full control "
6877
"over their execution;"
6978
msgstr ""
79+
":ref:`run Python coroutines <coroutine>` de manera concurrente y tener "
80+
"control total sobre su ejecución;"
7081

7182
#: ../Doc/library/asyncio.rst:38
7283
msgid "perform :ref:`network IO and IPC <asyncio-streams>`;"
73-
msgstr ""
84+
msgstr "realiza :ref:`network IO and IPC <asyncio-streams>`;"
7485

7586
#: ../Doc/library/asyncio.rst:40
7687
msgid "control :ref:`subprocesses <asyncio-subprocess>`;"
77-
msgstr ""
88+
msgstr "controla :ref:`subprocesses <asyncio-subprocess>`;"
7889

7990
#: ../Doc/library/asyncio.rst:42
8091
msgid "distribute tasks via :ref:`queues <asyncio-queues>`;"
81-
msgstr ""
92+
msgstr "distribuye tares vía :ref:`queues <asyncio-queues>`;"
8293

8394
#: ../Doc/library/asyncio.rst:44
8495
msgid ":ref:`synchronize <asyncio-sync>` concurrent code;"
85-
msgstr ""
96+
msgstr ":ref:`synchronize <asyncio-sync>` código concurrente;"
8697

8798
#: ../Doc/library/asyncio.rst:46
8899
msgid ""
89100
"Additionally, there are **low-level** APIs for *library and framework "
90101
"developers* to:"
91102
msgstr ""
103+
"Adicionalmente, existen*APIs* de bajo nivel para *desarrolladores de "
104+
"librerías y frameworks* para:"
92105

93106
#: ../Doc/library/asyncio.rst:49
94107
msgid ""
@@ -97,23 +110,32 @@ msgid ""
97110
"`subprocesses <loop.subprocess_exec>`, handling :meth:`OS signals <loop."
98111
"add_signal_handler>`, etc;"
99112
msgstr ""
113+
"crear y administrar :ref:`event loops <asyncio-event-loop>`, el cual provee "
114+
"*APIs* asíncronas para :meth:`networking <loop.create_server>`, ejecutar :"
115+
"meth:`subprocesses <loop.subprocess_exec>`, gestionar :meth:`OS signals "
116+
"<loop.add_signal_handler>`, etc;"
100117

101118
#: ../Doc/library/asyncio.rst:54
102119
msgid ""
103120
"implement efficient protocols using :ref:`transports <asyncio-transports-"
104121
"protocols>`;"
105122
msgstr ""
123+
"implementar protocolos eficientes utilizando :ref:`transports <asyncio-"
124+
"transports-protocols>`;"
106125

107126
#: ../Doc/library/asyncio.rst:57
108127
msgid ""
109128
":ref:`bridge <asyncio-futures>` callback-based libraries and code with async/"
110129
"await syntax."
111130
msgstr ""
131+
"librerías :ref:`bridge <asyncio-futures>` basadas en invocables y código con "
132+
"sintáxis *async/wait*."
112133

113134
#: ../Doc/library/asyncio.rst:65
114135
msgid "Reference"
115-
msgstr ""
136+
msgstr "Referencias"
116137

117138
#: ../Doc/library/asyncio.rst:96
118139
msgid "The source code for asyncio can be found in :source:`Lib/asyncio/`."
119140
msgstr ""
141+
"El código fuente para asyncio puede encontrarse en :source:`Lib/asyncio/`."

0 commit comments

Comments
 (0)