From d743bd4e1a6cb6a7e8aba83f07e396de950d442c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Sun, 11 Oct 2020 13:31:48 -0500 Subject: [PATCH 01/44] Traducido archivo library/winreg --- library/winreg.po | 113 ++++++++++++++++++++++++++++++---------------- 1 file changed, 74 insertions(+), 39 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index d6aa3fd716..c46606dcdf 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -3,22 +3,24 @@ # This file is distributed under the same license as the Python package. # FIRST AUTHOR , YEAR. # -#, fuzzy msgid "" msgstr "" "Project-Id-Version: Python 3.7\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" -"Language-Team: LANGUAGE \n" +"PO-Revision-Date: 2020-10-11 13:31-0500\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: Juan Alegría \n" +"Language-Team: \n" +"Language: es_CO\n" +"X-Generator: Poedit 2.4.1\n" #: ../Doc/library/winreg.rst:2 msgid ":mod:`winreg` --- Windows registry access" -msgstr "" +msgstr ":mod:`winreg` --- Acceso al registro de Windows" #: ../Doc/library/winreg.rst:12 msgid "" @@ -27,38 +29,51 @@ msgid "" "used to ensure that the handles are closed correctly, even if the programmer " "neglects to explicitly close them." msgstr "" +"Estas funciones exponen la API de registro de Windows a Python. En lugar de " +"utilizar un número entero como identificador de registro, se utiliza un :ref:" +"`handle object ` para garantizar que los identificadores se " +"cierren correctamente, incluso si el programador se niega a cerrarlos " +"explícitamente." #: ../Doc/library/winreg.rst:19 msgid "" "Several functions in this module used to raise a :exc:`WindowsError`, which " "is now an alias of :exc:`OSError`." msgstr "" +"Varias funciones de este módulo solían generar un :exc:`WindowsError`, que " +"ahora es un alias de :exc:`OSError`." #: ../Doc/library/winreg.rst:26 msgid "Functions" -msgstr "" +msgstr "Funciones" #: ../Doc/library/winreg.rst:28 msgid "This module offers the following functions:" -msgstr "" +msgstr "Este módulo ofrece las siguientes funciones:" #: ../Doc/library/winreg.rst:33 msgid "" "Closes a previously opened registry key. The *hkey* argument specifies a " "previously opened key." msgstr "" +"Cierra una clave de registro abierta previamente. El argumento *hkey* " +"especifica una clave abierta previamente." #: ../Doc/library/winreg.rst:38 msgid "" "If *hkey* is not closed using this method (or via :meth:`hkey.Close() " "`), it is closed when the *hkey* object is destroyed by Python." msgstr "" +"Si *hkey* no se cierra con este método (o mediante :meth:`hkey.Close() " +"`), se cierra cuando Python destruye el objeto *hkey*." #: ../Doc/library/winreg.rst:45 msgid "" "Establishes a connection to a predefined registry handle on another " "computer, and returns a :ref:`handle object `." msgstr "" +"Establece una conexión con un identificador de registro predefinido en otra " +"computadora y devuelve un :ref:`handle object `." #: ../Doc/library/winreg.rst:48 msgid "" @@ -82,13 +97,15 @@ msgstr "" #: ../Doc/library/winreg.rst:163 ../Doc/library/winreg.rst:190 #: ../Doc/library/winreg.rst:223 ../Doc/library/winreg.rst:306 msgid "See :ref:`above `." -msgstr "" +msgstr "Ver :ref:`above `." #: ../Doc/library/winreg.rst:62 ../Doc/library/winreg.rst:84 msgid "" "Creates or opens the specified key, returning a :ref:`handle object `." msgstr "" +"Crea o abre la clave especificada, retornando un :ref:`handle object `." #: ../Doc/library/winreg.rst:65 ../Doc/library/winreg.rst:87 #: ../Doc/library/winreg.rst:116 ../Doc/library/winreg.rst:141 @@ -103,10 +120,14 @@ msgid "" "*key* is an already open key, or one of the predefined :ref:`HKEY_* " "constants `." msgstr "" +"*key* es una clave ya abierta, o una de las predefinidas :ref:`HKEY_* " +"constants `." #: ../Doc/library/winreg.rst:68 ../Doc/library/winreg.rst:90 msgid "*sub_key* is a string that names the key this method opens or creates." msgstr "" +"*sub_key* es una cadena de caracteres que nombra la clave que este método " +"abre o crea." #: ../Doc/library/winreg.rst:70 ../Doc/library/winreg.rst:98 msgid "" @@ -116,12 +137,14 @@ msgstr "" #: ../Doc/library/winreg.rst:73 ../Doc/library/winreg.rst:101 msgid "If the key already exists, this function opens the existing key." -msgstr "" +msgstr "Si la clave ya existe, esta función abre la clave existente." #: ../Doc/library/winreg.rst:92 ../Doc/library/winreg.rst:148 msgid "" "*reserved* is a reserved integer, and must be zero. The default is zero." msgstr "" +"*reserved* es un número entero reservado y debe ser cero. El valor " +"predeterminado es cero." #: ../Doc/library/winreg.rst:94 msgid "" @@ -132,7 +155,7 @@ msgstr "" #: ../Doc/library/winreg.rst:114 ../Doc/library/winreg.rst:133 msgid "Deletes the specified key." -msgstr "" +msgstr "Elimina la clave especificada." #: ../Doc/library/winreg.rst:119 msgid "" @@ -143,13 +166,15 @@ msgstr "" #: ../Doc/library/winreg.rst:122 ../Doc/library/winreg.rst:154 msgid "*This method can not delete keys with subkeys.*" -msgstr "" +msgstr "*Este método no puede eliminar claves con subclaves.*" #: ../Doc/library/winreg.rst:124 ../Doc/library/winreg.rst:156 msgid "" "If the method succeeds, the entire key, including all of its values, is " "removed. If the method fails, an :exc:`OSError` exception is raised." msgstr "" +"Si el método tiene éxito, se elimina toda la clave, incluidos todos sus " +"valores. Si el método falla, se genera una excepción :exc:`OSError`." #: ../Doc/library/winreg.rst:136 msgid "" @@ -179,7 +204,7 @@ msgstr "" #: ../Doc/library/winreg.rst:169 msgid "Removes a named value from a registry key." -msgstr "" +msgstr "Elimina un valor con nombre de una clave de registro." #: ../Doc/library/winreg.rst:174 msgid "*value* is a string that identifies the value to remove." @@ -218,41 +243,43 @@ msgstr "" #: ../Doc/library/winreg.rst:207 ../Doc/library/winreg.rst:317 msgid "The result is a tuple of 3 items:" -msgstr "" +msgstr "El resultado es una tupla de 3 elementos:" #: ../Doc/library/winreg.rst:210 ../Doc/library/winreg.rst:320 #: ../Doc/library/winreg.rst:364 msgid "Index" -msgstr "" +msgstr "Índice" #: ../Doc/library/winreg.rst:210 ../Doc/library/winreg.rst:320 #: ../Doc/library/winreg.rst:364 msgid "Meaning" -msgstr "" +msgstr "Significado" #: ../Doc/library/winreg.rst:212 ../Doc/library/winreg.rst:322 #: ../Doc/library/winreg.rst:366 msgid "``0``" -msgstr "" +msgstr "``0``" #: ../Doc/library/winreg.rst:212 msgid "A string that identifies the value name" -msgstr "" +msgstr "Una cadena de caracteres que identifica el nombre del valor." #: ../Doc/library/winreg.rst:214 ../Doc/library/winreg.rst:325 #: ../Doc/library/winreg.rst:368 msgid "``1``" -msgstr "" +msgstr "``1``" #: ../Doc/library/winreg.rst:214 msgid "" "An object that holds the value data, and whose type depends on the " "underlying registry type" msgstr "" +"Un objeto que contiene los datos del valor y cuyo tipo depende del tipo de " +"registro subyacente" #: ../Doc/library/winreg.rst:218 ../Doc/library/winreg.rst:328 msgid "``2``" -msgstr "" +msgstr "``2``" #: ../Doc/library/winreg.rst:218 msgid "" @@ -614,7 +641,7 @@ msgstr "" #: ../Doc/library/winreg.rst:552 msgid "Access Rights" -msgstr "" +msgstr "Access Rights" #: ../Doc/library/winreg.rst:554 msgid "" @@ -648,33 +675,35 @@ msgstr "" #: ../Doc/library/winreg.rst:580 msgid "Required to query the values of a registry key." -msgstr "" +msgstr "Requerido para consultar los valores de una clave de registro." #: ../Doc/library/winreg.rst:584 msgid "Required to create, delete, or set a registry value." -msgstr "" +msgstr "Requerido para crear, eliminar o establecer un valor de registro." #: ../Doc/library/winreg.rst:588 msgid "Required to create a subkey of a registry key." -msgstr "" +msgstr "Necesario para crear una subclave de una clave de registro." #: ../Doc/library/winreg.rst:592 msgid "Required to enumerate the subkeys of a registry key." -msgstr "" +msgstr "Requerido para enumerar las subclaves de una clave de registro." #: ../Doc/library/winreg.rst:596 msgid "" "Required to request change notifications for a registry key or for subkeys " "of a registry key." msgstr "" +"Requerido para solicitar notificaciones de cambio para una clave de registro " +"o para subclaves de una clave de registro." #: ../Doc/library/winreg.rst:601 msgid "Reserved for system use." -msgstr "" +msgstr "Reservado para uso del sistema." #: ../Doc/library/winreg.rst:607 msgid "64-bit Specific" -msgstr "" +msgstr "Específico de 64 bits" #: ../Doc/library/winreg.rst:609 msgid "" @@ -696,7 +725,7 @@ msgstr "" #: ../Doc/library/winreg.rst:626 msgid "Value Types" -msgstr "" +msgstr "Tipos de valor" #: ../Doc/library/winreg.rst:628 msgid "" @@ -706,11 +735,11 @@ msgstr "" #: ../Doc/library/winreg.rst:633 msgid "Binary data in any form." -msgstr "" +msgstr "Datos binarios en cualquier forma." #: ../Doc/library/winreg.rst:637 msgid "32-bit number." -msgstr "" +msgstr "Número de 32 bits." #: ../Doc/library/winreg.rst:641 msgid "" @@ -719,7 +748,7 @@ msgstr "" #: ../Doc/library/winreg.rst:645 msgid "A 32-bit number in big-endian format." -msgstr "" +msgstr "Un número de 32 bits en formato big-endian." #: ../Doc/library/winreg.rst:649 msgid "" @@ -739,36 +768,38 @@ msgstr "" #: ../Doc/library/winreg.rst:663 msgid "No defined value type." -msgstr "" +msgstr "Sin tipo de valor definido." #: ../Doc/library/winreg.rst:667 msgid "A 64-bit number." -msgstr "" +msgstr "Un número de 64 bits." #: ../Doc/library/winreg.rst:673 msgid "" "A 64-bit number in little-endian format. Equivalent to :const:`REG_QWORD`." msgstr "" +"Un número de 64 bits en formato little-endian. Equivalente a :const:" +"`REG_QWORD`." #: ../Doc/library/winreg.rst:679 msgid "A device-driver resource list." -msgstr "" +msgstr "Una lista de recursos de controladores de dispositivo." #: ../Doc/library/winreg.rst:683 msgid "A hardware setting." -msgstr "" +msgstr "Una configuración de hardware." #: ../Doc/library/winreg.rst:687 msgid "A hardware resource list." -msgstr "" +msgstr "Una lista de recursos de hardware." #: ../Doc/library/winreg.rst:691 msgid "A null-terminated string." -msgstr "" +msgstr "Una cadena de caracteres terminada en nulo." #: ../Doc/library/winreg.rst:697 msgid "Registry Handle Objects" -msgstr "" +msgstr "Objetos de control del registro" #: ../Doc/library/winreg.rst:699 msgid "" @@ -780,6 +811,7 @@ msgstr "" #: ../Doc/library/winreg.rst:703 msgid "All registry functions in this module return one of these objects." msgstr "" +"Todas las funciones de registro de este módulo retornan uno de estos objetos." #: ../Doc/library/winreg.rst:705 msgid "" @@ -818,11 +850,11 @@ msgstr "" #: ../Doc/library/winreg.rst:729 msgid "If the handle is already closed, no error is raised." -msgstr "" +msgstr "Si el controlador ya está cerrado, no se genera ningún error." #: ../Doc/library/winreg.rst:734 msgid "Detaches the Windows handle from the handle object." -msgstr "" +msgstr "Separa el identificador de Windows del objeto identificador." #: ../Doc/library/winreg.rst:736 msgid "" @@ -830,6 +862,9 @@ msgid "" "detached. If the handle is already detached or closed, this will return " "zero." msgstr "" +"El resultado es un número entero que contiene el valor del identificador " +"antes de que se separe. Si el controlador ya está separado o cerrado, esto " +"retornará cero." #: ../Doc/library/winreg.rst:740 msgid "" From 12b4f1512b45f85dbe28a4e9f235f076f2e4c177 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Sun, 11 Oct 2020 14:34:40 -0500 Subject: [PATCH 02/44] Traducido archivo library/winreg --- library/winreg.po | 67 +++++++++++++++++++++++++++++++++++++---------- 1 file changed, 53 insertions(+), 14 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index 4466301597..8b0af8d0a2 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -11,18 +11,17 @@ 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-11 13:31-0500\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2020-10-11 14:34-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" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"Last-Translator: Juan Alegría \n" "Language-Team: \n" "Language: es_CO\n" "X-Generator: Poedit 2.4.1\n" "Generated-By: Babel 2.8.0\n" +"Last-Translator: Juan Alegría \n" #: ../Doc/library/winreg.rst:2 msgid ":mod:`winreg` --- Windows registry access" @@ -86,10 +85,12 @@ msgid "" "*computer_name* is the name of the remote computer, of the form ``r\"\\" "\\computername\"``. If ``None``, the local computer is used." msgstr "" +"*computer_name* es el nombre de la computadora remota, de la forma ``r”\\" +"\\computername”``. Si es ``None``, se utiliza la computadora local." #: ../Doc/library/winreg.rst:51 msgid "*key* is the predefined handle to connect to." -msgstr "" +msgstr "*key* es el identificador predefinido al que conectarse." #: ../Doc/library/winreg.rst:53 ../Doc/library/winreg.rst:77 #: ../Doc/library/winreg.rst:109 @@ -97,12 +98,16 @@ msgid "" "The return value is the handle of the opened key. If the function fails, an :" "exc:`OSError` exception is raised." msgstr "" +"El valor de retorno es el identificador de la llave abierta. Si la función " +"falla, se genera una excepción :exc:`OSError`." #: ../Doc/library/winreg.rst:57 msgid "" "Raises an :ref:`auditing event ` ``winreg.ConnectRegistry`` with " "arguments ``computer_name``, ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.ConnectRegistry`` con " +"argumentos ``computer_name``, ``key``." #: ../Doc/library/winreg.rst:58 ../Doc/library/winreg.rst:84 #: ../Doc/library/winreg.rst:118 ../Doc/library/winreg.rst:139 @@ -146,6 +151,9 @@ msgid "" "If *key* is one of the predefined keys, *sub_key* may be ``None``. In that " "case, the handle returned is the same key handle passed in to the function." msgstr "" +"Si *key* es una de las claves predefinidas, *sub_key* puede ser ``None``. En " +"ese caso, el identificador retornado es el mismo identificador de clave que " +"se pasó a la función." #: ../Doc/library/winreg.rst:75 ../Doc/library/winreg.rst:107 msgid "If the key already exists, this function opens the existing key." @@ -156,6 +164,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.CreateKey`` with " "arguments ``key``, ``sub_key``, ``access``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.CreateKey`` con los " +"argumentos ``key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:83 ../Doc/library/winreg.rst:115 #: ../Doc/library/winreg.rst:330 @@ -163,6 +173,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.OpenKey/result`` with " "argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.OpenKey/result`` con el " +"argumento ``key``." #: ../Doc/library/winreg.rst:98 ../Doc/library/winreg.rst:160 msgid "" @@ -276,6 +288,7 @@ msgstr "" msgid "" "*index* is an integer that identifies the index of the value to retrieve." msgstr "" +"*index* es un número entero que identifica el índice del valor a recuperar." #: ../Doc/library/winreg.rst:221 msgid "" @@ -283,6 +296,9 @@ msgid "" "typically called repeatedly, until an :exc:`OSError` exception is raised, " "indicating no more values." msgstr "" +"La función recupera el nombre de una subclave cada vez que se llama. " +"Normalmente se llama repetidamente, hasta que se genera una excepción :exc:" +"`OSError`, lo que indica que no hay más valores." #: ../Doc/library/winreg.rst:225 ../Doc/library/winreg.rst:345 msgid "The result is a tuple of 3 items:" @@ -305,7 +321,7 @@ msgstr "``0``" #: ../Doc/library/winreg.rst:230 msgid "A string that identifies the value name" -msgstr "Una cadena de caracteres que identifica el nombre del valor." +msgstr "Una cadena de caracteres que identifica el nombre del valor" #: ../Doc/library/winreg.rst:232 ../Doc/library/winreg.rst:353 #: ../Doc/library/winreg.rst:400 @@ -329,6 +345,8 @@ msgid "" "An integer that identifies the type of the value data (see table in docs " "for :meth:`SetValueEx`)" msgstr "" +"Un número entero que identifica el tipo de datos de valor (consulte la tabla " +"en los documentos para :meth:`SetValueEx`)" #: ../Doc/library/winreg.rst:242 msgid "" @@ -350,7 +368,7 @@ msgstr "" #: ../Doc/library/winreg.rst:263 msgid "Writes all the attributes of a key to the registry." -msgstr "" +msgstr "Escribe todos los atributos de una clave en el registro." #: ../Doc/library/winreg.rst:268 msgid "" @@ -368,22 +386,29 @@ msgid "" "If you don't know whether a :func:`FlushKey` call is required, it probably " "isn't." msgstr "" +"Si no sabe si se requiere una llamada :func:`FlushKey`, probablemente no lo " +"sea." #: ../Doc/library/winreg.rst:283 msgid "" "Creates a subkey under the specified key and stores registration information " "from a specified file into that subkey." msgstr "" +"Crea una subclave bajo la clave especificada y almacena la información de " +"registro de un archivo especificado en esa subclave." #: ../Doc/library/winreg.rst:286 msgid "" "*key* is a handle returned by :func:`ConnectRegistry` or one of the " "constants :const:`HKEY_USERS` or :const:`HKEY_LOCAL_MACHINE`." msgstr "" +"*key* es un identificador devuelto por :func:`ConnectRegistry` o una de las " +"constantes :const:`HKEY_USERS` o :const:`HKEY_LOCAL_MACHINE`." #: ../Doc/library/winreg.rst:289 msgid "*sub_key* is a string that identifies the subkey to load." msgstr "" +"*sub_key* es una cadena de caracteres que identifica la subclave a cargar." #: ../Doc/library/winreg.rst:291 msgid "" @@ -420,6 +445,7 @@ msgstr "" #: ../Doc/library/winreg.rst:315 msgid "*sub_key* is a string that identifies the sub_key to open." msgstr "" +"*sub_key* es una cadena de caracteres que identifica la sub_key para abrir." #: ../Doc/library/winreg.rst:317 msgid "" @@ -435,11 +461,11 @@ msgstr "" #: ../Doc/library/winreg.rst:323 msgid "The result is a new handle to the specified key." -msgstr "" +msgstr "El resultado es un nuevo identificador para la clave especificada." #: ../Doc/library/winreg.rst:325 msgid "If the function fails, :exc:`OSError` is raised." -msgstr "" +msgstr "Si la función falla, se genera :exc:`OSError`." #: ../Doc/library/winreg.rst:328 msgid "" @@ -449,25 +475,28 @@ msgstr "" #: ../Doc/library/winreg.rst:331 msgid "Allow the use of named arguments." -msgstr "" +msgstr "Permite el uso de argumentos con nombre." #: ../Doc/library/winreg.rst:340 msgid "Returns information about a key, as a tuple." -msgstr "" +msgstr "Retorna información sobre una clave, como una tupla." #: ../Doc/library/winreg.rst:350 msgid "An integer giving the number of sub keys this key has." msgstr "" +"Un número entero que indica el número de subclaves que tiene esta clave." #: ../Doc/library/winreg.rst:353 msgid "An integer giving the number of values this key has." -msgstr "" +msgstr "Un número entero que da el número de valores que tiene esta clave." #: ../Doc/library/winreg.rst:356 msgid "" "An integer giving when the key was last modified (if available) as 100's of " "nanoseconds since Jan 1, 1601." msgstr "" +"Un número entero que indica la última vez que se modificó la clave (si está " +"disponible) como cientos de nanosegundos desde el 1 de enero de 1601." #: ../Doc/library/winreg.rst:361 msgid "" @@ -746,7 +775,7 @@ msgstr "" #: ../Doc/library/winreg.rst:592 msgid "This key is not used in versions of Windows after 98." -msgstr "" +msgstr "Esta clave no se usa en versiones de Windows posteriores a la 98." #: ../Doc/library/winreg.rst:598 msgid "Access Rights" @@ -825,12 +854,16 @@ msgid "" "Indicates that an application on 64-bit Windows should operate on the 64-bit " "registry view." msgstr "" +"Indica que una aplicación en Windows de 64 bits debería funcionar en la " +"vista de registro de 64 bits." #: ../Doc/library/winreg.rst:665 msgid "" "Indicates that an application on 64-bit Windows should operate on the 32-bit " "registry view." msgstr "" +"Indica que una aplicación en Windows de 64 bits debería funcionar en la " +"vista de registro de 32 bits." #: ../Doc/library/winreg.rst:672 msgid "Value Types" @@ -841,6 +874,8 @@ msgid "" "For more information, see `Registry Value Types `__." msgstr "" +"Para más información, ver `Registry Value Types `__." #: ../Doc/library/winreg.rst:679 msgid "Binary data in any form." @@ -864,10 +899,12 @@ msgid "" "Null-terminated string containing references to environment variables (``" "%PATH%``)." msgstr "" +"Cadena de caracteres terminada en nulo que contiene referencias a variables " +"de entorno (``%PATH%``)." #: ../Doc/library/winreg.rst:700 msgid "A Unicode symbolic link." -msgstr "" +msgstr "Un enlace simbólico Unicode." #: ../Doc/library/winreg.rst:704 msgid "" @@ -955,7 +992,7 @@ msgstr "" #: ../Doc/library/winreg.rst:773 msgid "Closes the underlying Windows handle." -msgstr "" +msgstr "Cierra el identificador de Windows subyacente." #: ../Doc/library/winreg.rst:775 msgid "If the handle is already closed, no error is raised." @@ -999,3 +1036,5 @@ msgstr "" msgid "" "will automatically close *key* when control leaves the :keyword:`with` block." msgstr "" +"cerrará automáticamente *key* cuando el control abandone el bloque :keyword:" +"`with`." From 0b4f0807cf4ed540fd22fc08c2df9f982b063f96 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Sun, 11 Oct 2020 15:07:30 -0500 Subject: [PATCH 03/44] Traducido archivo library/winreg --- library/winreg.po | 128 +++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 114 insertions(+), 14 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index 8b0af8d0a2..77668b004a 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -11,7 +11,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-11 14:34-0500\n" +"PO-Revision-Date: 2020-10-11 15:01-0500\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -189,6 +189,10 @@ msgid "" "desired security access for the key. Default is :const:`KEY_WRITE`. See :" "ref:`Access Rights ` for other allowed values." msgstr "" +"*access* es un número entero que especifica una máscara de acceso que " +"describe el acceso de seguridad deseado para la clave. El valor " +"predeterminado es :const:`KEY_WRITE`. Ver :ref:`Access Rights ` para otros valores permitidos." #: ../Doc/library/winreg.rst:124 ../Doc/library/winreg.rst:145 msgid "Deletes the specified key." @@ -200,6 +204,9 @@ msgid "" "*key* parameter. This value must not be ``None``, and the key may not have " "subkeys." msgstr "" +"*sub_key* es una cadena de caracteres que debe ser una subclave de la clave " +"identificada por el parámetro *key*. Este valor no debe ser ``None``, y es " +"posible que la clave no tenga subclaves." #: ../Doc/library/winreg.rst:132 ../Doc/library/winreg.rst:166 msgid "*This method can not delete keys with subkeys.*" @@ -226,6 +233,10 @@ msgid "" "the `RegDeleteKeyEx documentation `__." msgstr "" +"La función :func:`DeleteKeyEx` se implementa con la función RegDeleteKeyEx " +"de la API de Windows, que es específica de las versiones de Windows de 64 " +"bits. Consulte la `RegDeleteKeyEx documentation `__." #: ../Doc/library/winreg.rst:156 msgid "" @@ -233,6 +244,9 @@ msgid "" "*key* parameter. This value must not be ``None``, and the key may not have " "subkeys." msgstr "" +"*sub_key* es una cadena de caracteres que debe ser una subclave de la clave " +"identificada por el parámetro *key*. Este valor no debe ser ``None``, y es " +"posible que la clave no tenga subclaves." #: ../Doc/library/winreg.rst:162 msgid "" @@ -244,6 +258,7 @@ msgstr "" #: ../Doc/library/winreg.rst:171 msgid "On unsupported Windows versions, :exc:`NotImplementedError` is raised." msgstr "" +"En versiones de Windows no compatibles, se genera :exc:`NotImplementedError`." #: ../Doc/library/winreg.rst:183 msgid "Removes a named value from a registry key." @@ -251,7 +266,7 @@ msgstr "Elimina un valor con nombre de una clave de registro." #: ../Doc/library/winreg.rst:188 msgid "*value* is a string that identifies the value to remove." -msgstr "" +msgstr "*value* es una cadena que identifica el valor a eliminar." #: ../Doc/library/winreg.rst:190 msgid "" @@ -262,10 +277,13 @@ msgstr "" #: ../Doc/library/winreg.rst:195 msgid "Enumerates subkeys of an open registry key, returning a string." msgstr "" +"Enumera las subclaves de una clave de registro abierta y devuelve una cadena " +"de caracteres." #: ../Doc/library/winreg.rst:200 msgid "*index* is an integer that identifies the index of the key to retrieve." msgstr "" +"*index* es un número entero que identifica el índice de la clave a recuperar." #: ../Doc/library/winreg.rst:202 msgid "" @@ -273,16 +291,22 @@ msgid "" "typically called repeatedly until an :exc:`OSError` exception is raised, " "indicating, no more values are available." msgstr "" +"La función recupera el nombre de una subclave cada vez que se llama. " +"Normalmente se llama repetidamente hasta que se genera una excepción :exc:" +"`OSError`, lo que indica que no hay más valores disponibles." #: ../Doc/library/winreg.rst:207 msgid "" "Raises an :ref:`auditing event ` ``winreg.EnumKey`` with arguments " "``key``, ``index``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.EnumKey`` con argumentos " +"``key``, ``index``." #: ../Doc/library/winreg.rst:214 msgid "Enumerates values of an open registry key, returning a tuple." msgstr "" +"Enumera los valores de una clave de registro abierta y devuelve una tupla." #: ../Doc/library/winreg.rst:219 msgid "" @@ -353,18 +377,24 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.EnumValue`` with " "arguments ``key``, ``index``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.EnumValue`` con " +"argumentos ``key``, ``index``." #: ../Doc/library/winreg.rst:252 msgid "" "Expands environment variable placeholders ``%NAME%`` in strings like :const:" "`REG_EXPAND_SZ`::" msgstr "" +"Expande los marcadores de posición de la variable de entorno ``%NAME%`` en " +"cadenas como :const:`REG_EXPAND_SZ`::" #: ../Doc/library/winreg.rst:258 msgid "" "Raises an :ref:`auditing event ` ``winreg." "ExpandEnvironmentStrings`` with argument ``str``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg." +"ExpandEnvironmentStrings`` con el argumento ``str``." #: ../Doc/library/winreg.rst:263 msgid "Writes all the attributes of a key to the registry." @@ -380,6 +410,13 @@ msgid "" "`FlushKey` if it requires absolute certainty that registry changes are on " "disk." msgstr "" +"No es necesario llamar a :func:`FlushKey` para cambiar una clave. Los " +"cambios en el registro se descargan en el disco mediante el registro " +"mediante su vaciador diferido. Los cambios en el registro también se vacían " +"en el disco cuando se apaga el sistema. A diferencia de :func:`CloseKey`, el " +"método :func:`FlushKey` devuelve solo cuando todos los datos se han escrito " +"en el registro. Una aplicación solo debe llamar a :func:`FlushKey` si " +"requiere absoluta certeza de que los cambios de registro están en el disco." #: ../Doc/library/winreg.rst:277 msgid "" @@ -416,6 +453,10 @@ msgid "" "must have been created with the :func:`SaveKey` function. Under the file " "allocation table (FAT) file system, the filename may not have an extension." msgstr "" +"*file_name* es el nombre del archivo desde el que cargar los datos de " +"registro. Este archivo debe haber sido creado con la función :func:" +"`SaveKey`. En el sistema de archivos de la tabla de asignación de archivos " +"(FAT), es posible que el nombre del archivo no tenga extensión." #: ../Doc/library/winreg.rst:295 msgid "" @@ -424,6 +465,11 @@ msgid "" "from permissions -- see the `RegLoadKey documentation `__ for more details." msgstr "" +"Una llamada a :func:`LoadKey` falla si el proceso de llamada no tiene el " +"privilegio :const:`SE_RESTORE_PRIVILEGE`. Tenga en cuenta que los " +"privilegios son diferentes de los permisos; consulte la `RegLoadKey " +"documentation `__ para obtener más detalles." #: ../Doc/library/winreg.rst:301 msgid "" @@ -539,24 +585,29 @@ msgstr "" #: ../Doc/library/winreg.rst:391 msgid "*value_name* is a string indicating the value to query." msgstr "" +"*value_name* es una cadena de caracteres que indica el valor a consultar." #: ../Doc/library/winreg.rst:393 msgid "The result is a tuple of 2 items:" -msgstr "" +msgstr "El resultado es una tupla de 2 elementos:" #: ../Doc/library/winreg.rst:398 msgid "The value of the registry item." -msgstr "" +msgstr "El valor del elemento de registro." #: ../Doc/library/winreg.rst:400 msgid "" "An integer giving the registry type for this value (see table in docs for :" "meth:`SetValueEx`)" msgstr "" +"Un número entero que proporciona el tipo de registro para este valor " +"(consulte la tabla en docs para :meth:`SetValueEx`)" #: ../Doc/library/winreg.rst:410 msgid "Saves the specified key, and all its subkeys to the specified file." msgstr "" +"Guarda la clave especificada y todas sus subclaves en el archivo " +"especificado." #: ../Doc/library/winreg.rst:415 msgid "" @@ -578,7 +629,7 @@ msgstr "" #: ../Doc/library/winreg.rst:428 msgid "This function passes ``NULL`` for *security_attributes* to the API." -msgstr "" +msgstr "Esta función pasa ``NULL`` para *security_attributes* a la API." #: ../Doc/library/winreg.rst:430 msgid "" @@ -588,13 +639,15 @@ msgstr "" #: ../Doc/library/winreg.rst:435 msgid "Associates a value with a specified key." -msgstr "" +msgstr "Asocia un valor con una clave especificada." #: ../Doc/library/winreg.rst:440 msgid "" "*sub_key* is a string that names the subkey with which the value is " "associated." msgstr "" +"*sub_key* es una cadena de caracteres que nombra la subclave con la que está " +"asociado el valor." #: ../Doc/library/winreg.rst:442 msgid "" @@ -605,7 +658,7 @@ msgstr "" #: ../Doc/library/winreg.rst:446 ../Doc/library/winreg.rst:476 msgid "*value* is a string that specifies the new value." -msgstr "" +msgstr "*value* es una cadena de caracteres que especifica el nuevo valor." #: ../Doc/library/winreg.rst:448 msgid "" @@ -634,17 +687,19 @@ msgstr "" #: ../Doc/library/winreg.rst:463 msgid "Stores data in the value field of an open registry key." -msgstr "" +msgstr "Almacena datos en el campo de valor de una clave de registro abierta." #: ../Doc/library/winreg.rst:468 msgid "" "*value_name* is a string that names the subkey with which the value is " "associated." msgstr "" +"*value_name* es una cadena de caracteres que nombra la subclave con la que " +"está asociado el valor." #: ../Doc/library/winreg.rst:471 msgid "*reserved* can be anything -- zero is always passed to the API." -msgstr "" +msgstr "*reserved* puede ser cualquier cosa — cero siempre se pasa a la API." #: ../Doc/library/winreg.rst:473 msgid "" @@ -706,11 +761,11 @@ msgstr "" #: ../Doc/library/winreg.rst:526 msgid "Determines the reflection state for the specified key." -msgstr "" +msgstr "Determina el estado de reflexión para la clave especificada." #: ../Doc/library/winreg.rst:531 msgid "Returns ``True`` if reflection is disabled." -msgstr "" +msgstr "Retorna ``True`` si la reflexión está deshabilitada." #: ../Doc/library/winreg.rst:536 msgid "" @@ -720,7 +775,7 @@ msgstr "" #: ../Doc/library/winreg.rst:542 msgid "Constants" -msgstr "" +msgstr "Constantes" #: ../Doc/library/winreg.rst:544 msgid "" @@ -729,7 +784,7 @@ msgstr "" #: ../Doc/library/winreg.rst:549 msgid "HKEY_* Constants" -msgstr "" +msgstr "HKEY_* Constantes" #: ../Doc/library/winreg.rst:553 msgid "" @@ -772,6 +827,8 @@ msgid "" "Contains information about the current hardware profile of the local " "computer system." msgstr "" +"Contiene información sobre el perfil de hardware actual del sistema " +"informático local." #: ../Doc/library/winreg.rst:592 msgid "This key is not used in versions of Windows after 98." @@ -786,6 +843,8 @@ msgid "" "For more information, see `Registry Key Security and Access `__." msgstr "" +"Para más información, ver `Registry Key Security and Access `__." #: ../Doc/library/winreg.rst:605 msgid "" @@ -794,22 +853,30 @@ msgid "" "`KEY_ENUMERATE_SUB_KEYS`, :const:`KEY_NOTIFY`, and :const:`KEY_CREATE_LINK` " "access rights." msgstr "" +"Combina los derechos de acceso STANDARD_RIGHTS_REQUIRED, :const:" +"`KEY_QUERY_VALUE`, :const:`KEY_SET_VALUE`, :const:`KEY_CREATE_SUB_KEY`, :" +"const:`KEY_ENUMERATE_SUB_KEYS`, :const:`KEY_NOTIFY`, y :const:" +"`KEY_CREATE_LINK`." #: ../Doc/library/winreg.rst:612 msgid "" "Combines the STANDARD_RIGHTS_WRITE, :const:`KEY_SET_VALUE`, and :const:" "`KEY_CREATE_SUB_KEY` access rights." msgstr "" +"Combina los derechos de acceso STANDARD_RIGHTS_WRITE, :const:" +"`KEY_SET_VALUE`, y :const:`KEY_CREATE_SUB_KEY`." #: ../Doc/library/winreg.rst:617 msgid "" "Combines the STANDARD_RIGHTS_READ, :const:`KEY_QUERY_VALUE`, :const:" "`KEY_ENUMERATE_SUB_KEYS`, and :const:`KEY_NOTIFY` values." msgstr "" +"Combina los valores STANDARD_RIGHTS_READ, :const:`KEY_QUERY_VALUE`, :const:" +"`KEY_ENUMERATE_SUB_KEYS`, y :const:`KEY_NOTIFY`." #: ../Doc/library/winreg.rst:622 msgid "Equivalent to :const:`KEY_READ`." -msgstr "" +msgstr "Equivalente a :const:`KEY_READ`." #: ../Doc/library/winreg.rst:626 msgid "Required to query the values of a registry key." @@ -848,6 +915,8 @@ msgid "" "For more information, see `Accessing an Alternate Registry View `__." msgstr "" +"Para más información, ver `Accessing an Alternate Registry View `__." #: ../Doc/library/winreg.rst:660 msgid "" @@ -889,6 +958,8 @@ msgstr "Número de 32 bits." msgid "" "A 32-bit number in little-endian format. Equivalent to :const:`REG_DWORD`." msgstr "" +"Un número de 32 bits en formato little-endian. Equivalente a :const:" +"`REG_DWORD`." #: ../Doc/library/winreg.rst:691 msgid "A 32-bit number in big-endian format." @@ -911,6 +982,8 @@ msgid "" "A sequence of null-terminated strings, terminated by two null characters. " "(Python handles this termination automatically.)" msgstr "" +"Una secuencia de cadenas de caracteres terminadas en nulo, terminadas por " +"dos caracteres nulos. (Python maneja esta terminación automáticamente)." #: ../Doc/library/winreg.rst:709 msgid "No defined value type." @@ -953,6 +1026,9 @@ msgid "" "object is destroyed. To guarantee cleanup, you can call either the :meth:" "`~PyHKEY.Close` method on the object, or the :func:`CloseKey` function." msgstr "" +"Este objeto envuelve un objeto HKEY de Windows y lo cierra automáticamente " +"cuando se destruye. Para garantizar la limpieza, puede llamar al método :" +"meth:`~PyHKEY.Close` en el objeto, o a la función :func:`CloseKey`." #: ../Doc/library/winreg.rst:749 msgid "All registry functions in this module return one of these objects." @@ -964,22 +1040,31 @@ msgid "" "All registry functions in this module which accept a handle object also " "accept an integer, however, use of the handle object is encouraged." msgstr "" +"Todas las funciones de registro de este módulo que aceptan un objeto " +"identificador también aceptan un número entero, sin embargo, se recomienda " +"el uso del objeto identificador." #: ../Doc/library/winreg.rst:754 msgid "Handle objects provide semantics for :meth:`__bool__` -- thus ::" msgstr "" +"Los objetos de control proporcionan semántica para :meth:`__bool__` — thus ::" #: ../Doc/library/winreg.rst:759 msgid "" "will print ``Yes`` if the handle is currently valid (has not been closed or " "detached)." msgstr "" +"imprimirá ``Yes`` si el controlador es válido actualmente (no se ha cerrado " +"o desprendido)." #: ../Doc/library/winreg.rst:762 msgid "" "The object also support comparison semantics, so handle objects will compare " "true if they both reference the same underlying Windows handle value." msgstr "" +"El objeto también admite la semántica de comparación, por lo que los objetos " +"de identificador se compararán con verdadero si ambos hacen referencia al " +"mismo valor de identificador de Windows subyacente." #: ../Doc/library/winreg.rst:765 msgid "" @@ -989,6 +1074,12 @@ msgid "" "integer handle, and also disconnect the Windows handle from the handle " "object." msgstr "" +"Los objetos de identificador se pueden convertir a un número entero (por " +"ejemplo, usando la función incorporada :func:`int` function), en cuyo caso " +"se devuelve el valor de identificador de Windows subyacente. También puede " +"usar el método :meth:`~PyHKEY.Detach` para devolver el identificador de " +"enteros y también desconectar el identificador de Windows del objeto " +"identificador." #: ../Doc/library/winreg.rst:773 msgid "Closes the underlying Windows handle." @@ -1018,12 +1109,18 @@ msgid "" "handle is not closed. You would call this function when you need the " "underlying Win32 handle to exist beyond the lifetime of the handle object." msgstr "" +"Después de llamar a esta función, el identificador se invalida " +"efectivamente, pero el identificador no se cierra. Llamaría a esta función " +"cuando necesite que el identificador Win32 subyacente exista más allá de la " +"vida útil del objeto identificador." #: ../Doc/library/winreg.rst:790 msgid "" "Raises an :ref:`auditing event ` ``winreg.PyHKEY.Detach`` with " "argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.PyHKEY.Detach`` con el " +"argumento ``key``." #: ../Doc/library/winreg.rst:796 msgid "" @@ -1031,6 +1128,9 @@ msgid "" "__exit__` and thus supports the context protocol for the :keyword:`with` " "statement::" msgstr "" +"El objeto HKEY implementa :meth:`~object.__enter__` y :meth:`~object." +"__exit__` y, por lo tanto, admite el protocolo de contexto para la :keyword:" +"`with` statement::" #: ../Doc/library/winreg.rst:803 msgid "" From 34f05208b9b6e96a9060a1f9283dd61d9ff83d09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Sun, 11 Oct 2020 15:35:03 -0500 Subject: [PATCH 04/44] Traducido archivo library/winreg --- library/winreg.po | 107 +++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 106 insertions(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 77668b004a..c0b25c8533 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -11,7 +11,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-11 15:01-0500\n" +"PO-Revision-Date: 2020-10-11 15:34-0500\n" "Language-Team: python-doc-es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -225,6 +225,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.DeleteKey`` with " "arguments ``key``, ``sub_key``, ``access``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.DeleteKey`` con los " +"argumentos `key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:148 msgid "" @@ -254,6 +256,10 @@ msgid "" "desired security access for the key. Default is :const:`KEY_WOW64_64KEY`. " "See :ref:`Access Rights ` for other allowed values." msgstr "" +"*access* es un número entero que especifica una máscara de acceso que " +"describe el acceso de seguridad deseado para la clave. El valor " +"predeterminado es :const:`KEY_WOW64_64KEY`. Ver :ref:`Access Rights ` para otros valores permitidos." #: ../Doc/library/winreg.rst:171 msgid "On unsupported Windows versions, :exc:`NotImplementedError` is raised." @@ -273,6 +279,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.DeleteValue`` with " "arguments ``key``, ``value``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.DeleteValue`` con " +"argumentos ``key``, ``value``." #: ../Doc/library/winreg.rst:195 msgid "Enumerates subkeys of an open registry key, returning a string." @@ -476,17 +484,23 @@ msgid "" "If *key* is a handle returned by :func:`ConnectRegistry`, then the path " "specified in *file_name* is relative to the remote computer." msgstr "" +"Si *key* es un identificador devuelto por :func:`ConnectRegistry`, entonces " +"la ruta especificada en *file_name* es relativa a la computadora remota." #: ../Doc/library/winreg.rst:304 msgid "" "Raises an :ref:`auditing event ` ``winreg.LoadKey`` with arguments " "``key``, ``sub_key``, ``file_name``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.LoadKey`` con los " +"argumentos ``key``, ``sub_key``, ``file_name``." #: ../Doc/library/winreg.rst:310 msgid "" "Opens the specified key, returning a :ref:`handle object `." msgstr "" +"Abre la clave especificada, devolviendo a :ref:`handle object `." #: ../Doc/library/winreg.rst:315 msgid "*sub_key* is a string that identifies the sub_key to open." @@ -497,6 +511,8 @@ msgstr "" msgid "" "*reserved* is a reserved integer, and must be zero. The default is zero." msgstr "" +"*reserved* es un número entero reservado y debe ser cero. El valor " +"predeterminado es cero." #: ../Doc/library/winreg.rst:319 msgid "" @@ -504,6 +520,10 @@ msgid "" "desired security access for the key. Default is :const:`KEY_READ`. See :" "ref:`Access Rights ` for other allowed values." msgstr "" +"*access* es un número entero que especifica una máscara de acceso que " +"describe el acceso de seguridad deseado para la clave. El valor " +"predeterminado es :const:`KEY_READ`. Ver :ref:`Access Rights ` para otros valores permitidos." #: ../Doc/library/winreg.rst:323 msgid "The result is a new handle to the specified key." @@ -518,6 +538,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.OpenKey`` with arguments " "``key``, ``sub_key``, ``access``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.OpenKey`` con los " +"argumentos ``key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:331 msgid "Allow the use of named arguments." @@ -549,10 +571,13 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryInfoKey`` with " "argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.QueryInfoKey`` con el " +"argumento ``key``." #: ../Doc/library/winreg.rst:366 msgid "Retrieves the unnamed value for a key, as a string." msgstr "" +"Recupera el valor sin nombre de una clave, como una cadena de caracteres." #: ../Doc/library/winreg.rst:371 msgid "" @@ -561,6 +586,10 @@ msgid "" "retrieves the value set by the :func:`SetValue` method for the key " "identified by *key*." msgstr "" +"*sub_key* es una cadena de caracteres que contiene el nombre de la subclave " +"con la que está asociado el valor. Si este parámetro es ``None`` o está " +"vacío, la función recupera el valor establecido por el método :func:" +"`SetValue` para la clave identificada por *key*." #: ../Doc/library/winreg.rst:375 msgid "" @@ -569,18 +598,26 @@ msgid "" "underlying API call doesn't return the type, so always use :func:" "`QueryValueEx` if possible." msgstr "" +"Los valores del registro tienen componentes de nombre, tipo y datos. Este " +"método recupera los datos del primer valor de una clave que tiene un nombre " +"``NULL``. Pero la llamada a la API subyacente no retorna el tipo, así que " +"siempre use :func:`QueryValueEx` si es posible." #: ../Doc/library/winreg.rst:380 ../Doc/library/winreg.rst:405 msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryValue`` with " "arguments ``key``, ``sub_key``, ``value_name``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.QueryValue`` con los " +"argumentos ``key``, ``sub_key``, ``value_name``." #: ../Doc/library/winreg.rst:385 msgid "" "Retrieves the type and data for a specified value name associated with an " "open registry key." msgstr "" +"Recupera el tipo y los datos de un nombre de valor especificado asociado con " +"una clave de registro abierta." #: ../Doc/library/winreg.rst:391 msgid "*value_name* is a string indicating the value to query." @@ -616,6 +653,10 @@ msgid "" "used on file allocation table (FAT) file systems by the :meth:`LoadKey` " "method." msgstr "" +"*file_name* es el nombre del archivo en el que se guardarán los datos del " +"registro. Este archivo no puede existir ya. Si este nombre de archivo " +"incluye una extensión, no se puede usar en sistemas de archivos de tabla de " +"asignación de archivos (FAT) mediante el método :meth:`LoadKey`." #: ../Doc/library/winreg.rst:420 msgid "" @@ -626,6 +667,13 @@ msgid "" "Rights and Permissions documentation `__ for more details." msgstr "" +"Si *key* representa una clave en una computadora remota, la ruta descrita " +"por *file_name* es relativa a la computadora remota. La persona que llama a " +"este método debe poseer el privilegio de seguridad :const:" +"`SeBackupPrivilege`. Tenga en cuenta que los privilegios son diferentes a " +"los permisos -- consulte la documentación sobre conflictos entre derechos de " +"usuario y permisos `__ para más detalles." #: ../Doc/library/winreg.rst:428 msgid "This function passes ``NULL`` for *security_attributes* to the API." @@ -636,6 +684,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.SaveKey`` with arguments " "``key``, ``file_name``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.SaveKey`` con los " +"argumentos ``key``, ``file_name``." #: ../Doc/library/winreg.rst:435 msgid "Associates a value with a specified key." @@ -655,6 +705,10 @@ msgid "" "must be :const:`REG_SZ`, meaning only strings are supported. Use the :func:" "`SetValueEx` function for support for other data types." msgstr "" +"*type* es un número entero que especifica el tipo de datos. Actualmente debe " +"ser :const:`REG_SZ`, lo que significa que solo se admiten cadenas de " +"caracteres. Utilice la función: :func:`SetValueEx` para admitir otros tipos " +"de datos." #: ../Doc/library/winreg.rst:446 ../Doc/library/winreg.rst:476 msgid "*value* is a string that specifies the new value." @@ -665,6 +719,8 @@ msgid "" "If the key specified by the *sub_key* parameter does not exist, the SetValue " "function creates it." msgstr "" +"Si la clave especificada por el parámetro *sub_key* no existe, la función " +"SetValue la crea." #: ../Doc/library/winreg.rst:451 ../Doc/library/winreg.rst:484 msgid "" @@ -672,18 +728,26 @@ msgid "" "bytes) should be stored as files with the filenames stored in the " "configuration registry. This helps the registry perform efficiently." msgstr "" +"Las longitudes de los valores están limitadas por la memoria disponible. Los " +"valores largos (más de 2048 bytes) deben almacenarse como archivos con los " +"nombres de archivo almacenados en el registro de configuración. Esto ayuda a " +"que el registro funcione de manera eficiente." #: ../Doc/library/winreg.rst:455 msgid "" "The key identified by the *key* parameter must have been opened with :const:" "`KEY_SET_VALUE` access." msgstr "" +"La clave identificada por el parámetro *key* debe haber sido abierta con " +"acceso :const:`KEY_SET_VALUE`." #: ../Doc/library/winreg.rst:458 ../Doc/library/winreg.rst:488 msgid "" "Raises an :ref:`auditing event ` ``winreg.SetValue`` with " "arguments ``key``, ``sub_key``, ``type``, ``value``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.SetValue`` con " +"argumentos ``key``, ``sub_key``, ``type``, ``value``." #: ../Doc/library/winreg.rst:463 msgid "Stores data in the value field of an open registry key." @@ -706,6 +770,8 @@ msgid "" "*type* is an integer that specifies the type of the data. See :ref:`Value " "Types ` for the available types." msgstr "" +"*type* es un número entero que especifica el tipo de datos. Consulte :ref:" +"`Value Types ` para los tipos disponibles." #: ../Doc/library/winreg.rst:478 msgid "" @@ -713,16 +779,22 @@ msgid "" "specified key. The key identified by the key parameter must have been " "opened with :const:`KEY_SET_VALUE` access." msgstr "" +"Este método también puede establecer un valor adicional e información de " +"tipo para la clave especificada. La clave identificada por el parámetro " +"clave debe haber sido abierta con acceso :const:`KEY_SET_VALUE`." #: ../Doc/library/winreg.rst:482 msgid "To open the key, use the :func:`CreateKey` or :func:`OpenKey` methods." msgstr "" +"Para abrir la clave, use los métodos :func:`CreateKey` o :func:`OpenKey`." #: ../Doc/library/winreg.rst:493 msgid "" "Disables registry reflection for 32-bit processes running on a 64-bit " "operating system." msgstr "" +"Desactiva la reflexión del registro para los procesos de 32 bits que se " +"ejecutan en un sistema operativo de 64 bits." #: ../Doc/library/winreg.rst:499 ../Doc/library/winreg.rst:516 #: ../Doc/library/winreg.rst:533 @@ -730,6 +802,8 @@ msgid "" "Will generally raise :exc:`NotImplementedError` if executed on a 32-bit " "operating system." msgstr "" +"Generalmente generará :exc:`NotImplementedError` si se ejecuta en un sistema " +"operativo de 32 bits." #: ../Doc/library/winreg.rst:502 msgid "" @@ -737,27 +811,37 @@ msgid "" "effect. Disabling reflection for a key does not affect reflection of any " "subkeys." msgstr "" +"Si la clave no está en la lista de reflexión, la función tiene éxito pero no " +"tiene ningún efecto. La desactivación de la reflexión de una clave no afecta " +"la reflexión de ninguna subclave." #: ../Doc/library/winreg.rst:506 msgid "" "Raises an :ref:`auditing event ` ``winreg.DisableReflectionKey`` " "with argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.DisableReflectionKey`` " +"con el argumento ``key``." #: ../Doc/library/winreg.rst:511 msgid "Restores registry reflection for the specified disabled key." msgstr "" +"Restaura la reflexión del registro para la clave deshabilitada especificada." #: ../Doc/library/winreg.rst:519 msgid "" "Restoring reflection for a key does not affect reflection of any subkeys." msgstr "" +"La restauración de la reflexión de una clave no afecta la reflexión de " +"ninguna subclave." #: ../Doc/library/winreg.rst:521 msgid "" "Raises an :ref:`auditing event ` ``winreg.EnableReflectionKey`` " "with argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.EnableReflectionKey`` " +"con el argumento ``key``." #: ../Doc/library/winreg.rst:526 msgid "Determines the reflection state for the specified key." @@ -772,6 +856,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryReflectionKey`` " "with argument ``key``." msgstr "" +"Genera un :ref:`auditing event ` ``winreg.QueryReflectionKey`` con " +"el argumento ``key``." #: ../Doc/library/winreg.rst:542 msgid "Constants" @@ -781,6 +867,8 @@ msgstr "Constantes" msgid "" "The following constants are defined for use in many :mod:`_winreg` functions." msgstr "" +"Las siguientes constantes están definidas para su uso en muchas funciones :" +"mod:`_winreg`." #: ../Doc/library/winreg.rst:549 msgid "HKEY_* Constants" @@ -792,6 +880,9 @@ msgid "" "documents and the properties associated with those types. Shell and COM " "applications use the information stored under this key." msgstr "" +"Las entradas de registro subordinadas a esta clave definen tipos (o clases) " +"de documentos y las propiedades asociadas con esos tipos. Las aplicaciones " +"Shell y COM utilizan la información almacenada en esta clave." #: ../Doc/library/winreg.rst:560 msgid "" @@ -800,6 +891,10 @@ msgid "" "variables, data about program groups, colors, printers, network connections, " "and application preferences." msgstr "" +"Las entradas de registro subordinadas a esta clave definen las preferencias " +"del usuario actual. Estas preferencias incluyen la configuración de " +"variables de entorno, datos sobre grupos de programas, colores, impresoras, " +"conexiones de red y preferencias de la aplicación." #: ../Doc/library/winreg.rst:567 msgid "" @@ -807,6 +902,9 @@ msgid "" "computer, including data about the bus type, system memory, and installed " "hardware and software." msgstr "" +"Las entradas de registro subordinadas a esta clave definen el estado físico " +"de la computadora, incluidos los datos sobre el tipo de bus, la memoria del " +"sistema y el hardware y software instalados." #: ../Doc/library/winreg.rst:573 msgid "" @@ -814,6 +912,9 @@ msgid "" "configuration for new users on the local computer and the user configuration " "for the current user." msgstr "" +"Las entradas de registro subordinadas a esta clave definen la configuración " +"de usuario predeterminada para nuevos usuarios en la computadora local y la " +"configuración de usuario para el usuario actual." #: ../Doc/library/winreg.rst:579 msgid "" @@ -821,6 +922,10 @@ msgid "" "data. The data is not actually stored in the registry; the registry " "functions cause the system to collect the data from its source." msgstr "" +"Las entradas de registro subordinadas a esta clave le permiten acceder a los " +"datos de rendimiento. Los datos no se almacenan realmente en el registro; " +"las funciones de registro hacen que el sistema recopile los datos de su " +"fuente." #: ../Doc/library/winreg.rst:587 msgid "" From 3f81917623778c0ea1d9c54a5d8ce55425affcfa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 13:52:19 -0500 Subject: [PATCH 05/44] Traducido archivo library/winreg --- dictionaries/library_winreg.txt | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dictionaries/library_winreg.txt diff --git a/dictionaries/library_winreg.txt b/dictionaries/library_winreg.txt new file mode 100644 index 0000000000..a82b8282e1 --- /dev/null +++ b/dictionaries/library_winreg.txt @@ -0,0 +1,6 @@ +subclave +RegDeleteKeyEx +subclaves +SetValue +thus +statement From 9f795c45280495d934b4925db430916cb4ea0988 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:04 -0500 Subject: [PATCH 06/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index c0b25c8533..1517efead7 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1152,7 +1152,7 @@ msgstr "" #: ../Doc/library/winreg.rst:754 msgid "Handle objects provide semantics for :meth:`__bool__` -- thus ::" msgstr "" -"Los objetos de control proporcionan semántica para :meth:`__bool__` — thus ::" +"Los objetos de control proporcionan semántica para :meth:`__bool__` -- así ::" #: ../Doc/library/winreg.rst:759 msgid "" From bb95f88e34bb5518b08492724b7980eb043f5eba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:15 -0500 Subject: [PATCH 07/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index 1517efead7..7a64e3328b 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1234,8 +1234,8 @@ msgid "" "statement::" msgstr "" "El objeto HKEY implementa :meth:`~object.__enter__` y :meth:`~object." -"__exit__` y, por lo tanto, admite el protocolo de contexto para la :keyword:" -"`with` statement::" +"__exit__` y, por lo tanto, admite el protocolo de contexto para la declaración :keyword:" +"`with`::" #: ../Doc/library/winreg.rst:803 msgid "" From 3ef94f1e8ce058181ca2996b5b641f167baf1e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:24 -0500 Subject: [PATCH 08/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index 7a64e3328b..737191e37a 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1181,8 +1181,8 @@ msgid "" msgstr "" "Los objetos de identificador se pueden convertir a un número entero (por " "ejemplo, usando la función incorporada :func:`int` function), en cuyo caso " -"se devuelve el valor de identificador de Windows subyacente. También puede " -"usar el método :meth:`~PyHKEY.Detach` para devolver el identificador de " +"se retorna el valor de identificador de Windows subyacente. También puede " +"usar el método :meth:`~PyHKEY.Detach` para retornar el identificador de " "enteros y también desconectar el identificador de Windows del objeto " "identificador." From e30cd6a56d5f43122e0ef9634cb9c2da91c89fd2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:34 -0500 Subject: [PATCH 09/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 737191e37a..332dfa4468 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -499,7 +499,7 @@ msgstr "" msgid "" "Opens the specified key, returning a :ref:`handle object `." msgstr "" -"Abre la clave especificada, devolviendo a :ref:`handle object `." #: ../Doc/library/winreg.rst:315 From 5111cfa8f0a36da493925410437a7420502f0afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:42 -0500 Subject: [PATCH 10/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 332dfa4468..6419a7caae 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -447,7 +447,7 @@ msgid "" "*key* is a handle returned by :func:`ConnectRegistry` or one of the " "constants :const:`HKEY_USERS` or :const:`HKEY_LOCAL_MACHINE`." msgstr "" -"*key* es un identificador devuelto por :func:`ConnectRegistry` o una de las " +"*key* es un identificador retornado por :func:`ConnectRegistry` o una de las " "constantes :const:`HKEY_USERS` o :const:`HKEY_LOCAL_MACHINE`." #: ../Doc/library/winreg.rst:289 From f3ebf4b6401b1ce0e1e3613232ea212d675f3e3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:51 -0500 Subject: [PATCH 11/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- dictionaries/library_winreg.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/dictionaries/library_winreg.txt b/dictionaries/library_winreg.txt index a82b8282e1..0f76ce43b7 100644 --- a/dictionaries/library_winreg.txt +++ b/dictionaries/library_winreg.txt @@ -2,5 +2,3 @@ subclave RegDeleteKeyEx subclaves SetValue -thus -statement From 97d65a5e96bc8213950e731155d7c3174180009a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:53:59 -0500 Subject: [PATCH 12/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 6419a7caae..10f0d47a67 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -45,7 +45,7 @@ msgid "" "Several functions in this module used to raise a :exc:`WindowsError`, which " "is now an alias of :exc:`OSError`." msgstr "" -"Varias funciones de este módulo solían generar un :exc:`WindowsError`, que " +"Varias funciones de este módulo solían lanzar un :exc:`WindowsError`, que " "ahora es un alias de :exc:`OSError`." #: ../Doc/library/winreg.rst:26 From d8af02446e68e067bd8ca82701b857e88acff3fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:54:08 -0500 Subject: [PATCH 13/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 10f0d47a67..a46f944b78 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -99,7 +99,7 @@ msgid "" "exc:`OSError` exception is raised." msgstr "" "El valor de retorno es el identificador de la llave abierta. Si la función " -"falla, se genera una excepción :exc:`OSError`." +"falla, se lanza una excepción :exc:`OSError`." #: ../Doc/library/winreg.rst:57 msgid "" From 231b5c0f0afdfd320cb312aaa1115ea33bfd92c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:54:19 -0500 Subject: [PATCH 14/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index a46f944b78..e4ea7fbbe9 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -422,7 +422,7 @@ msgstr "" "cambios en el registro se descargan en el disco mediante el registro " "mediante su vaciador diferido. Los cambios en el registro también se vacían " "en el disco cuando se apaga el sistema. A diferencia de :func:`CloseKey`, el " -"método :func:`FlushKey` devuelve solo cuando todos los datos se han escrito " +"método :func:`FlushKey` retorna solo cuando todos los datos se han escrito " "en el registro. Una aplicación solo debe llamar a :func:`FlushKey` si " "requiere absoluta certeza de que los cambios de registro están en el disco." From 7e8e4a774a2399b453b8c55edda8325e27c62773 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:54:27 -0500 Subject: [PATCH 15/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index e4ea7fbbe9..424ce7015c 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -484,7 +484,7 @@ msgid "" "If *key* is a handle returned by :func:`ConnectRegistry`, then the path " "specified in *file_name* is relative to the remote computer." msgstr "" -"Si *key* es un identificador devuelto por :func:`ConnectRegistry`, entonces " +"Si *key* es un identificador retornado por :func:`ConnectRegistry`, entonces " "la ruta especificada en *file_name* es relativa a la computadora remota." #: ../Doc/library/winreg.rst:304 From ca61a18999e1e0243b851022c81f26aadcaa4301 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:54:44 -0500 Subject: [PATCH 16/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 424ce7015c..cad46107c4 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -308,7 +308,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.EnumKey`` with arguments " "``key``, ``index``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.EnumKey`` con argumentos " +"Lanza un :ref:`auditing event ` ``winreg.EnumKey`` con argumentos " "``key``, ``index``." #: ../Doc/library/winreg.rst:214 From 10b282775f046c3b3be1be519d5910221d0507a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:54:58 -0500 Subject: [PATCH 17/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index cad46107c4..b02c08bc89 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -106,7 +106,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.ConnectRegistry`` with " "arguments ``computer_name``, ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.ConnectRegistry`` con " +"Lanza un :ref:`auditing event ` ``winreg.ConnectRegistry`` con " "argumentos ``computer_name``, ``key``." #: ../Doc/library/winreg.rst:58 ../Doc/library/winreg.rst:84 From 7f0452a7cdb75554cd6fa1fd4914236e4a53df4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:55:12 -0500 Subject: [PATCH 18/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index b02c08bc89..514e8da41e 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -164,7 +164,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.CreateKey`` with " "arguments ``key``, ``sub_key``, ``access``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.CreateKey`` con los " +"Lanza un :ref:`auditing event ` ``winreg.CreateKey`` con los " "argumentos ``key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:83 ../Doc/library/winreg.rst:115 From e93478df1dffbd65323a25cfa319d998c57d95b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:55:28 -0500 Subject: [PATCH 19/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 514e8da41e..c41ec30c9d 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -173,7 +173,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.OpenKey/result`` with " "argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.OpenKey/result`` con el " +"Lanza un :ref:`auditing event ` ``winreg.OpenKey/result`` con el " "argumento ``key``." #: ../Doc/library/winreg.rst:98 ../Doc/library/winreg.rst:160 From 753316924fd4d097280342e4300394e2d391593e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:55:42 -0500 Subject: [PATCH 20/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index c41ec30c9d..3b2ef93a67 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -225,7 +225,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.DeleteKey`` with " "arguments ``key``, ``sub_key``, ``access``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.DeleteKey`` con los " +"Lanza un :ref:`auditing event ` ``winreg.DeleteKey`` con los " "argumentos `key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:148 From 06337953e59bb850c5f758d542d90f225d528e39 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:55:58 -0500 Subject: [PATCH 21/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 3b2ef93a67..7022c9e4ae 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -218,7 +218,7 @@ msgid "" "removed. If the method fails, an :exc:`OSError` exception is raised." msgstr "" "Si el método tiene éxito, se elimina toda la clave, incluidos todos sus " -"valores. Si el método falla, se genera una excepción :exc:`OSError`." +"valores. Si el método falla, se lanza una excepción :exc:`OSError`." #: ../Doc/library/winreg.rst:138 ../Doc/library/winreg.rst:174 msgid "" From 3543b92665974f66bbfa49593622980f0da55c33 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:56:11 -0500 Subject: [PATCH 22/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 7022c9e4ae..235634ed7a 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -264,7 +264,7 @@ msgstr "" #: ../Doc/library/winreg.rst:171 msgid "On unsupported Windows versions, :exc:`NotImplementedError` is raised." msgstr "" -"En versiones de Windows no compatibles, se genera :exc:`NotImplementedError`." +"En versiones de Windows no compatibles, se lanza :exc:`NotImplementedError`." #: ../Doc/library/winreg.rst:183 msgid "Removes a named value from a registry key." From 807159d3939da8ddcd45a477d1105354f945038d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:56:26 -0500 Subject: [PATCH 23/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 235634ed7a..c0db745d39 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -279,7 +279,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.DeleteValue`` with " "arguments ``key``, ``value``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.DeleteValue`` con " +"Lanza un :ref:`auditing event ` ``winreg.DeleteValue`` con " "argumentos ``key``, ``value``." #: ../Doc/library/winreg.rst:195 From aac60f07a07aa0e1ce15283da6c0e04c4e978f6f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:56:40 -0500 Subject: [PATCH 24/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index c0db745d39..a48c16b216 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -300,7 +300,7 @@ msgid "" "indicating, no more values are available." msgstr "" "La función recupera el nombre de una subclave cada vez que se llama. " -"Normalmente se llama repetidamente hasta que se genera una excepción :exc:" +"Normalmente se llama repetidamente hasta que se lanza una excepción :exc:" "`OSError`, lo que indica que no hay más valores disponibles." #: ../Doc/library/winreg.rst:207 From ecd3e84541a59c0b3ae68b751502e922fd3a531d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:56:58 -0500 Subject: [PATCH 25/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index a48c16b216..edcfc97a63 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -802,7 +802,7 @@ msgid "" "Will generally raise :exc:`NotImplementedError` if executed on a 32-bit " "operating system." msgstr "" -"Generalmente generará :exc:`NotImplementedError` si se ejecuta en un sistema " +"Generalmente lanzará :exc:`NotImplementedError` si se ejecuta en un sistema " "operativo de 32 bits." #: ../Doc/library/winreg.rst:502 From 9b37f481255fac3d8c07f90cb32439a2e5967f71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:57:13 -0500 Subject: [PATCH 26/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index edcfc97a63..f5dcb1e9fb 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -329,7 +329,7 @@ msgid "" "indicating no more values." msgstr "" "La función recupera el nombre de una subclave cada vez que se llama. " -"Normalmente se llama repetidamente, hasta que se genera una excepción :exc:" +"Normalmente se llama repetidamente, hasta que se lanza una excepción :exc:" "`OSError`, lo que indica que no hay más valores." #: ../Doc/library/winreg.rst:225 ../Doc/library/winreg.rst:345 From 10bf82aa614b5d9efb54145ee2faa1369f78c63d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:57:27 -0500 Subject: [PATCH 27/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index f5dcb1e9fb..63e87ce1c8 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -538,7 +538,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.OpenKey`` with arguments " "``key``, ``sub_key``, ``access``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.OpenKey`` con los " +"Lanza un :ref:`auditing event ` ``winreg.OpenKey`` con los " "argumentos ``key``, ``sub_key``, ``access``." #: ../Doc/library/winreg.rst:331 From 44ee1dc55c222340e96cf3634633dd737e8fd896 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:57:42 -0500 Subject: [PATCH 28/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 63e87ce1c8..8643234abc 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -385,7 +385,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.EnumValue`` with " "arguments ``key``, ``index``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.EnumValue`` con " +"Lanza un :ref:`auditing event ` ``winreg.EnumValue`` con " "argumentos ``key``, ``index``." #: ../Doc/library/winreg.rst:252 From 7f4244132251419993371e2f734e548bd73692c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:58:01 -0500 Subject: [PATCH 29/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 8643234abc..9fc6ae8077 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -746,7 +746,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.SetValue`` with " "arguments ``key``, ``sub_key``, ``type``, ``value``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.SetValue`` con " +"Lanza un :ref:`auditing event ` ``winreg.SetValue`` con " "argumentos ``key``, ``sub_key``, ``type``, ``value``." #: ../Doc/library/winreg.rst:463 From dde2b8f7158966b3fef5fa42179413810accb1c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:58:16 -0500 Subject: [PATCH 30/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 9fc6ae8077..450619c942 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -401,7 +401,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg." "ExpandEnvironmentStrings`` with argument ``str``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg." +"Lanza un :ref:`auditing event ` ``winreg." "ExpandEnvironmentStrings`` con el argumento ``str``." #: ../Doc/library/winreg.rst:263 From 67f20421a1be43a751829c73e8ba52ae9aecfc89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:58:32 -0500 Subject: [PATCH 31/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 450619c942..1c722feb3a 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -531,7 +531,7 @@ msgstr "El resultado es un nuevo identificador para la clave especificada." #: ../Doc/library/winreg.rst:325 msgid "If the function fails, :exc:`OSError` is raised." -msgstr "Si la función falla, se genera :exc:`OSError`." +msgstr "Si la función falla, se lanza :exc:`OSError`." #: ../Doc/library/winreg.rst:328 msgid "" From b246d1ecf39840c44c9eba88514b7b6546c86c7c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:58:46 -0500 Subject: [PATCH 32/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 1c722feb3a..ed84c99a53 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -608,7 +608,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryValue`` with " "arguments ``key``, ``sub_key``, ``value_name``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.QueryValue`` con los " +"Lanza un :ref:`auditing event ` ``winreg.QueryValue`` con los " "argumentos ``key``, ``sub_key``, ``value_name``." #: ../Doc/library/winreg.rst:385 From c0ffb57f8c1e0c409398a54c42a5e4b9d93cbb09 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:59:00 -0500 Subject: [PATCH 33/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index ed84c99a53..1cc27f37ed 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -492,7 +492,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.LoadKey`` with arguments " "``key``, ``sub_key``, ``file_name``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.LoadKey`` con los " +"Lanza un :ref:`auditing event ` ``winreg.LoadKey`` con los " "argumentos ``key``, ``sub_key``, ``file_name``." #: ../Doc/library/winreg.rst:310 From 75266912342330511ed592ee8764f0368819ea14 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:59:26 -0500 Subject: [PATCH 34/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 1cc27f37ed..b2e9f757e5 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -571,7 +571,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryInfoKey`` with " "argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.QueryInfoKey`` con el " +"Lanza un :ref:`auditing event ` ``winreg.QueryInfoKey`` con el " "argumento ``key``." #: ../Doc/library/winreg.rst:366 From 64682d274cfef1b93105c8a4bbe96130735b7077 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 16:59:44 -0500 Subject: [PATCH 35/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index b2e9f757e5..c52a2e6337 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -684,7 +684,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.SaveKey`` with arguments " "``key``, ``file_name``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.SaveKey`` con los " +"Lanza un :ref:`auditing event ` ``winreg.SaveKey`` con los " "argumentos ``key``, ``file_name``." #: ../Doc/library/winreg.rst:435 From 429a3ab9aa88e8b45604b6219eb478f9deed616f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:00:00 -0500 Subject: [PATCH 36/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index c52a2e6337..76ba0b6409 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -820,7 +820,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.DisableReflectionKey`` " "with argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.DisableReflectionKey`` " +"Lanza un :ref:`auditing event ` ``winreg.DisableReflectionKey`` " "con el argumento ``key``." #: ../Doc/library/winreg.rst:511 From f401de532d2e2a53520e0b559b27401ddf68ec6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:00:19 -0500 Subject: [PATCH 37/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 76ba0b6409..2c7cacba8c 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -840,7 +840,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.EnableReflectionKey`` " "with argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.EnableReflectionKey`` " +"Lanza un :ref:`auditing event ` ``winreg.EnableReflectionKey`` " "con el argumento ``key``." #: ../Doc/library/winreg.rst:526 From 93cf1209749915d19792caef673d82aa604a30ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:00:37 -0500 Subject: [PATCH 38/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 2c7cacba8c..bc088f8707 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -314,7 +314,7 @@ msgstr "" #: ../Doc/library/winreg.rst:214 msgid "Enumerates values of an open registry key, returning a tuple." msgstr "" -"Enumera los valores de una clave de registro abierta y devuelve una tupla." +"Enumera los valores de una clave de registro abierta y retorna una tupla." #: ../Doc/library/winreg.rst:219 msgid "" From e9a965c46324ab57924eaf88a5e1236cea15ac62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:01:00 -0500 Subject: [PATCH 39/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index bc088f8707..e937429904 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -856,7 +856,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.QueryReflectionKey`` " "with argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.QueryReflectionKey`` con " +"Lanza un :ref:`auditing event ` ``winreg.QueryReflectionKey`` con " "el argumento ``key``." #: ../Doc/library/winreg.rst:542 From f69fd8c7c2759519685909ff0940eb25785b1b32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:01:16 -0500 Subject: [PATCH 40/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index e937429904..1a4f1b3429 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1192,7 +1192,7 @@ msgstr "Cierra el identificador de Windows subyacente." #: ../Doc/library/winreg.rst:775 msgid "If the handle is already closed, no error is raised." -msgstr "Si el controlador ya está cerrado, no se genera ningún error." +msgstr "Si el controlador ya está cerrado, no se lanza ningún error." #: ../Doc/library/winreg.rst:780 msgid "Detaches the Windows handle from the handle object." From 077e9451d108a7d13502739c0482b47b1b6ee977 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:01:34 -0500 Subject: [PATCH 41/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 1a4f1b3429..32b91000f9 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -1224,7 +1224,7 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.PyHKEY.Detach`` with " "argument ``key``." msgstr "" -"Genera un :ref:`auditing event ` ``winreg.PyHKEY.Detach`` con el " +"Lanza un :ref:`auditing event ` ``winreg.PyHKEY.Detach`` con el " "argumento ``key``." #: ../Doc/library/winreg.rst:796 From e0a769d073c8ba607b1a36fbd23d10dfa6035a3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:01:51 -0500 Subject: [PATCH 42/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 32b91000f9..76d57304f9 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -285,7 +285,7 @@ msgstr "" #: ../Doc/library/winreg.rst:195 msgid "Enumerates subkeys of an open registry key, returning a string." msgstr "" -"Enumera las subclaves de una clave de registro abierta y devuelve una cadena " +"Enumera las subclaves de una clave de registro abierta y retorna una cadena " "de caracteres." #: ../Doc/library/winreg.rst:200 From 66b0131964b45c45d66897231ee0f06105ce1939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:02:07 -0500 Subject: [PATCH 43/44] Traducido archivo library/winreg MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Cristián Maureira-Fredes --- library/winreg.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/winreg.po b/library/winreg.po index 76d57304f9..69b3cebda7 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -78,7 +78,7 @@ msgid "" "computer, and returns a :ref:`handle object `." msgstr "" "Establece una conexión con un identificador de registro predefinido en otra " -"computadora y devuelve un :ref:`handle object `." +"computadora y retorna un :ref:`handle object `." #: ../Doc/library/winreg.rst:48 msgid "" From 97b99600e8f02ee705e965d547c8d7482675fbdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alegr=C3=ADa?= Date: Mon, 12 Oct 2020 17:03:11 -0500 Subject: [PATCH 44/44] Traducido archivo library/winreg --- library/winreg.po | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/library/winreg.po b/library/winreg.po index 69b3cebda7..b2f4b42fb3 100644 --- a/library/winreg.po +++ b/library/winreg.po @@ -746,8 +746,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.SetValue`` with " "arguments ``key``, ``sub_key``, ``type``, ``value``." msgstr "" -"Lanza un :ref:`auditing event ` ``winreg.SetValue`` con " -"argumentos ``key``, ``sub_key``, ``type``, ``value``." +"Lanza un :ref:`auditing event ` ``winreg.SetValue`` con argumentos " +"``key``, ``sub_key``, ``type``, ``value``." #: ../Doc/library/winreg.rst:463 msgid "Stores data in the value field of an open registry key." @@ -840,8 +840,8 @@ msgid "" "Raises an :ref:`auditing event ` ``winreg.EnableReflectionKey`` " "with argument ``key``." msgstr "" -"Lanza un :ref:`auditing event ` ``winreg.EnableReflectionKey`` " -"con el argumento ``key``." +"Lanza un :ref:`auditing event ` ``winreg.EnableReflectionKey`` con " +"el argumento ``key``." #: ../Doc/library/winreg.rst:526 msgid "Determines the reflection state for the specified key." @@ -1234,8 +1234,8 @@ msgid "" "statement::" msgstr "" "El objeto HKEY implementa :meth:`~object.__enter__` y :meth:`~object." -"__exit__` y, por lo tanto, admite el protocolo de contexto para la declaración :keyword:" -"`with`::" +"__exit__` y, por lo tanto, admite el protocolo de contexto para la " +"declaración :keyword:`with`::" #: ../Doc/library/winreg.rst:803 msgid ""