Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 79f1187

Browse files
authored
completa la traducción de library types (#1727)
Co-authored-by: Hristo Roque <>
1 parent 2c6838d commit 79f1187

File tree

1 file changed

+27
-12
lines changed

1 file changed

+27
-12
lines changed

library/types.po

Lines changed: 27 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
14-
"PO-Revision-Date: 2021-08-22 19:13-0500\n"
15-
"Last-Translator: \n"
14+
"PO-Revision-Date: 2021-12-14 07:45-0500\n"
15+
"Last-Translator: Adolfo Hristo David Roque Gámez <[email protected]>\n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.9.1\n"
23+
"X-Generator: Poedit 3.0\n"
2324

2425
#: ../Doc/library/types.rst:2
2526
msgid ":mod:`types` --- Dynamic type creation and names for built-in types"
@@ -77,7 +78,6 @@ msgstr ""
7778
"los argumentos por palabra clave (tal como ``metaclass``)."
7879

7980
#: ../Doc/library/types.rst:33
80-
#, fuzzy
8181
msgid ""
8282
"The *exec_body* argument is a callback that is used to populate the freshly "
8383
"created class namespace. It should accept the class namespace as its sole "
@@ -87,9 +87,9 @@ msgid ""
8787
msgstr ""
8888
"El argumento *exec_body* es una retrollamada que se usa para rellenar el "
8989
"espacio de nombres de clase recién creado. Debe aceptar el espacio de nombre "
90-
"de clase como su único argumento y actualizar el espacio de nombre "
90+
"de clase como su único argumento y actualizar el espacio de nombres "
9191
"directamente con el contenido de la clase. Si no se proporciona ninguna "
92-
"retrollamada, tiene el mismo efecto que pasar ``lambda ns: ns``."
92+
"retrollamada, tiene el mismo efecto que pasar ``lambda ns: None``."
9393

9494
#: ../Doc/library/types.rst:43
9595
msgid "Calculates the appropriate metaclass and creates the class namespace."
@@ -212,7 +212,7 @@ msgstr "Los nombres estándar son definidos para los siguientes tipos:"
212212

213213
#: ../Doc/library/types.rst:108
214214
msgid "The type of :data:`None`."
215-
msgstr ""
215+
msgstr "El tipo de :data:`None`."
216216

217217
#: ../Doc/library/types.rst:116
218218
msgid ""
@@ -335,7 +335,7 @@ msgstr ""
335335

336336
#: ../Doc/library/types.rst:204
337337
msgid "The type of :data:`NotImplemented`."
338-
msgstr ""
338+
msgstr "El tipo de :data:`NotImplemented`."
339339

340340
#: ../Doc/library/types.rst:211
341341
msgid ""
@@ -353,7 +353,6 @@ msgstr ""
353353
"como ``dict.__dict__['fromkeys']``."
354354

355355
#: ../Doc/library/types.rst:226
356-
#, fuzzy
357356
msgid ""
358357
"The type of :term:`modules <module>`. The constructor takes the name of the "
359358
"module to be created and optionally its :term:`docstring`."
@@ -383,6 +382,8 @@ msgid ""
383382
"This attribute is to match :attr:`importlib.machinery.ModuleSpec.loader` as "
384383
"stored in the attr:`__spec__` object."
385384
msgstr ""
385+
"Este atributo va a coincidir con :attr:`importlib.machinery.ModuleSpec."
386+
"loader` como se almacena en el objeto attr:`__spec__`."
386387

387388
#: ../Doc/library/types.rst:245
388389
msgid ""
@@ -391,6 +392,10 @@ msgid ""
391392
"`__spec__` attribute instead or use ``getattr(module, \"__loader__\", "
392393
"None)`` if you explicitly need to use this attribute."
393394
msgstr ""
395+
"Una futura versión de Python puede dejar de establecer este atributo por "
396+
"defecto. Para cuidarse de este cambio potencial, lea preferiblemente del "
397+
"atributo :attr:`__spec__` en su lugar o use ``getattr(module, \"__loader__"
398+
"\", None)`` si explícitamente necesita usar este atributo."
394399

395400
#: ../Doc/library/types.rst:251 ../Doc/library/types.rst:276
396401
msgid "Defaults to ``None``. Previously the attribute was optional."
@@ -402,6 +407,8 @@ msgid ""
402407
"The name of the module. Expected to match :attr:`importlib.machinery."
403408
"ModuleSpec.name`."
404409
msgstr ""
410+
"El nombre del módulo. Se espera que coincida con :attr:`importlib.machinery."
411+
"ModuleSpec.name`."
405412

406413
#: ../Doc/library/types.rst:261
407414
msgid ""
@@ -421,6 +428,8 @@ msgid ""
421428
"This attribute is to match :attr:`importlib.machinery.ModuleSpec.parent` as "
422429
"stored in the attr:`__spec__` object."
423430
msgstr ""
431+
"Este atributo va a coincidir con :attr:`importlib.machinery.ModuleSpec."
432+
"parent` como se guarda en el objeto attr:`__spec__`."
424433

425434
#: ../Doc/library/types.rst:270
426435
msgid ""
@@ -429,16 +438,22 @@ msgid ""
429438
"`__spec__` attribute instead or use ``getattr(module, \"__package__\", "
430439
"None)`` if you explicitly need to use this attribute."
431440
msgstr ""
441+
"Una futura versión de Python puede dejar de establecer este atributo por "
442+
"defecto. Para cuidarse de este cambio potencial, lea preferiblemente del "
443+
"atributo :attr:`__spec__` en su lugar o use ``getattr(module, \"__package__"
444+
"\", None)`` si explícitamente necesita usar este atributo."
432445

433446
#: ../Doc/library/types.rst:281
434447
msgid ""
435448
"A record of the module's import-system-related state. Expected to be an "
436449
"instance of :class:`importlib.machinery.ModuleSpec`."
437450
msgstr ""
451+
"Un registro del estado relacionado con el sistema de importación del módulo. "
452+
"Se espera que sea una instancia de :class:`importlib.machinery.ModuleSpec`."
438453

439454
#: ../Doc/library/types.rst:289
440455
msgid "The type of :data:`Ellipsis`."
441-
msgstr ""
456+
msgstr "El tipo de :data:`Ellipsis`."
442457

443458
#: ../Doc/library/types.rst:295
444459
msgid ""
@@ -460,11 +475,11 @@ msgstr ""
460475

461476
#: ../Doc/library/types.rst:311
462477
msgid "This type can now be subclassed."
463-
msgstr "Este tipo ahora puede tener subclases"
478+
msgstr "Este tipo ahora puede heredarse."
464479

465480
#: ../Doc/library/types.rst:317
466481
msgid "The type of :ref:`union type expressions<types-union>`."
467-
msgstr ""
482+
msgstr "El tipo de :ref:`union type expressions<types-union>`."
468483

469484
#: ../Doc/library/types.rst:323
470485
msgid "The type of traceback objects such as found in ``sys.exc_info()[2]``."

0 commit comments

Comments
 (0)