6
6
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
7
7
# get the list of volunteers
8
8
#
9
- #, fuzzy
10
9
msgid ""
11
10
msgstr ""
12
11
"Project-Id-Version : Python 3.8\n "
13
12
"Report-Msgid-Bugs-To : \n "
14
13
"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 "
17
15
"Language-Team : python-doc-es\n "
18
16
"MIME-Version : 1.0\n "
19
- "Content-Type : text/plain; charset=utf -8\n "
17
+ "Content-Type : text/plain; charset=UTF -8\n "
20
18
"Content-Transfer-Encoding : 8bit\n "
21
19
"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 "
22
24
23
25
#: ../Doc/library/asyncio.rst:66
24
26
msgid "High-level APIs"
25
- msgstr ""
27
+ msgstr "*APIs* de alto nivel "
26
28
27
29
#: ../Doc/library/asyncio.rst:77
28
30
msgid "Low-level APIs"
29
- msgstr ""
31
+ msgstr "*APIs* de bajo nivel "
30
32
31
33
#: ../Doc/library/asyncio.rst:87
32
34
msgid "Guides and Tutorials"
33
- msgstr ""
35
+ msgstr "Guías y tutoriales "
34
36
35
37
#: ../Doc/library/asyncio.rst:2
36
38
msgid ":mod:`asyncio` --- Asynchronous I/O"
37
- msgstr ""
39
+ msgstr ":mod:`asyncio` --- E/S Asíncrona "
38
40
39
41
msgid "Hello World!"
40
- msgstr ""
42
+ msgstr "¡Hola Mundo! "
41
43
42
44
#: ../Doc/library/asyncio.rst:23
43
45
msgid ""
44
46
"asyncio is a library to write **concurrent** code using the **async/await** "
45
47
"syntax."
46
48
msgstr ""
49
+ "asyncio es una librería para escribir código **concurrente** utilizando la "
50
+ "sintaxis **async/await**."
47
51
48
52
#: ../Doc/library/asyncio.rst:26
49
53
msgid ""
50
54
"asyncio is used as a foundation for multiple Python asynchronous frameworks "
51
55
"that provide high-performance network and web-servers, database connection "
52
56
"libraries, distributed task queues, etc."
53
57
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."
54
61
55
62
#: ../Doc/library/asyncio.rst:30
56
63
msgid ""
57
64
"asyncio is often a perfect fit for IO-bound and high-level **structured** "
58
65
"network code."
59
66
msgstr ""
67
+ "asyncio suele encajar perfectamente con operaciones E/S y código de red "
68
+ "**estructurado** de alto nivel."
60
69
61
70
#: ../Doc/library/asyncio.rst:33
62
71
msgid "asyncio provides a set of **high-level** APIs to:"
63
- msgstr ""
72
+ msgstr "asyncio provee un conjunto de *APIs* de alto nivel: "
64
73
65
74
#: ../Doc/library/asyncio.rst:35
66
75
msgid ""
67
76
":ref:`run Python coroutines <coroutine>` concurrently and have full control "
68
77
"over their execution;"
69
78
msgstr ""
79
+ ":ref:`run Python coroutines <coroutine>` de manera concurrente y tener "
80
+ "control total sobre su ejecución;"
70
81
71
82
#: ../Doc/library/asyncio.rst:38
72
83
msgid "perform :ref:`network IO and IPC <asyncio-streams>`;"
73
- msgstr ""
84
+ msgstr "realiza :ref:`network IO and IPC <asyncio-streams>`; "
74
85
75
86
#: ../Doc/library/asyncio.rst:40
76
87
msgid "control :ref:`subprocesses <asyncio-subprocess>`;"
77
- msgstr ""
88
+ msgstr "controla :ref:`subprocesses <asyncio-subprocess>`; "
78
89
79
90
#: ../Doc/library/asyncio.rst:42
80
91
msgid "distribute tasks via :ref:`queues <asyncio-queues>`;"
81
- msgstr ""
92
+ msgstr "distribuye tares vía :ref:`queues <asyncio-queues>`; "
82
93
83
94
#: ../Doc/library/asyncio.rst:44
84
95
msgid ":ref:`synchronize <asyncio-sync>` concurrent code;"
85
- msgstr ""
96
+ msgstr ":ref:`synchronize <asyncio-sync>` código concurrente; "
86
97
87
98
#: ../Doc/library/asyncio.rst:46
88
99
msgid ""
89
100
"Additionally, there are **low-level** APIs for *library and framework "
90
101
"developers* to:"
91
102
msgstr ""
103
+ "Adicionalmente, existen*APIs* de bajo nivel para *desarrolladores de "
104
+ "librerías y frameworks* para:"
92
105
93
106
#: ../Doc/library/asyncio.rst:49
94
107
msgid ""
@@ -97,23 +110,32 @@ msgid ""
97
110
"`subprocesses <loop.subprocess_exec>`, handling :meth:`OS signals <loop."
98
111
"add_signal_handler>`, etc;"
99
112
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;"
100
117
101
118
#: ../Doc/library/asyncio.rst:54
102
119
msgid ""
103
120
"implement efficient protocols using :ref:`transports <asyncio-transports-"
104
121
"protocols>`;"
105
122
msgstr ""
123
+ "implementar protocolos eficientes utilizando :ref:`transports <asyncio-"
124
+ "transports-protocols>`;"
106
125
107
126
#: ../Doc/library/asyncio.rst:57
108
127
msgid ""
109
128
":ref:`bridge <asyncio-futures>` callback-based libraries and code with async/"
110
129
"await syntax."
111
130
msgstr ""
131
+ "librerías :ref:`bridge <asyncio-futures>` basadas en invocables y código con "
132
+ "sintáxis *async/wait*."
112
133
113
134
#: ../Doc/library/asyncio.rst:65
114
135
msgid "Reference"
115
- msgstr ""
136
+ msgstr "Referencias "
116
137
117
138
#: ../Doc/library/asyncio.rst:96
118
139
msgid "The source code for asyncio can be found in :source:`Lib/asyncio/`."
119
140
msgstr ""
141
+ "El código fuente para asyncio puede encontrarse en :source:`Lib/asyncio/`."
0 commit comments