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-05-09 15:39+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\n "
23
+ "X-Generator : Poedit 2.3\n "
22
24
23
25
#: ../Doc/c-api/gen.rst:6
24
26
msgid "Generator Objects"
25
- msgstr ""
27
+ msgstr "Objetos Generadores "
26
28
27
29
#: ../Doc/c-api/gen.rst:8
28
30
msgid ""
@@ -31,31 +33,41 @@ msgid ""
31
33
"rather than explicitly calling :c:func:`PyGen_New` or :c:func:"
32
34
"`PyGen_NewWithQualName`."
33
35
msgstr ""
36
+ "Los objetos generadores son lo que Python usa para implementar iteradores "
37
+ "generadores. Normalmente se crean iterando sobre una función que produce "
38
+ "valores, en lugar de llamar explícitamente :c:func:`PyGen_New` o :c:func:"
39
+ "`PyGen_NewWithQualName`."
34
40
35
41
#: ../Doc/c-api/gen.rst:15
36
42
msgid "The C structure used for generator objects."
37
- msgstr ""
43
+ msgstr "La estructura en C utilizada para los objetos generadores. "
38
44
39
45
#: ../Doc/c-api/gen.rst:20
40
46
msgid "The type object corresponding to generator objects."
41
- msgstr ""
47
+ msgstr "El objeto tipo correspondiente a los objetos generadores. "
42
48
43
49
#: ../Doc/c-api/gen.rst:25
44
50
msgid "Return true if *ob* is a generator object; *ob* must not be ``NULL``."
45
51
msgstr ""
52
+ "Retorna verdadero si *ob* es un objeto generador; *ob* no debe ser ``NULL``."
46
53
47
54
#: ../Doc/c-api/gen.rst:30
48
55
msgid ""
49
56
"Return true if *ob*'s type is :c:type:`PyGen_Type`; *ob* must not be "
50
57
"``NULL``."
51
58
msgstr ""
59
+ "Retorna verdadero si el tipo de *ob* es :c:type:`PyGen_Type`; *ob* no debe "
60
+ "ser ``NULL``."
52
61
53
62
#: ../Doc/c-api/gen.rst:35
54
63
msgid ""
55
64
"Create and return a new generator object based on the *frame* object. A "
56
65
"reference to *frame* is stolen by this function. The argument must not be "
57
66
"``NULL``."
58
67
msgstr ""
68
+ "Crea y retorna un nuevo objeto generador basado en el objeto *frame*. Una "
69
+ "referencia a *frame* es robada por esta función. El argumento no debe ser "
70
+ "``NULL``."
59
71
60
72
#: ../Doc/c-api/gen.rst:41
61
73
msgid ""
@@ -64,3 +76,7 @@ msgid ""
64
76
"to *frame* is stolen by this function. The *frame* argument must not be "
65
77
"``NULL``."
66
78
msgstr ""
79
+ "Crea y retorna un nuevo objeto generador basado en el objeto *frame*, con "
80
+ "``__name__`` y ``__qualname__`` establecido en *name* y *qualname*. Una "
81
+ "referencia a *frame* es robada por esta función. El argumento *frame* no "
82
+ "debe ser ``NULL``."
0 commit comments