Skip to content

Commit e93f12b

Browse files
committed
Traducido c-api/cell
1 parent dca47e6 commit e93f12b

File tree

2 files changed

+33
-8
lines changed

2 files changed

+33
-8
lines changed

c-api/cell.po

+32-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 de celda"
2628

2729
#: ../Doc/c-api/cell.rst:8
2830
msgid ""
@@ -35,34 +37,49 @@ 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 de \"celda\" (*cell*) se utilizan para implementar variables a "
41+
"las que hacen referencia varios ámbitos. Para cada variable, se crea un "
42+
"objeto de celda para almacenar el valor; Las variables locales de cada marco "
43+
"de pila que hace referencia al valor contienen una referencia a las celdas "
44+
"de ámbitos externos que también usan esa variable. Cuando se accede al "
45+
"valor, se utiliza el valor contenido en la celda en lugar del objeto de la "
46+
"celda en sí. Esta desreferenciación del objeto de celda requiere soporte del "
47+
"código de bytes generado; estos no se eliminan automáticamente cuando se "
48+
"accede a ellos. No es probable que los objetos de celda sean útiles en otros "
49+
"lugares."
3850

3951
#: ../Doc/c-api/cell.rst:20
4052
msgid "The C structure used for cell objects."
41-
msgstr ""
53+
msgstr "La estructura C utilizada para objetos de celda."
4254

4355
#: ../Doc/c-api/cell.rst:25
4456
msgid "The type object corresponding to cell objects."
45-
msgstr ""
57+
msgstr "El objeto tipo correspondiente a los objetos de celda."
4658

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

5164
#: ../Doc/c-api/cell.rst:35
5265
msgid ""
5366
"Create and return a new cell object containing the value *ob*. The parameter "
5467
"may be ``NULL``."
5568
msgstr ""
69+
"Crea y retorna un nuevo objeto de celda que contiene el valor *ob*. El "
70+
"parámetro puede ser ``NULL``."
5671

5772
#: ../Doc/c-api/cell.rst:41
5873
msgid "Return the contents of the cell *cell*."
59-
msgstr ""
74+
msgstr "Retorna el contenido de la celda *cell*."
6075

6176
#: ../Doc/c-api/cell.rst:46
6277
msgid ""
6378
"Return the contents of the cell *cell*, but without checking that *cell* is "
6479
"non-``NULL`` and a cell object."
6580
msgstr ""
81+
"Retorna el contenido de la celda *cell*, pero sin verificar que *cell* no "
82+
"sea ``NULL`` y que sea un objeto de celda."
6683

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

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

dict

+1
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ default
6464
descompresor
6565
deserialización
6666
deserializar
67+
desreferenciación
6768
dict
6869
dinámicamente
6970
docstring

0 commit comments

Comments
 (0)