Skip to content

Commit 1c68b8a

Browse files
authored
Merge pull request #184 from cmaureir/traduccion-concrete
2 parents bca6fda + 2dff9b9 commit 1c68b8a

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

c-api/concrete.po

+30-11
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 18:24+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/concrete.rst:8
2426
msgid "Concrete Objects Layer"
25-
msgstr ""
27+
msgstr "Capa de objetos concretos"
2628

2729
#: ../Doc/c-api/concrete.rst:10
2830
msgid ""
@@ -33,6 +35,13 @@ msgid ""
3335
"object is a dictionary, use :c:func:`PyDict_Check`. The chapter is "
3436
"structured like the \"family tree\" of Python object types."
3537
msgstr ""
38+
"Las funciones de este capítulo son específicas de ciertos tipos de objetos "
39+
"de Python. Pasarles un objeto del tipo incorrecto no es una buena idea; si "
40+
"recibe un objeto de un programa Python y no está seguro de que tenga el tipo "
41+
"correcto, primero debe realizar una verificación de tipo; por ejemplo, para "
42+
"verificar que un objeto es un diccionario, utilice :c:func:`PyDict_Check`. "
43+
"El capítulo está estructurado como el \"árbol genealógico\" de los tipos de "
44+
"objetos Python."
3645

3746
#: ../Doc/c-api/concrete.rst:19
3847
msgid ""
@@ -42,39 +51,49 @@ msgid ""
4251
"can cause memory access violations and immediate termination of the "
4352
"interpreter."
4453
msgstr ""
54+
"Si bien las funciones descritas en este capítulo verifican cuidadosamente el "
55+
"tipo de objetos que se pasan, muchos de ellos no verifican si se pasa "
56+
"``NULL`` en lugar de un objeto válido. Permitir que se pase ``NULL`` puede "
57+
"causar violaciones de acceso a la memoria y la terminación inmediata del "
58+
"intérprete."
4559

4660
#: ../Doc/c-api/concrete.rst:28
4761
msgid "Fundamental Objects"
48-
msgstr ""
62+
msgstr "Objetos fundamentales"
4963

5064
#: ../Doc/c-api/concrete.rst:30
5165
msgid ""
5266
"This section describes Python type objects and the singleton object ``None``."
5367
msgstr ""
68+
"Esta sección describe los objetos de tipo Python y el objeto singleton "
69+
"``None``."
5470

5571
#: ../Doc/c-api/concrete.rst:41
5672
msgid "Numeric Objects"
57-
msgstr ""
73+
msgstr "Objetos numéricos"
5874

5975
#: ../Doc/c-api/concrete.rst:56
6076
msgid "Sequence Objects"
61-
msgstr ""
77+
msgstr "Objetos de secuencia"
6278

6379
#: ../Doc/c-api/concrete.rst:60
6480
msgid ""
6581
"Generic operations on sequence objects were discussed in the previous "
6682
"chapter; this section deals with the specific kinds of sequence objects that "
6783
"are intrinsic to the Python language."
6884
msgstr ""
85+
"Las operaciones genéricas en los objetos de secuencia se discutieron en el "
86+
"capítulo anterior; Esta sección trata sobre los tipos específicos de objetos "
87+
"de secuencia que son intrínsecos al lenguaje Python."
6988

7089
#: ../Doc/c-api/concrete.rst:78
7190
msgid "Container Objects"
72-
msgstr ""
91+
msgstr "Objetos contenedor"
7392

7493
#: ../Doc/c-api/concrete.rst:91
7594
msgid "Function Objects"
76-
msgstr ""
95+
msgstr "Objetos de función"
7796

7897
#: ../Doc/c-api/concrete.rst:102
7998
msgid "Other Objects"
80-
msgstr ""
99+
msgstr "Otros objetos"

dict

+2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ Monty
2727
NumPy
2828
Numerical
2929
Package
30+
Pasarles
3031
Perl
3132
Pillow
3233
PyRun
@@ -186,6 +187,7 @@ sincronización
186187
singleton
187188
sintácticamente
188189
situ
190+
singleton
189191
sobreescriban
190192
sobreescribe
191193
sockets

0 commit comments

Comments
 (0)