@@ -10,23 +10,23 @@ msgid ""
10
10
msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
- "POT-Creation-Date : 2024-11-21 16:38-0300 \n "
14
- "PO-Revision-Date : 2021-08-16 13:03+0200 \n "
13
+ "POT-Creation-Date : 2023-10-12 19:43+0200 \n "
14
+ "PO-Revision-Date : 2025-05-07 20:14-0500 \n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
- "Language : es\n "
17
16
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1); \n "
17
+ "Language : es \n "
19
18
"MIME-Version : 1.0\n "
20
19
"Content-Type : text/plain; charset=utf-8\n "
21
20
"Content-Transfer-Encoding : 8bit\n "
22
- "Generated-By : Babel 2.16.0\n "
21
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
22
+ "Generated-By : Babel 2.13.0\n "
23
+ "X-Generator : Poedit 3.6\n "
23
24
24
25
#: ../Doc/c-api/bool.rst:6
25
26
msgid "Boolean Objects"
26
27
msgstr "Objetos booleanos"
27
28
28
29
#: ../Doc/c-api/bool.rst:8
29
- #, fuzzy
30
30
msgid ""
31
31
"Booleans in Python are implemented as a subclass of integers. There are "
32
32
"only two booleans, :c:data:`Py_False` and :c:data:`Py_True`. As such, the "
@@ -43,6 +43,8 @@ msgid ""
43
43
"This instance of :c:type:`PyTypeObject` represents the Python boolean type; "
44
44
"it is the same object as :class:`bool` in the Python layer."
45
45
msgstr ""
46
+ "Esta instancia de :c:type:`PyTypeObject` representa el tipo booleano de "
47
+ "Python; es el mismo objeto que :class:`bool` en la capa de Python."
46
48
47
49
#: ../Doc/c-api/bool.rst:22
48
50
msgid ""
@@ -54,40 +56,62 @@ msgstr ""
54
56
55
57
#: ../Doc/c-api/bool.rst:28
56
58
msgid ""
57
- "The Python ``False`` object. This object has no methods and is :term: "
58
- "`immortal` ."
59
+ "The Python ``False`` object. This object has no methods and is `immortal "
60
+ "<https://peps.python.org/pep-0683/>`_ ."
59
61
msgstr ""
62
+ "El objeto ``False`` de Python. Este objeto no tiene métodos y es `inmortal "
63
+ "<https://peps.python.org/pep-0683/>`_."
60
64
61
65
#: ../Doc/c-api/bool.rst:31
62
- msgid ":c:data:`Py_False` is :term:` immortal` ."
63
- msgstr ""
66
+ msgid ":c:data:`Py_False` is immortal."
67
+ msgstr ":c:data:`Py_False` es inmortal. "
64
68
65
69
#: ../Doc/c-api/bool.rst:37
66
70
msgid ""
67
- "The Python ``True`` object. This object has no methods and is :term: "
68
- "`immortal` ."
71
+ "The Python ``True`` object. This object has no methods and is `immortal "
72
+ "<https://peps.python.org/pep-0683/>`_ ."
69
73
msgstr ""
74
+ "El objeto ``True`` de Python. Este objeto no tiene métodos y es `inmortal "
75
+ "<https://peps.python.org/pep-0683/>`_."
70
76
71
77
#: ../Doc/c-api/bool.rst:40
72
- msgid ":c:data:`Py_True` is :term:` immortal` ."
73
- msgstr ""
78
+ msgid ":c:data:`Py_True` is immortal."
79
+ msgstr ":c:data:`Py_True` es inmortal. "
74
80
75
81
#: ../Doc/c-api/bool.rst:46
76
- #, fuzzy
77
82
msgid "Return :c:data:`Py_False` from a function."
78
- msgstr ""
79
- "Retorna :const:`Py_False` de una función, incrementando adecuadamente su "
80
- "recuento de referencia."
83
+ msgstr "Retorna :c:data:`Py_False` desde una función."
81
84
82
85
#: ../Doc/c-api/bool.rst:51
83
86
msgid "Return :c:data:`Py_True` from a function."
84
- msgstr ""
87
+ msgstr "Retorna :c:data:`Py_True` desde una función.. "
85
88
86
89
#: ../Doc/c-api/bool.rst:56
87
- #, fuzzy
88
90
msgid ""
89
91
"Return :c:data:`Py_True` or :c:data:`Py_False`, depending on the truth value "
90
92
"of *v*."
91
93
msgstr ""
92
- "Retorna una nueva referencia a :const:`Py_True` o :const:`Py_False` "
93
- "dependiendo del valor de verdad de *v*."
94
+ "Retorna :c:data:`Py_True` o :c:data:`Py_False`, dependiendo del valor "
95
+ "verdadero de *v*."
96
+
97
+ #~ msgid ""
98
+ #~ "The Python ``False`` object. This object has no methods. It needs to be "
99
+ #~ "treated just like any other object with respect to reference counts."
100
+ #~ msgstr ""
101
+ #~ "El objeto ``False`` de Python. Este objeto no tiene métodos. Debe "
102
+ #~ "tratarse como cualquier otro objeto con respecto a los recuentos de "
103
+ #~ "referencia."
104
+
105
+ #~ msgid ""
106
+ #~ "The Python ``True`` object. This object has no methods. It needs to be "
107
+ #~ "treated just like any other object with respect to reference counts."
108
+ #~ msgstr ""
109
+ #~ "El objeto ``True`` de Python. Este objeto no tiene métodos. Debe tratarse "
110
+ #~ "como cualquier otro objeto con respecto a los recuentos de referencia."
111
+
112
+ #~ msgid ""
113
+ #~ "Return :const:`Py_True` from a function, properly incrementing its "
114
+ #~ "reference count."
115
+ #~ msgstr ""
116
+ #~ "Retorna :const:`Py_True` desde una función, incrementando adecuadamente "
117
+ #~ "su recuento de referencia."
0 commit comments