1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# This file is distributed under the same license as the Python package.
3
- # Maintained by the python-doc-es workteam.
3
+ # Maintained by the python-doc-es workteam.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"POT-Creation-Date : 2019-05-06 11:59-0400\n "
13
- "PO-Revision-Date : YEAR-MO-DA HO:MI+ZONE\n "
14
- "Last-Translator : FULL NAME <EMAIL@ADDRESS>\n "
12
+ "PO-Revision-Date : 2020-10-09 14:57-0400\n "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"Content-Transfer-Encoding : 8bit\n "
17
+ "Plural-Forms : nplurals=2; plural=(n != 1);\n "
18
+ "Last-Translator : \n "
19
+ "Language : es\n "
20
+ "X-Generator : Poedit 2.3.1\n "
19
21
20
22
#: ../Doc/library/builtins.rst:2
21
23
msgid ":mod:`builtins` --- Built-in objects"
22
- msgstr ""
24
+ msgstr ":mod:`builtins` --- Objetos incorporados "
23
25
24
26
#: ../Doc/library/builtins.rst:9
25
27
msgid ""
@@ -28,6 +30,10 @@ msgid ""
28
30
"func:`open`. See :ref:`built-in-funcs` and :ref:`built-in-consts` for "
29
31
"documentation."
30
32
msgstr ""
33
+ "Este módulo proporciona acceso directo a todos los identificadores "
34
+ "'incorporados' de Python. Por ejemplo, ``builtins.open`` es el nombre "
35
+ "completo de la función incorporada :func:`open`. Vea :ref:`built-in-funcs` "
36
+ "y :ref:`built-in-consts` para documentación."
31
37
32
38
#: ../Doc/library/builtins.rst:15
33
39
msgid ""
@@ -37,6 +43,12 @@ msgid ""
37
43
"example, in a module that wants to implement an :func:`open` function that "
38
44
"wraps the built-in :func:`open`, this module can be used directly::"
39
45
msgstr ""
46
+ "Este módulo normalmente no es accedido explícitamente por la mayoría de las "
47
+ "aplicaciones, pero puede ser útil en módulos que provean objetos con el "
48
+ "mismo nombre que un valor incorporado, pero que sea necesario también el "
49
+ "incorporado con ese nombre. Por ejemplo, en un módulo que quiera implementar "
50
+ "una función :func:`open` que envuelva la integrada :func:`open`, este módulo "
51
+ "puede se usado directamente::"
40
52
41
53
#: ../Doc/library/builtins.rst:38
42
54
msgid ""
@@ -46,3 +58,9 @@ msgid ""
46
58
"__dict__` attribute. Since this is an implementation detail, it may not be "
47
59
"used by alternate implementations of Python."
48
60
msgstr ""
61
+ "Como un detalle de implementación, la mayoría de los módulos tienen el "
62
+ "nombre ``__builtins__`` disponible como parte de sus globales. El valor de "
63
+ "``__builtins__`` es normalmente o este módulo o el valor del atributo :attr:"
64
+ "`~object.__dict__` de este módulo. Como este es un detalle de "
65
+ "implementación, puede que no sea usado por implementaciones alternativas de "
66
+ "Python."
0 commit comments