Skip to content

Commit be9088b

Browse files
authored
Traducido library/builtins (#1041)
1 parent e9558a2 commit be9088b

File tree

1 file changed

+23
-5
lines changed

1 file changed

+23
-5
lines changed

library/builtins.po

+23-5
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,27 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# 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.
44
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
55
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
66
#
7-
#, fuzzy
87
msgid ""
98
msgstr ""
109
"Project-Id-Version: Python 3.8\n"
1110
"Report-Msgid-Bugs-To: \n"
1211
"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"
1513
"Language-Team: python-doc-es\n"
1614
"MIME-Version: 1.0\n"
1715
"Content-Type: text/plain; charset=UTF-8\n"
1816
"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"
1921

2022
#: ../Doc/library/builtins.rst:2
2123
msgid ":mod:`builtins` --- Built-in objects"
22-
msgstr ""
24+
msgstr ":mod:`builtins` --- Objetos incorporados"
2325

2426
#: ../Doc/library/builtins.rst:9
2527
msgid ""
@@ -28,6 +30,10 @@ msgid ""
2830
"func:`open`. See :ref:`built-in-funcs` and :ref:`built-in-consts` for "
2931
"documentation."
3032
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."
3137

3238
#: ../Doc/library/builtins.rst:15
3339
msgid ""
@@ -37,6 +43,12 @@ msgid ""
3743
"example, in a module that wants to implement an :func:`open` function that "
3844
"wraps the built-in :func:`open`, this module can be used directly::"
3945
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::"
4052

4153
#: ../Doc/library/builtins.rst:38
4254
msgid ""
@@ -46,3 +58,9 @@ msgid ""
4658
"__dict__` attribute. Since this is an implementation detail, it may not be "
4759
"used by alternate implementations of Python."
4860
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

Comments
 (0)