6
6
# Check https://github.com/PyCampES/python-docs-es/blob/3.7/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.7\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-07 09:39+0200\n "
17
15
"Language-Team :python-doc-es (https://mail.python.org/mailman3/lists/docs-es. "
18
16
"python.org)\n "
19
17
"MIME-Version :1.0\n "
20
- "Content-Type :text/plain; charset=utf -8\n "
18
+ "Content-Type :text/plain; charset=UTF -8\n "
21
19
"Content-Transfer-Encoding :8bit\n "
22
20
"Generated-By :Babel 2.8.0\n "
21
+ "Plural-Forms :nplurals=2; plural=(n != 1);\n "
22
+ "Last-Translator :\n "
23
+ "Language :es\n "
24
+ "X-Generator :Poedit 2.3\n "
23
25
24
26
#: ../Doc/c-api/weakref.rst:6
25
27
msgid "Weak Reference Objects"
26
- msgstr ""
28
+ msgstr "Objetos de referencia débil "
27
29
28
30
#: ../Doc/c-api/weakref.rst:8
29
31
msgid ""
@@ -32,18 +34,22 @@ msgid ""
32
34
"is a simple reference object, and the second acts as a proxy for the "
33
35
"original object as much as it can."
34
36
msgstr ""
37
+ "Python soporta *referencias débiles* como objetos de primera clase. Hay dos "
38
+ "tipos de objetos específicos que implementan directamente referencias "
39
+ "débiles. El primero es un objeto con referencia simple, y el segundo actúa "
40
+ "como un proxy del objeto original tanto como pueda."
35
41
36
42
#: ../Doc/c-api/weakref.rst:16
37
43
msgid "Return true if *ob* is either a reference or proxy object."
38
- msgstr ""
44
+ msgstr "Retorna verdad (true) si *ob* es una referencia o un objeto proxy. "
39
45
40
46
#: ../Doc/c-api/weakref.rst:21
41
47
msgid "Return true if *ob* is a reference object."
42
- msgstr ""
48
+ msgstr "Retorna verdad (true) si *ob* es un objeto de referencia. "
43
49
44
50
#: ../Doc/c-api/weakref.rst:26
45
51
msgid "Return true if *ob* is a proxy object."
46
- msgstr ""
52
+ msgstr "Retorna verdad (true) si *ob* es un objeto proxy. "
47
53
48
54
#: ../Doc/c-api/weakref.rst:31
49
55
msgid ""
@@ -56,6 +62,15 @@ msgid ""
56
62
"weakly-referencable object, or if *callback* is not callable, ``None``, or "
57
63
"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
58
64
msgstr ""
65
+ "Retorna un objeto de referencia débil para el objeto *ob*. Esto siempre "
66
+ "retornará una nueva referencia, pero no garantiza la creación de un objeto "
67
+ "nuevo; un objeto de referencia ya existente puede ser retornado. El segundo "
68
+ "parámetro, *callback*, puede ser un objeto invocable que recibe una "
69
+ "notification cuando *ob* es recolectado como basura; debe aceptar un solo "
70
+ "parámetro, el cual será el mismo objeto de referencia débil. *callback* "
71
+ "también puede ser ``None`` o ``NULL``. Si *ob* no es un objeto "
72
+ "referencialmente-débil, o si *callback* no es invocable, ``None``, o "
73
+ "``NULL``, esto retornará ``NULL`` y causará un :exc:`TypeError`."
59
74
60
75
#: ../Doc/c-api/weakref.rst:43
61
76
msgid ""
@@ -68,22 +83,38 @@ msgid ""
68
83
"*ob* is not a weakly-referencable object, or if *callback* is not callable, "
69
84
"``None``, or ``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
70
85
msgstr ""
86
+ "Retorna un objeto proxy de referencia débil para el objeto *ob*. Esto "
87
+ "siempre retornará una nueva referencia, pero no garantiza la creación de un "
88
+ "objeto nuevo; un objeto proxy de referencia ya existente puede ser "
89
+ "retornado. El segundo parámetro, *callback*, puede ser un objeto invocable "
90
+ "que recibe una notificación cuando *ob* es recolectado como basura; debe "
91
+ "aceptar un solo parámetro, el cual será el mismo objeto de referencia débil. "
92
+ "*callback* también puede ser ``None`` o ``NULL``. Si *ob* no es un objeto "
93
+ "referencialmente-débil, o si *callback* no es invocable, ``None``, o "
94
+ "``NULL``, esto retornará ``NULL`` y causará un :exc:`TypeError`."
71
95
72
96
#: ../Doc/c-api/weakref.rst:55
73
97
msgid ""
74
98
"Return the referenced object from a weak reference, *ref*. If the referent "
75
99
"is no longer live, returns :const:`Py_None`."
76
100
msgstr ""
101
+ "Retorna el objeto referencial desde una referencia débil, *ref*. Si el "
102
+ "referente no está vivo, retornará :const:`Py_None`."
77
103
78
104
#: ../Doc/c-api/weakref.rst:60
79
105
msgid ""
80
106
"This function returns a **borrowed reference** to the referenced object. "
81
107
"This means that you should always call :c:func:`Py_INCREF` on the object "
82
108
"except if you know that it cannot be destroyed while you are still using it."
83
109
msgstr ""
110
+ "Esta función retorna una *referencia prestada* al objeto referenciado. Esto "
111
+ "significa que siempre debes llamar :c:func:`Py_INCREF` en el objeto excepto "
112
+ "si sabes que no puede ser destruido mientras lo estés usando."
84
113
85
114
#: ../Doc/c-api/weakref.rst:68
86
115
msgid ""
87
116
"Similar to :c:func:`PyWeakref_GetObject`, but implemented as a macro that "
88
117
"does no error checking."
89
118
msgstr ""
119
+ "Similar a :c:func:`PyWeakref_GetObject`, pero implementado como un macro que "
120
+ "no verifica errores."