Skip to content

Commit 94089dd

Browse files
Traducido archivo library/distutils (#1062)
Co-authored-by: fjsevilla <fjsevilla2.0@gmail.com>
1 parent 915e1d5 commit 94089dd

File tree

2 files changed

+38
-9
lines changed

2 files changed

+38
-9
lines changed

dictionaries/library_distutils.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
plugins

library/distutils.po

+37-9
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-11 12:05-0500\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_MX\n"
20+
"X-Generator: Poedit 2.4.1\n"
1921

2022
#: ../Doc/library/distutils.rst:2
2123
msgid ":mod:`distutils` --- Building and installing Python modules"
22-
msgstr ""
24+
msgstr ":mod:`distutils` --- Creación e instalación de módulos Python"
2325

2426
#: ../Doc/library/distutils.rst:12
2527
msgid ""
@@ -29,6 +31,11 @@ msgid ""
2931
"collections of Python packages which include modules coded in both Python "
3032
"and C."
3133
msgstr ""
34+
"El paquete :mod:`distutils` proporciona soporte para crear e instalar "
35+
"módulos adicionales en una instalación de Python. Los nuevos módulos pueden "
36+
"ser 100% Python puro, o pueden ser módulos de extensión escritos en C, o "
37+
"pueden ser colecciones de paquetes de Python que incluyen módulos "
38+
"programados en Python y C."
3239

3340
#: ../Doc/library/distutils.rst:17
3441
msgid ""
@@ -37,32 +44,45 @@ msgid ""
3744
"particular, `setuptools <https://setuptools.readthedocs.io/en/latest/>`__ is "
3845
"an enhanced alternative to :mod:`distutils` that provides:"
3946
msgstr ""
47+
"La mayoría de los usuarios de Python *no* querrán utilizar este módulo "
48+
"directamente, sino que usarán las herramientas cross-version mantenidas por "
49+
"la Python Packaging Authority. En particular, `setuptools <https://"
50+
"setuptools.readthedocs.io/en/latest/>`__ es una alternativa mejorada a :mod:"
51+
"`distutils` que proporciona:"
4052

4153
#: ../Doc/library/distutils.rst:23
4254
msgid "support for declaring project dependencies"
43-
msgstr ""
55+
msgstr "soporte para declarar dependencias del proyecto"
4456

4557
#: ../Doc/library/distutils.rst:24
4658
msgid ""
4759
"additional mechanisms for configuring which files to include in source "
4860
"releases (including plugins for integration with version control systems)"
4961
msgstr ""
62+
"mecanismos adicionales para configurar cuáles archivos incluir en "
63+
"lanzamientos de código fuente (incluyendo plugins para la integración con "
64+
"sistemas de control de versiones)"
5065

5166
#: ../Doc/library/distutils.rst:26
5267
msgid ""
5368
"the ability to declare project \"entry points\", which can be used as the "
5469
"basis for application plugin systems"
5570
msgstr ""
71+
"la capacidad de declarar \"puntos de entrada\" del proyecto, los cuales "
72+
"pueden ser utilizados como base para los sistemas de plugins de aplicaciones"
5673

5774
#: ../Doc/library/distutils.rst:28
5875
msgid ""
5976
"the ability to automatically generate Windows command line executables at "
6077
"installation time rather than needing to prebuild them"
6178
msgstr ""
79+
"la capacidad de generar, automáticamente, ejecutables de línea de comandos "
80+
"de Windows en el momento de la instalación, en lugar de tener que "
81+
"compilarlos previamente"
6282

6383
#: ../Doc/library/distutils.rst:30
6484
msgid "consistent behaviour across all supported Python versions"
65-
msgstr ""
85+
msgstr "comportamiento consistente en todas las versiones de Python soportadas"
6686

6787
#: ../Doc/library/distutils.rst:32
6888
msgid ""
@@ -71,6 +91,10 @@ msgid ""
7191
"``distutils``. Refer to the `Python Packaging User Guide <https://packaging."
7292
"python.org>`_ for more information."
7393
msgstr ""
94+
"El instalador `pip <https://pip.pypa.io/>`__ recomendado ejecuta todos los "
95+
"scripts ``setup.py`` con ``setuptools``, incluso si el propio script sólo "
96+
"importa ``distutils``. Consulte la `Python Packaging User Guide <https://"
97+
"packaging.python.org>`_ para más información."
7498

7599
#: ../Doc/library/distutils.rst:38
76100
msgid ""
@@ -79,11 +103,15 @@ msgid ""
79103
"system, the legacy :mod:`distutils` based user documentation and API "
80104
"reference remain available:"
81105
msgstr ""
106+
"Para beneficio de los autores de herramientas de empaquetado y los usuarios "
107+
"que buscan una comprensión más profunda de los detalles del sistema actual "
108+
"de empaquetado y distribución, la documentación de usuario heredada basada "
109+
"en :mod:`distutils` y la referencia de la API permanecen disponibles:"
82110

83111
#: ../Doc/library/distutils.rst:43
84112
msgid ":ref:`install-index`"
85-
msgstr ""
113+
msgstr ":ref:`install-index`"
86114

87115
#: ../Doc/library/distutils.rst:44
88116
msgid ":ref:`distutils-index`"
89-
msgstr ""
117+
msgstr ":ref:`distutils-index`"

0 commit comments

Comments
 (0)