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,51 @@ 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 ``False`` 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 ``True`` de Python. Este objeto no tiene métodos. Debe tratarse "
56
+ "como cualquier otro objeto con respecto a los recuentos de referencia."
47
57
48
58
#: ../Doc/c-api/bool.rst:33
49
59
msgid ""
50
60
"Return :const:`Py_False` from a function, properly incrementing its "
51
61
"reference count."
52
62
msgstr ""
63
+ "Retorna :const:`Py_False` de una función, incrementando adecuadamente su "
64
+ "recuento de referencia."
53
65
54
66
#: ../Doc/c-api/bool.rst:39
55
67
msgid ""
56
68
"Return :const:`Py_True` from a function, properly incrementing its reference "
57
69
"count."
58
70
msgstr ""
71
+ "Retorna :const:`Py_True` desde una función, incrementando adecuadamente su "
72
+ "recuento de referencia."
59
73
60
74
#: ../Doc/c-api/bool.rst:45
61
75
msgid ""
62
76
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on "
63
77
"the truth value of *v*."
64
78
msgstr ""
79
+ "Retorna una nueva referencia a :const:`Py_True` o :const:`Py_False` "
80
+ "dependiendo del valor de verdad de *v*."
0 commit comments