Skip to content

Commit 8a98dfb

Browse files
committed
Traducido c-api/method
1 parent e1049f2 commit 8a98dfb

File tree

1 file changed

+41
-10
lines changed

1 file changed

+41
-10
lines changed

c-api/method.po

+41-10
Original file line numberDiff line numberDiff line change
@@ -6,107 +6,138 @@
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-10 02:17+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: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
22+
"Language: es\n"
23+
"X-Generator: Poedit 2.3\n"
2224

2325
#: ../Doc/c-api/method.rst:6
2426
msgid "Instance Method Objects"
25-
msgstr ""
27+
msgstr "Objetos de método de instancia"
2628

2729
#: ../Doc/c-api/method.rst:10
2830
msgid ""
2931
"An instance method is a wrapper for a :c:data:`PyCFunction` and the new way "
3032
"to bind a :c:data:`PyCFunction` to a class object. It replaces the former "
3133
"call ``PyMethod_New(func, NULL, class)``."
3234
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)``."
3338

3439
#: ../Doc/c-api/method.rst:17
3540
msgid ""
3641
"This instance of :c:type:`PyTypeObject` represents the Python instance "
3742
"method type. It is not exposed to Python programs."
3843
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."
3946

4047
#: ../Doc/c-api/method.rst:23
4148
msgid ""
4249
"Return true if *o* is an instance method object (has type :c:data:"
4350
"`PyInstanceMethod_Type`). The parameter must not be ``NULL``."
4451
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``."
4554

4655
#: ../Doc/c-api/method.rst:29
4756
msgid ""
4857
"Return a new instance method object, with *func* being any callable object "
4958
"*func* is the function that will be called when the instance method is "
5059
"called."
5160
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."
5264

5365
#: ../Doc/c-api/method.rst:36
5466
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*."
5668

5769
#: ../Doc/c-api/method.rst:41
5870
msgid ""
5971
"Macro version of :c:func:`PyInstanceMethod_Function` which avoids error "
6072
"checking."
6173
msgstr ""
74+
"Versión macro de :c:func:`PyInstanceMethod_Function` que evita la "
75+
"comprobación de errores."
6276

6377
#: ../Doc/c-api/method.rst:47
6478
msgid "Method Objects"
65-
msgstr ""
79+
msgstr "Objetos método"
6680

6781
#: ../Doc/c-api/method.rst:51
6882
msgid ""
6983
"Methods are bound function objects. Methods are always bound to an instance "
7084
"of a user-defined class. Unbound methods (methods bound to a class object) "
7185
"are no longer available."
7286
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."
7391

7492
#: ../Doc/c-api/method.rst:60
7593
msgid ""
7694
"This instance of :c:type:`PyTypeObject` represents the Python method type. "
7795
"This is exposed to Python programs as ``types.MethodType``."
7896
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``."
79100

80101
#: ../Doc/c-api/method.rst:66
81102
msgid ""
82103
"Return true if *o* is a method object (has type :c:data:`PyMethod_Type`). "
83104
"The parameter must not be ``NULL``."
84105
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``."
85108

86109
#: ../Doc/c-api/method.rst:72
87110
msgid ""
88111
"Return a new method object, with *func* being any callable object and *self* "
89112
"the instance the method should be bound. *func* is the function that will be "
90113
"called when the method is called. *self* must not be ``NULL``."
91114
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``."
92119

93120
#: ../Doc/c-api/method.rst:79
94121
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*."
96123

97124
#: ../Doc/c-api/method.rst:84
98125
msgid ""
99126
"Macro version of :c:func:`PyMethod_Function` which avoids error checking."
100127
msgstr ""
128+
"Versión macro de :c:func:`PyMethod_Function` que evita la comprobación de "
129+
"errores."
101130

102131
#: ../Doc/c-api/method.rst:89
103132
msgid "Return the instance associated with the method *meth*."
104-
msgstr ""
133+
msgstr "Retorna la instancia asociada con el método *meth*."
105134

106135
#: ../Doc/c-api/method.rst:94
107136
msgid "Macro version of :c:func:`PyMethod_Self` which avoids error checking."
108137
msgstr ""
138+
"Versión macro de :c:func:`PyMethod_Self` que evita la comprobación de "
139+
"errores."
109140

110141
#: ../Doc/c-api/method.rst:99
111142
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

Comments
 (0)