Skip to content

Commit d77581b

Browse files
authored
Merge pull request #181 from cmaureir/traduccion-cell
2 parents b2ec573 + 6165208 commit d77581b

File tree

2 files changed

+32
-8
lines changed

2 files changed

+32
-8
lines changed

c-api/cell.po

+31-8
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,25 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"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 16:47+0200\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"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"
2224

2325
#: ../Doc/c-api/cell.rst:6
2426
msgid "Cell Objects"
25-
msgstr ""
27+
msgstr "Objetos Celda"
2628

2729
#: ../Doc/c-api/cell.rst:8
2830
msgid ""
@@ -35,34 +37,48 @@ msgid ""
3537
"support from the generated byte-code; these are not automatically de-"
3638
"referenced when accessed. Cell objects are not likely to be useful elsewhere."
3739
msgstr ""
40+
"Los objetos celda (*cell*) se utilizan para implementar variables a las que "
41+
"hacen referencia varios ámbitos. Para cada variable, se crea un objeto de "
42+
"celda para almacenar el valor; Las variables locales de cada marco de pila "
43+
"que hace referencia al valor contienen una referencia a las celdas de "
44+
"ámbitos externos que también usan esa variable. Cuando se accede al valor, "
45+
"se utiliza el valor contenido en la celda en lugar del objeto de la celda en "
46+
"sí. Esta desreferenciación del objeto de celda requiere soporte del código "
47+
"de bytes generado; estos no se eliminan automáticamente cuando se accede a "
48+
"ellos. No es probable que los objetos celda sean útiles en otros lugares."
3849

3950
#: ../Doc/c-api/cell.rst:20
4051
msgid "The C structure used for cell objects."
41-
msgstr ""
52+
msgstr "La estructura C utilizada para objetos celda."
4253

4354
#: ../Doc/c-api/cell.rst:25
4455
msgid "The type object corresponding to cell objects."
45-
msgstr ""
56+
msgstr "El objeto tipo correspondiente a los objetos celda."
4657

4758
#: ../Doc/c-api/cell.rst:30
4859
msgid "Return true if *ob* is a cell object; *ob* must not be ``NULL``."
4960
msgstr ""
61+
"Retorna verdadero si *ob* es un objeto de celda; *ob* no debe ser ``NULL``."
5062

5163
#: ../Doc/c-api/cell.rst:35
5264
msgid ""
5365
"Create and return a new cell object containing the value *ob*. The parameter "
5466
"may be ``NULL``."
5567
msgstr ""
68+
"Crea y retorna un nuevo objeto de celda que contiene el valor *ob*. El "
69+
"parámetro puede ser ``NULL``."
5670

5771
#: ../Doc/c-api/cell.rst:41
5872
msgid "Return the contents of the cell *cell*."
59-
msgstr ""
73+
msgstr "Retorna el contenido de la celda *cell*."
6074

6175
#: ../Doc/c-api/cell.rst:46
6276
msgid ""
6377
"Return the contents of the cell *cell*, but without checking that *cell* is "
6478
"non-``NULL`` and a cell object."
6579
msgstr ""
80+
"Retorna el contenido de la celda *cell*, pero sin verificar que *cell* no "
81+
"sea ``NULL`` y que sea un objeto de celda."
6682

6783
#: ../Doc/c-api/cell.rst:52
6884
msgid ""
@@ -71,10 +87,17 @@ msgid ""
7187
"*cell* must be non-``NULL``; if it is not a cell object, ``-1`` will be "
7288
"returned. On success, ``0`` will be returned."
7389
msgstr ""
90+
"Establece el contenido del objeto de celda *cell* con el valor *value*. Esto "
91+
"libera la referencia a cualquier contenido actual de la celda. *value* puede "
92+
"ser ``NULL``. *cell* no debe ser ``NULL``; Si no es un objeto de celda, se "
93+
"retornará ``-1``. En caso de éxito, se retornará ``0``."
7494

7595
#: ../Doc/c-api/cell.rst:60
7696
msgid ""
7797
"Sets the value of the cell object *cell* to *value*. No reference counts "
7898
"are adjusted, and no checks are made for safety; *cell* must be non-``NULL`` "
7999
"and must be a cell object."
80100
msgstr ""
101+
"Establece el valor del objeto de celda *cell* en el valor *value*. No se "
102+
"ajustan los recuentos de referencia y no se realizan verificaciones de "
103+
"seguridad; *cell* no debe ser ``NULL`` y debe ser un objeto de celda."

dict

+1
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,7 @@ desasignación
151151
descompresor
152152
deserialización
153153
deserializar
154+
desreferenciación
154155
dict
155156
dinámicamente
156157
docstring

0 commit comments

Comments
 (0)