From 8ce2a20eae78acf815cf0458dcedabb4a19388ac Mon Sep 17 00:00:00 2001 From: josephLSalgado <49181840+josephLSalgado@users.noreply.github.com> Date: Thu, 22 Oct 2020 03:21:30 -0500 Subject: [PATCH 1/3] Traducido archivo distutils/commandref.po --- distutils/commandref.po | 60 ++++++++++++++++++++++++++++------------- 1 file changed, 41 insertions(+), 19 deletions(-) diff --git a/distutils/commandref.po b/distutils/commandref.po index 051f6629d7..b82068ff0f 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -6,19 +6,20 @@ # Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to # get the list of volunteers # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2020-05-05 12:54+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2020-10-22 02:33-0500\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 2.8.0\n" +"Last-Translator: José Luis Salgado Banda\n" +"Language: es\n" +"X-Generator: Poedit 2.4.1\n" #: ../Doc/distutils/commandref.rst:5 msgid "Command Reference" @@ -56,98 +57,112 @@ msgstr ":command:`install_data`" #: ../Doc/distutils/commandref.rst:39 msgid "This command installs all data files provided with the distribution." msgstr "" +"Este comando instala todos los archivos de datos proporcionados con la " +"distribución." #: ../Doc/distutils/commandref.rst:45 msgid ":command:`install_scripts`" -msgstr "" +msgstr ":command:`install_scripts`" #: ../Doc/distutils/commandref.rst:47 msgid "This command installs all (Python) scripts in the distribution." -msgstr "" +msgstr "Este comando instala todos los scripts (Python) en la distribución." #: ../Doc/distutils/commandref.rst:56 msgid "Creating a source distribution: the :command:`sdist` command" -msgstr "" +msgstr "Creando una distribución de origen: el comando :command:`sdist`" #: ../Doc/distutils/commandref.rst:60 msgid "The manifest template commands are:" -msgstr "" +msgstr "Los comandos de la plantilla manifest son:" #: ../Doc/distutils/commandref.rst:63 msgid "Command" -msgstr "" +msgstr "Comando" #: ../Doc/distutils/commandref.rst:63 msgid "Description" -msgstr "" +msgstr "Descripción" #: ../Doc/distutils/commandref.rst:65 msgid ":command:`include pat1 pat2 ...`" -msgstr "" +msgstr ":command:`include pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:65 msgid "include all files matching any of the listed patterns" msgstr "" +"incluye todos los archivos que coincidan con cualquiera de los patrones " +"enumerados" #: ../Doc/distutils/commandref.rst:68 msgid ":command:`exclude pat1 pat2 ...`" -msgstr "" +msgstr ":command:`exclude pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:68 msgid "exclude all files matching any of the listed patterns" msgstr "" +"excluye todos los archivos que coincidan con cualquiera de los patrones " +"enumerados" #: ../Doc/distutils/commandref.rst:71 msgid ":command:`recursive-include dir pat1 pat2 ...`" -msgstr "" +msgstr ":command:`recursive-include dir pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:71 msgid "include all files under *dir* matching any of the listed patterns" msgstr "" +"incluye todos los archivos *dir* que coincidan con cualquiera de los " +"patrones enumerados" #: ../Doc/distutils/commandref.rst:74 msgid ":command:`recursive-exclude dir pat1 pat2 ...`" -msgstr "" +msgstr ":command:`recursive-exclude dir pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:74 msgid "exclude all files under *dir* matching any of the listed patterns" msgstr "" +"excluye todos los archivos *dir* que coincidan con cualquiera de los " +"patrones enumerados" #: ../Doc/distutils/commandref.rst:77 msgid ":command:`global-include pat1 pat2 ...`" -msgstr "" +msgstr ":command:`global-include pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:77 msgid "" "include all files anywhere in the source tree matching --- & any of the " "listed patterns" msgstr "" +"incluye todos los archivos de cualquier lugar en el árbol fuente que " +"coincidan --- y cualquiera de los patrones enumerados" #: ../Doc/distutils/commandref.rst:80 msgid ":command:`global-exclude pat1 pat2 ...`" -msgstr "" +msgstr ":command:`global-exclude pat1 pat2 ...`" #: ../Doc/distutils/commandref.rst:80 msgid "" "exclude all files anywhere in the source tree matching --- & any of the " "listed patterns" msgstr "" +"excluye todos los archivos de cualquier lugar en el árbol fuente que " +"coincidan --- y cualquiera de los patrones enumerados" #: ../Doc/distutils/commandref.rst:83 msgid ":command:`prune dir`" -msgstr "" +msgstr ":command:`prune dir`" #: ../Doc/distutils/commandref.rst:83 msgid "exclude all files under *dir*" -msgstr "" +msgstr "excluye todos los archivos *dir*" #: ../Doc/distutils/commandref.rst:85 msgid ":command:`graft dir`" -msgstr "" +msgstr ":command:`graft dir`" #: ../Doc/distutils/commandref.rst:85 msgid "include all files under *dir*" -msgstr "" +msgstr "incluye todos los archivos *dir*" #: ../Doc/distutils/commandref.rst:88 msgid "" @@ -158,3 +173,10 @@ msgid "" "filename character\" is platform-specific: on Unix it is anything except " "slash; on Windows anything except backslash or colon." msgstr "" +"Los patrones aquí son patrones \"glob\" de estilo Unix: ``*`` coincide con " +"cualquier secuencia de caracteres de nombre de archivo habitual, ``?`` " +"coincide con cualquier caracter de nombre de archivo habitual, y ``[rango]`` " +"coincide con cualquiera de los caracteres en *rango* (p. ej., ``a-z``, ``a-" +"zA-Z``, ``a-f0-9_.``). La definición de \"caracter de nombre de archivo " +"habitual\" es específica de la plataforma: en Unix es cualquier cosa excepto " +"barra; en Windows cualquier cosa excepto barra invertida o dos puntos." From b2280c2d69ab7b5d4808ce06799255a7e0de0caf Mon Sep 17 00:00:00 2001 From: josephLSalgado <49181840+josephLSalgado@users.noreply.github.com> Date: Thu, 22 Oct 2020 03:45:58 -0500 Subject: [PATCH 2/3] Agregado diccionario commandref --- dictionaries/commandref.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 dictionaries/commandref.txt diff --git a/dictionaries/commandref.txt b/dictionaries/commandref.txt new file mode 100644 index 0000000000..ec3cf8876a --- /dev/null +++ b/dictionaries/commandref.txt @@ -0,0 +1 @@ +manifest \ No newline at end of file From 92a37efe04760404716c9f5fd801f050ffb6217b Mon Sep 17 00:00:00 2001 From: josephLSalgado <49181840+josephLSalgado@users.noreply.github.com> Date: Sat, 24 Oct 2020 19:12:43 -0500 Subject: [PATCH 3/3] Traducido archivo distutils/commandref --- distutils/commandref.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/distutils/commandref.po b/distutils/commandref.po index b82068ff0f..f98eb63151 100644 --- a/distutils/commandref.po +++ b/distutils/commandref.po @@ -175,8 +175,8 @@ msgid "" msgstr "" "Los patrones aquí son patrones \"glob\" de estilo Unix: ``*`` coincide con " "cualquier secuencia de caracteres de nombre de archivo habitual, ``?`` " -"coincide con cualquier caracter de nombre de archivo habitual, y ``[rango]`` " -"coincide con cualquiera de los caracteres en *rango* (p. ej., ``a-z``, ``a-" +"coincide con cualquier caracter de nombre de archivo habitual, y ``[range]`` " +"coincide con cualquiera de los caracteres en *range* (p. ej., ``a-z``, ``a-" "zA-Z``, ``a-f0-9_.``). La definición de \"caracter de nombre de archivo " "habitual\" es específica de la plataforma: en Unix es cualquier cosa excepto " "barra; en Windows cualquier cosa excepto barra invertida o dos puntos."