From a80373d05d1be60486a73ed0377fbcc9f21eb02a Mon Sep 17 00:00:00 2001 From: Carlos Martel Lamas Date: Wed, 30 Sep 2020 13:37:33 +0100 Subject: [PATCH 1/5] Traducido archivo library/pipes --- library/pipes.po | 54 ++++++++++++++++++++++++++++++++++++------------ 1 file changed, 41 insertions(+), 13 deletions(-) diff --git a/library/pipes.po b/library/pipes.po index 9a6d9d753b..753386f169 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -1,69 +1,77 @@ # Copyright (C) 2001-2020, Python Software Foundation # This file is distributed under the same license as the Python package. -# Maintained by the python-doc-es workteam. +# Maintained by the python-doc-es workteam. # docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/ # 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: 2019-05-06 11:59-0400\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2020-09-30 13:37+0100\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" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Last-Translator: \n" +"Language: es_ES\n" +"X-Generator: Poedit 2.4.1\n" #: ../Doc/library/pipes.rst:2 msgid ":mod:`pipes` --- Interface to shell pipelines" -msgstr "" +msgstr ":mod:`pipes` --- Interfaz para tuberías de shell" #: ../Doc/library/pipes.rst:10 msgid "**Source code:** :source:`Lib/pipes.py`" -msgstr "" +msgstr "**Código fuente:** :source:`Lib/pipes.py`" #: ../Doc/library/pipes.rst:14 msgid "" "The :mod:`pipes` module defines a class to abstract the concept of a " "*pipeline* --- a sequence of converters from one file to another." msgstr "" +"El módulo :mod:'pipes' define una clase para abstraer el concepto de una " +"*tubería* --- una secuencia de conversores de un archivo a otro." #: ../Doc/library/pipes.rst:17 msgid "" "Because the module uses :program:`/bin/sh` command lines, a POSIX or " "compatible shell for :func:`os.system` and :func:`os.popen` is required." msgstr "" +"Debido a que el módulo utiliza líneas de comando :program:'/bin/sh', se " +"requiere una interfaz POSIX o un shell compatible para ejecutar :func:'os." +"system' y :func:'os.popen'." #: ../Doc/library/pipes.rst:20 msgid "The :mod:`pipes` module defines the following class:" -msgstr "" +msgstr "El módulo :mod:'pipes' define la siguiente clase:" #: ../Doc/library/pipes.rst:25 msgid "An abstraction of a pipeline." -msgstr "" +msgstr "Una abstracción de una tubería." #: ../Doc/library/pipes.rst:27 msgid "Example::" -msgstr "" +msgstr "Ejemplo::" #: ../Doc/library/pipes.rst:42 msgid "Template Objects" -msgstr "" +msgstr "Objetos Template" #: ../Doc/library/pipes.rst:44 msgid "Template objects following methods:" -msgstr "" +msgstr "Las instancias Template tienen los siguientes métodos:" #: ../Doc/library/pipes.rst:49 msgid "Restore a pipeline template to its initial state." -msgstr "" +msgstr "Recupera el estado inicial del Template de una tubería." #: ../Doc/library/pipes.rst:54 msgid "Return a new, equivalent, pipeline template." msgstr "" +"Devuelve una nueva y equivalente instancia del Template de una tubería." #: ../Doc/library/pipes.rst:59 msgid "" @@ -71,12 +79,18 @@ msgid "" "debugging is on, commands to be executed are printed, and the shell is given " "``set -x`` command to be more verbose." msgstr "" +"Si *flag* es verdadero, activa la depuración. Si no, la depuración no se " +"activa. Cuando la depuración está activada, los comandos a ejecutar son " +"impresos, y se le añade el comando ``set -x`` a la terminal para ser más " +"verboso." #: ../Doc/library/pipes.rst:66 msgid "" "Append a new action at the end. The *cmd* variable must be a valid bourne " "shell command. The *kind* variable consists of two letters." msgstr "" +"Añade una nueva acción al final. La variable *cmd* tiene que ser un comando " +"válido de Bourne Shell. La variable *kind* está formada por dos letras." #: ../Doc/library/pipes.rst:69 msgid "" @@ -85,6 +99,10 @@ msgid "" "command line) or ``'.'`` (which means the commands reads no input, and hence " "must be first.)" msgstr "" +"La primera letra puede ser tanto ``'-'`` (que significa que el comando lee " +"su entrada de datos estándar), ``'f'`` (que significa que el comando lee un " +"fichero desde línea de comandos) o ``'.'`` (que significa que el comando no " +"lee ninguna entrada de datos, y por tanto tiene que ser el primero.)" #: ../Doc/library/pipes.rst:74 msgid "" @@ -93,19 +111,29 @@ msgid "" "a file on the command line) or ``'.'`` (which means the command does not " "write anything, and hence must be last.)" msgstr "" +"De manera parecida, la segunda letra puede ser tanto ``'-'`` (que significa " +"que el comando escribe a la salida de datos estándar), ``'f'`` (que " +"significa que el comando escribirá a un fichero de la línea de comandos) or " +"``'.'`` (que significa que el comando no escribe nada, por lo que debe ser " +"el primero)" #: ../Doc/library/pipes.rst:82 msgid "" "Add a new action at the beginning. See :meth:`append` for explanations of " "the arguments." msgstr "" +"Añade una nueva acción al principio. Ver :meth:`append` para la explicación " +"de los argumentos." #: ../Doc/library/pipes.rst:88 msgid "" "Return a file-like object, open to *file*, but read from or written to by " "the pipeline. Note that only one of ``'r'``, ``'w'`` may be given." msgstr "" +"Devuelve un objeto similar a un fichero, abierto a *file*, pero leído o " +"escrito por la tubería. Destacar que solo una de ``'r'`` o ``'w'`` puede ser " +"añadida." #: ../Doc/library/pipes.rst:94 msgid "Copy *infile* to *outfile* through the pipe." -msgstr "" +msgstr "Copia *infile* a *outfile* a través de la tubería." From 773e13bdea94c985d64c28a62aaac48db275e365 Mon Sep 17 00:00:00 2001 From: Carlos Martel Lamas Date: Wed, 30 Sep 2020 13:39:39 +0100 Subject: [PATCH 2/5] =?UTF-8?q?Traducido=20archivo=20library/pipes=20(A?= =?UTF-8?q?=C3=91ADIDO=20MI=20NOMBRE=20A=20TRANSLATORS)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- TRANSLATORS | 1 + 1 file changed, 1 insertion(+) diff --git a/TRANSLATORS b/TRANSLATORS index 107c6b17ab..4388948637 100644 --- a/TRANSLATORS +++ b/TRANSLATORS @@ -84,3 +84,4 @@ Alfonso Reyes (@mxarc) Gustavo Adolfo Huarcaya Delgado (@diavolo) Enrique Giménez (@fenriquegimenez) Rishabh Mishra (@rishabhmishra25) +Carlos Martel Lamas (@Letram) \ No newline at end of file From 662d676ab6b3f7619f4565e56db3d8ff22f2c541 Mon Sep 17 00:00:00 2001 From: Carlos Martel Lamas Date: Thu, 1 Oct 2020 08:04:44 +0100 Subject: [PATCH 3/5] =?UTF-8?q?Arreglado=20un=20error=20con=20las=20comill?= =?UTF-8?q?as=20de=20las=20funciones=20en=20la=20traducci=C3=B3n.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/pipes.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/library/pipes.po b/library/pipes.po index 753386f169..7b8ab74349 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-06 11:59-0400\n" -"PO-Revision-Date: 2020-09-30 13:37+0100\n" +"PO-Revision-Date: 2020-10-01 08:02+0100\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -32,7 +32,7 @@ msgid "" "The :mod:`pipes` module defines a class to abstract the concept of a " "*pipeline* --- a sequence of converters from one file to another." msgstr "" -"El módulo :mod:'pipes' define una clase para abstraer el concepto de una " +"El módulo :mod:`pipes` define una clase para abstraer el concepto de una " "*tubería* --- una secuencia de conversores de un archivo a otro." #: ../Doc/library/pipes.rst:17 @@ -40,13 +40,13 @@ msgid "" "Because the module uses :program:`/bin/sh` command lines, a POSIX or " "compatible shell for :func:`os.system` and :func:`os.popen` is required." msgstr "" -"Debido a que el módulo utiliza líneas de comando :program:'/bin/sh', se " -"requiere una interfaz POSIX o un shell compatible para ejecutar :func:'os." -"system' y :func:'os.popen'." +"Debido a que el módulo utiliza líneas de comando :program:`/bin/sh`, se " +"requiere una interfaz POSIX o un shell compatible para ejecutar :func:`os." +"system` y :func:`os.popen`." #: ../Doc/library/pipes.rst:20 msgid "The :mod:`pipes` module defines the following class:" -msgstr "El módulo :mod:'pipes' define la siguiente clase:" +msgstr "El módulo :mod:`pipes` define la siguiente clase:" #: ../Doc/library/pipes.rst:25 msgid "An abstraction of a pipeline." From 2f59edb893d735932bdfe44764626580a481bdef Mon Sep 17 00:00:00 2001 From: Carlos Martel Lamas Date: Thu, 1 Oct 2020 09:12:19 +0100 Subject: [PATCH 4/5] =?UTF-8?q?A=C3=B1adidas=20palabras=20a=20diccionario.?= =?UTF-8?q?=20Corregido=20Shell=20Bourne?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dictionaries/library_pipes.txt | 2 ++ library/pipes.po | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) create mode 100644 dictionaries/library_pipes.txt diff --git a/dictionaries/library_pipes.txt b/dictionaries/library_pipes.txt new file mode 100644 index 0000000000..a78d003d8a --- /dev/null +++ b/dictionaries/library_pipes.txt @@ -0,0 +1,2 @@ +Template +template \ No newline at end of file diff --git a/library/pipes.po b/library/pipes.po index 7b8ab74349..8499a16667 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-06 11:59-0400\n" -"PO-Revision-Date: 2020-10-01 08:02+0100\n" +"PO-Revision-Date: 2020-10-01 09:11+0100\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -90,7 +90,7 @@ msgid "" "shell command. The *kind* variable consists of two letters." msgstr "" "Añade una nueva acción al final. La variable *cmd* tiene que ser un comando " -"válido de Bourne Shell. La variable *kind* está formada por dos letras." +"válido de *Bourne Shell*. La variable *kind* está formada por dos letras." #: ../Doc/library/pipes.rst:69 msgid "" From 40e981c52cf890c6cc854c5f7f362a5de184299c Mon Sep 17 00:00:00 2001 From: Carlos Martel Lamas Date: Fri, 2 Oct 2020 08:55:35 +0100 Subject: [PATCH 5/5] =?UTF-8?q?Correcci=C3=B3n=20de=20sin=C3=B3nimos?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- library/pipes.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/pipes.po b/library/pipes.po index 8499a16667..2d86a47951 100644 --- a/library/pipes.po +++ b/library/pipes.po @@ -9,7 +9,7 @@ msgstr "" "Project-Id-Version: Python 3.8\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2019-05-06 11:59-0400\n" -"PO-Revision-Date: 2020-10-01 09:11+0100\n" +"PO-Revision-Date: 2020-10-02 08:55+0100\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -81,7 +81,7 @@ msgid "" msgstr "" "Si *flag* es verdadero, activa la depuración. Si no, la depuración no se " "activa. Cuando la depuración está activada, los comandos a ejecutar son " -"impresos, y se le añade el comando ``set -x`` a la terminal para ser más " +"impresos, y se le añade el comando ``set -x`` a la shell para ser más " "verboso." #: ../Doc/library/pipes.rst:66 @@ -113,7 +113,7 @@ msgid "" msgstr "" "De manera parecida, la segunda letra puede ser tanto ``'-'`` (que significa " "que el comando escribe a la salida de datos estándar), ``'f'`` (que " -"significa que el comando escribirá a un fichero de la línea de comandos) or " +"significa que el comando escribirá a un fichero de la línea de comandos) o " "``'.'`` (que significa que el comando no escribe nada, por lo que debe ser " "el primero)"