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 03:18+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/iter.rst:6
24
26
msgid "Iterator Protocol"
25
- msgstr ""
27
+ msgstr "Protocolo iterador "
26
28
27
29
#: ../Doc/c-api/iter.rst:8
28
30
msgid "There are two functions specifically for working with iterators."
29
- msgstr ""
31
+ msgstr "Hay dos funciones específicas para trabajar con iteradores. "
30
32
31
33
#: ../Doc/c-api/iter.rst:12
32
34
msgid "Return true if the object *o* supports the iterator protocol."
33
- msgstr ""
35
+ msgstr "Retorna verdadero si el objeto *o* admite el protocolo iterador. "
34
36
35
37
#: ../Doc/c-api/iter.rst:17
36
38
msgid ""
@@ -39,9 +41,15 @@ msgid ""
39
41
"values, returns ``NULL`` with no exception set. If an error occurs while "
40
42
"retrieving the item, returns ``NULL`` and passes along the exception."
41
43
msgstr ""
44
+ "Retorna el siguiente valor de la iteración *o*. El objeto debe ser un "
45
+ "iterador (depende de quién llama comprobar esto). Si no quedan valores "
46
+ "restantes, retorna ``NULL`` sin establecer ninguna excepción. Si se produce "
47
+ "un error al recuperar el elemento, retorna ``NULL`` y pasa la excepción."
42
48
43
49
#: ../Doc/c-api/iter.rst:22
44
50
msgid ""
45
51
"To write a loop which iterates over an iterator, the C code should look "
46
52
"something like this::"
47
53
msgstr ""
54
+ "Para escribir un bucle que itera sobre un iterador, el código en C debería "
55
+ "verse así::"