Skip to content

Commit e191ed6

Browse files
authored
Merge pull request #148 from cmaureir/traduccion-bool
Traducido c-api/bool
2 parents 6647e7a + 4f566b8 commit e191ed6

File tree

1 file changed

+22
-6
lines changed

1 file changed

+22
-6
lines changed

c-api/bool.po

+22-6
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# 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.
44
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
55
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
66
#
7-
#, fuzzy
87
msgid ""
98
msgstr ""
109
"Project-Id-Version: Python 3.8\n"
1110
"Report-Msgid-Bugs-To: \n"
1211
"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"
1513
"Language-Team: python-doc-es\n"
1614
"MIME-Version: 1.0\n"
1715
"Content-Type: text/plain; charset=UTF-8\n"
1816
"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"
1921

2022
#: ../Doc/c-api/bool.rst:6
2123
msgid "Boolean Objects"
22-
msgstr ""
24+
msgstr "Objetos Booleanos"
2325

2426
#: ../Doc/c-api/bool.rst:8
2527
msgid ""
@@ -28,37 +30,51 @@ msgid ""
2830
"normal creation and deletion functions don't apply to booleans. The "
2931
"following macros are available, however."
3032
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."
3137

3238
#: ../Doc/c-api/bool.rst:16
3339
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`."
3541

3642
#: ../Doc/c-api/bool.rst:21
3743
msgid ""
3844
"The Python ``False`` object. This object has no methods. It needs to be "
3945
"treated just like any other object with respect to reference counts."
4046
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."
4149

4250
#: ../Doc/c-api/bool.rst:27
4351
msgid ""
4452
"The Python ``True`` object. This object has no methods. It needs to be "
4553
"treated just like any other object with respect to reference counts."
4654
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."
4757

4858
#: ../Doc/c-api/bool.rst:33
4959
msgid ""
5060
"Return :const:`Py_False` from a function, properly incrementing its "
5161
"reference count."
5262
msgstr ""
63+
"Retorna :const:`Py_False` de una función, incrementando adecuadamente su "
64+
"recuento de referencia."
5365

5466
#: ../Doc/c-api/bool.rst:39
5567
msgid ""
5668
"Return :const:`Py_True` from a function, properly incrementing its reference "
5769
"count."
5870
msgstr ""
71+
"Retorna :const:`Py_True` desde una función, incrementando adecuadamente su "
72+
"recuento de referencia."
5973

6074
#: ../Doc/c-api/bool.rst:45
6175
msgid ""
6276
"Return a new reference to :const:`Py_True` or :const:`Py_False` depending on "
6377
"the truth value of *v*."
6478
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

Comments
 (0)