|
6 | 6 | # Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
|
7 | 7 | # get the list of volunteers
|
8 | 8 | #
|
9 |
| -#, fuzzy |
10 | 9 | msgid ""
|
11 | 10 | msgstr ""
|
12 | 11 | "Project-Id-Version: Python 3.8\n"
|
13 | 12 | "Report-Msgid-Bugs-To: \n"
|
14 | 13 | "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-10 02:17+0200\n" |
17 | 15 | "Language-Team: python-doc-es\n"
|
18 | 16 | "MIME-Version: 1.0\n"
|
19 |
| -"Content-Type: text/plain; charset=utf-8\n" |
| 17 | +"Content-Type: text/plain; charset=UTF-8\n" |
20 | 18 | "Content-Transfer-Encoding: 8bit\n"
|
21 | 19 | "Generated-By: Babel 2.8.0\n"
|
| 20 | +"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
| 21 | +"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n" |
| 22 | +"Language: es\n" |
| 23 | +"X-Generator: Poedit 2.3\n" |
22 | 24 |
|
23 | 25 | #: ../Doc/c-api/method.rst:6
|
24 | 26 | msgid "Instance Method Objects"
|
25 |
| -msgstr "" |
| 27 | +msgstr "Objetos de método de instancia" |
26 | 28 |
|
27 | 29 | #: ../Doc/c-api/method.rst:10
|
28 | 30 | msgid ""
|
29 | 31 | "An instance method is a wrapper for a :c:data:`PyCFunction` and the new way "
|
30 | 32 | "to bind a :c:data:`PyCFunction` to a class object. It replaces the former "
|
31 | 33 | "call ``PyMethod_New(func, NULL, class)``."
|
32 | 34 | msgstr ""
|
| 35 | +"Un método de instancia es un contenedor para una :c:data:`PyCFunction` y la " |
| 36 | +"nueva forma de vincular una :c:data:`PyCFunction` a un objeto de clase. " |
| 37 | +"Reemplaza la llamada anterior ``PyMethod_New (func, NULL, class)``." |
33 | 38 |
|
34 | 39 | #: ../Doc/c-api/method.rst:17
|
35 | 40 | msgid ""
|
36 | 41 | "This instance of :c:type:`PyTypeObject` represents the Python instance "
|
37 | 42 | "method type. It is not exposed to Python programs."
|
38 | 43 | msgstr ""
|
| 44 | +"Esta instancia de :c:type:`PyTypeObject` representa el tipo de método de " |
| 45 | +"instancia de Python. No está expuesto a los programas de Python." |
39 | 46 |
|
40 | 47 | #: ../Doc/c-api/method.rst:23
|
41 | 48 | msgid ""
|
42 | 49 | "Return true if *o* is an instance method object (has type :c:data:"
|
43 | 50 | "`PyInstanceMethod_Type`). The parameter must not be ``NULL``."
|
44 | 51 | msgstr ""
|
| 52 | +"Retorna verdadero si *o* es un objeto de método de instancia (tiene tipo :c:" |
| 53 | +"data:`PyInstanceMethod_Type`). El parámetro no debe ser ``NULL``." |
45 | 54 |
|
46 | 55 | #: ../Doc/c-api/method.rst:29
|
47 | 56 | msgid ""
|
48 | 57 | "Return a new instance method object, with *func* being any callable object "
|
49 | 58 | "*func* is the function that will be called when the instance method is "
|
50 | 59 | "called."
|
51 | 60 | msgstr ""
|
| 61 | +"Retorna un nuevo objeto de método de instancia, con *func* siendo cualquier " |
| 62 | +"objeto invocable *func* es la función que se llamará cuando se llame al " |
| 63 | +"método de instancia." |
52 | 64 |
|
53 | 65 | #: ../Doc/c-api/method.rst:36
|
54 | 66 | msgid "Return the function object associated with the instance method *im*."
|
55 |
| -msgstr "" |
| 67 | +msgstr "Retorna el objeto de función asociado con el método de instancia *im*." |
56 | 68 |
|
57 | 69 | #: ../Doc/c-api/method.rst:41
|
58 | 70 | msgid ""
|
59 | 71 | "Macro version of :c:func:`PyInstanceMethod_Function` which avoids error "
|
60 | 72 | "checking."
|
61 | 73 | msgstr ""
|
| 74 | +"Versión macro de :c:func:`PyInstanceMethod_Function` que evita la " |
| 75 | +"comprobación de errores." |
62 | 76 |
|
63 | 77 | #: ../Doc/c-api/method.rst:47
|
64 | 78 | msgid "Method Objects"
|
65 |
| -msgstr "" |
| 79 | +msgstr "Objetos método" |
66 | 80 |
|
67 | 81 | #: ../Doc/c-api/method.rst:51
|
68 | 82 | msgid ""
|
69 | 83 | "Methods are bound function objects. Methods are always bound to an instance "
|
70 | 84 | "of a user-defined class. Unbound methods (methods bound to a class object) "
|
71 | 85 | "are no longer available."
|
72 | 86 | msgstr ""
|
| 87 | +"Los métodos son objetos de función enlazados. Los métodos siempre están " |
| 88 | +"vinculados a una instancia de una clase definida por el usuario. Los métodos " |
| 89 | +"no vinculados (métodos vinculados a un objeto de clase) ya no están " |
| 90 | +"disponibles." |
73 | 91 |
|
74 | 92 | #: ../Doc/c-api/method.rst:60
|
75 | 93 | msgid ""
|
76 | 94 | "This instance of :c:type:`PyTypeObject` represents the Python method type. "
|
77 | 95 | "This is exposed to Python programs as ``types.MethodType``."
|
78 | 96 | msgstr ""
|
| 97 | +"Esta instancia de :c:type:`PyTypeObject` representa el tipo de método " |
| 98 | +"Python. Esto está expuesto a los programas de Python como ``types." |
| 99 | +"MethodType``." |
79 | 100 |
|
80 | 101 | #: ../Doc/c-api/method.rst:66
|
81 | 102 | msgid ""
|
82 | 103 | "Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). "
|
83 | 104 | "The parameter must not be ``NULL``."
|
84 | 105 | msgstr ""
|
| 106 | +"Retorna verdadero si *o* es un objeto de método (tiene tipo :c:data:" |
| 107 | +"`PyMethod_Type`). El parámetro no debe ser ``NULL``." |
85 | 108 |
|
86 | 109 | #: ../Doc/c-api/method.rst:72
|
87 | 110 | msgid ""
|
88 | 111 | "Return a new method object, with *func* being any callable object and *self* "
|
89 | 112 | "the instance the method should be bound. *func* is the function that will be "
|
90 | 113 | "called when the method is called. *self* must not be ``NULL``."
|
91 | 114 | msgstr ""
|
| 115 | +"Retorna un nuevo objeto de método, con *func* como cualquier objeto " |
| 116 | +"invocable y *self* la instancia en la que se debe vincular el método. *func* " |
| 117 | +"es la función que se llamará cuando se llame al método. *self* no debe ser " |
| 118 | +"``NULL``." |
92 | 119 |
|
93 | 120 | #: ../Doc/c-api/method.rst:79
|
94 | 121 | msgid "Return the function object associated with the method *meth*."
|
95 |
| -msgstr "" |
| 122 | +msgstr "Retorna el objeto de función asociado con el método *meth*." |
96 | 123 |
|
97 | 124 | #: ../Doc/c-api/method.rst:84
|
98 | 125 | msgid ""
|
99 | 126 | "Macro version of :c:func:`PyMethod_Function` which avoids error checking."
|
100 | 127 | msgstr ""
|
| 128 | +"Versión macro de :c:func:`PyMethod_Function` que evita la comprobación de " |
| 129 | +"errores." |
101 | 130 |
|
102 | 131 | #: ../Doc/c-api/method.rst:89
|
103 | 132 | msgid "Return the instance associated with the method *meth*."
|
104 |
| -msgstr "" |
| 133 | +msgstr "Retorna la instancia asociada con el método *meth*." |
105 | 134 |
|
106 | 135 | #: ../Doc/c-api/method.rst:94
|
107 | 136 | msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking."
|
108 | 137 | msgstr ""
|
| 138 | +"Versión macro de :c:func:`PyMethod_Self` que evita la comprobación de " |
| 139 | +"errores." |
109 | 140 |
|
110 | 141 | #: ../Doc/c-api/method.rst:99
|
111 | 142 | msgid "Clear the free list. Return the total number of freed items."
|
112 |
| -msgstr "" |
| 143 | +msgstr "Borra la lista libre. Retorna el número total de artículos liberados." |
0 commit comments