1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-05-09 03:05+0200\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
+ "Last-Translator : \n "
19
+ "Language : es\n "
20
+ "X-Generator : Poedit 2.3\n "
19
21
20
22
#: ../Doc/c-api/bool.rst:6
21
23
msgid "Boolean Objects"
22
- msgstr ""
24
+ msgstr "Objetos Booleanos "
23
25
24
26
#: ../Doc/c-api/bool.rst:8
25
27
msgid ""
@@ -28,37 +30,52 @@ msgid ""
28
30
"normal creation and deletion functions don't apply to booleans. The "
29
31
"following macros are available, however."
30
32
msgstr ""
33
+ "Los booleanos en Python se implementan como una subclase de enteros. Solo "
34
+ "hay dos booleanos :const:`Py_False` y :const:`Py_True`. Como tal, las "
35
+ "funciones normales de creación y eliminación no se aplican a los booleanos. "
36
+ "Sin embargo, los siguientes macros están disponibles."
31
37
32
38
#: ../Doc/c-api/bool.rst:16
33
39
msgid "Return true if *o* is of type :c:data:`PyBool_Type`."
34
- msgstr ""
40
+ msgstr "Retorna verdad si *o* es de tipo :c:data:`PyBool_Type`. "
35
41
36
42
#: ../Doc/c-api/bool.rst:21
37
43
msgid ""
38
44
"The Python ``False`` object. This object has no methods. It needs to be "
39
45
"treated just like any other object with respect to reference counts."
40
46
msgstr ""
47
+ "El objeto ``Falso`` de Python. Este objeto no tiene métodos. Debe tratarse "
48
+ "como cualquier otro objeto con respecto a los recuentos de referencia."
41
49
42
50
#: ../Doc/c-api/bool.rst:27
43
51
msgid ""
44
52
"The Python ``True`` object. This object has no methods. It needs to be "
45
53
"treated just like any other object with respect to reference counts."
46
54
msgstr ""
55
+ "El objeto ``Verdadero`` de Python. Este objeto no tiene métodos. Debe "
56
+ "tratarse como cualquier otro objeto con respecto a los recuentos de "
57
+ "referencia."
47
58
48
59
#: ../Doc/c-api/bool.rst:33
49
60
msgid ""
50
61
"Return :const:`Py_False` from a function, properly incrementing its "
51
62
"reference count."
52
63
msgstr ""
64
+ "Retorna :const:`Py_False` de una función, incrementando adecuadamente su "
65
+ "recuento de referencia."
53
66
54
67
#: ../Doc/c-api/bool.rst:39
55
68
msgid ""
56
69
"Return :const:`Py_True` from a function, properly incrementing its reference "
57
70
"count."
58
71
msgstr ""
72
+ "Retorna :const:`Py_True` desde una función, incrementando adecuadamente su "
73
+ "recuento de referencia."
59
74
60
75
#: ../Doc/c-api/bool.rst:45
61
76
msgid ""
62
77
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on "
63
78
"the truth value of *v*."
64
79
msgstr ""
80
+ "Retorna una nueva referencia a :const:`Py_True` o :const:`Py_False` "
81
+ "dependiendo del valor de verdad de *v*."
0 commit comments