Skip to content

Commit 4cd3ede

Browse files
committed
solved conflict in dict and spell correction
2 parents ee72c14 + e510d87 commit 4cd3ede

File tree

5 files changed

+193
-30
lines changed

5 files changed

+193
-30
lines changed

TRANSLATORS

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
Paula Aragón (@pandrearro)
12
Héctor Canto (@hectorcanto_dev)
23
Carlos Crespo (@cacrespo)
34
Raúl Cumplido (@raulcd)

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

+8-7
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ Inf
4343
Interesantemente
4444
Java
4545
Jim
46-
Jim
4746
Jython
4847
Kivy
4948
L
@@ -86,7 +85,7 @@ Schwartz
8685
SciPy
8786
SimpleFileExFlags
8887
Smalltalk
89-
Smalltalk
88+
Spot
9089
Stein
9190
TCP
9291
Tcl
@@ -118,6 +117,7 @@ b
118117
backspace
119118
bash
120119
batch
120+
big-endian
121121
bloqueante
122122
bug
123123
built
@@ -126,6 +126,7 @@ bytecode
126126
bytes
127127
búfer
128128
búferes
129+
class
129130
coerción
130131
collector
131132
comilla
@@ -149,6 +150,7 @@ desasignación
149150
descompresor
150151
deserialización
151152
deserializar
153+
desreferenciación
152154
dict
153155
dinámicamente
154156
docstring
@@ -182,6 +184,7 @@ imports
182184
imprimible
183185
indentación
184186
indentada
187+
indentadas
185188
indentado
186189
indentando
187190
indexables
@@ -205,16 +208,17 @@ intermezzo
205208
interoperabilidad
206209
intérpreter
207210
invocable
208-
invocable
209211
invocables
210212
iterador
211213
iteradores
212214
json
213215
l
216+
letter
214217
lexicográfica
215218
lexicográfico
216219
libtclsam
217220
libtksam
221+
lowecase
218222
m
219223
manejador
220224
manejadores
@@ -225,6 +229,7 @@ metaclase
225229
metaclases
226230
mezclarlos
227231
modularidad
232+
monoespaciada
228233
mortem
229234
muestrea
230235
multi
@@ -303,7 +308,6 @@ serializar
303308
shell
304309
sincronización
305310
singleton
306-
singleton
307311
sintácticamente
308312
situ
309313
sobreescriban
@@ -315,11 +319,8 @@ sorprendentemente
315319
sort
316320
spam
317321
stderr
318-
stderr
319-
stdin
320322
stdin
321323
stdout
322-
stdout
323324
strings
324325
sub
325326
subcarpetas

library/functions.po

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-07 14:37+0200\n"
14-
"PO-Revision-Date: 2020-05-13 20:45+0200\n"
14+
"PO-Revision-Date: 2020-05-14 09:44+0200\n"
1515
"Last-Translator: \n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-esMIME-Version: 1.0\n"

0 commit comments

Comments
 (0)