Skip to content

Commit 28dac4c

Browse files
authored
Traducción de library/uu.po (#1146)
1 parent f95e7fb commit 28dac4c

File tree

3 files changed

+48
-9
lines changed

3 files changed

+48
-9
lines changed

TRANSLATORS

+1
Original file line numberDiff line numberDiff line change
@@ -117,3 +117,4 @@ David Silva (@dvidsilva)
117117
Ricardo Rodríguez (@ricrogz)
118118
Enrique Zárate (@enrique-zarate)
119119
Jaume Montané (@jaumemy)
120+
Federico Zuccolo (@fzuccolo)

dictionaries/library_uu.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Ellinghouse
2+
Jack

library/uu.po

+45-9
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,32 @@
11
# Copyright (C) 2001-2020, Python Software Foundation
22
# This file is distributed under the same license as the Python package.
3-
# Maintained by the python-doc-es workteam.
3+
# Maintained by the python-doc-es workteam.
44
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
55
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
66
#
7-
#, fuzzy
87
msgid ""
98
msgstr ""
109
"Project-Id-Version: Python 3.8\n"
1110
"Report-Msgid-Bugs-To: \n"
1211
"POT-Creation-Date: 2019-05-06 11:59-0400\n"
13-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
12+
"PO-Revision-Date: 2020-11-19 11:07-0300\n"
1513
"Language-Team: python-doc-es\n"
1614
"MIME-Version: 1.0\n"
1715
"Content-Type: text/plain; charset=UTF-8\n"
1816
"Content-Transfer-Encoding: 8bit\n"
17+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
18+
"Last-Translator: Federico Zuccolo <federico.zuccolo@gmail.com>\n"
19+
"Language: es\n"
20+
"X-Generator: Poedit 2.4.2\n"
1921

22+
# La codificación 'uuencode' figura como 'UUEncode' en la Wikipedia en español.
2023
#: ../Doc/library/uu.rst:2
2124
msgid ":mod:`uu` --- Encode and decode uuencode files"
22-
msgstr ""
25+
msgstr ":mod:`uu` --- Codifica y decodifica archivos UUEncode"
2326

2427
#: ../Doc/library/uu.rst:9
2528
msgid "**Source code:** :source:`Lib/uu.py`"
26-
msgstr ""
29+
msgstr "**Código fuente:** :source:`Lib/uu.py`"
2730

2831
#: ../Doc/library/uu.rst:13
2932
msgid ""
@@ -36,15 +39,27 @@ msgid ""
3639
"interface is deprecated; it's better for the caller to open the file itself, "
3740
"and be sure that, when required, the mode is ``'rb'`` or ``'wb'`` on Windows."
3841
msgstr ""
42+
"Este módulo codifica y decodifica archivos en formato UUEncode, permitiendo "
43+
"la transmisión de datos binarios arbitrarios sobre conexiones de solo "
44+
"ASCII. Allí donde se espera un archivo como argumento, los métodos aceptan "
45+
"un objeto similar a un archivo. Por compatibilidad con versiones "
46+
"anteriores, una cadena que contenga un nombre de ruta también es aceptada, y "
47+
"el archivo correspondiente será abierto para lectura y escritura; el nombre "
48+
"de ruta ``'-'`` es entendido como la entrada o salida estándar. Sin "
49+
"embargo, esta interface es obsoleta; es mejor que el invocador abra el "
50+
"archivo por sí mismo y asegurarse de que, cuando se requiera, el modo sea "
51+
"``'rb'`` o ``'wb'`` en Windows."
3952

4053
#: ../Doc/library/uu.rst:26
4154
msgid ""
4255
"This code was contributed by Lance Ellinghouse, and modified by Jack Jansen."
4356
msgstr ""
57+
"Este código fue contribuido por Lance Ellinghouse y modificado por Jack "
58+
"Jansen."
4459

4560
#: ../Doc/library/uu.rst:28
4661
msgid "The :mod:`uu` module defines the following functions:"
47-
msgstr ""
62+
msgstr "El módulo :mod:`uu` define las siguientes funciones:"
4863

4964
#: ../Doc/library/uu.rst:33
5065
msgid ""
@@ -54,10 +69,16 @@ msgid ""
5469
"and ``0o666`` respectively. If *backtick* is true, zeros are represented by "
5570
"``'`'`` instead of spaces."
5671
msgstr ""
72+
"Codificar con UUEncode el archivo *in_file* en el archivo *out_file*. El "
73+
"archivo codificado con UUEncode tendrá un encabezado especificando *name* y "
74+
"*mode* como valores por defecto para los resultados de la decodificación del "
75+
"archivo. Los valores por defecto iniciales son tomados de *in_file*, o "
76+
"``'-'`` y ``0o666`` respectivamente. Si *backtick* es verdadero, los ceros "
77+
"son representados por ``'`'`` en lugar de espacios."
5778

5879
#: ../Doc/library/uu.rst:39
5980
msgid "Added the *backtick* parameter."
60-
msgstr ""
81+
msgstr "Agregado el parámetro *backtick*."
6182

6283
#: ../Doc/library/uu.rst:45
6384
msgid ""
@@ -67,26 +88,41 @@ msgid ""
6788
"*mode* are taken from the uuencode header. However, if the file specified "
6889
"in the header already exists, a :exc:`uu.Error` is raised."
6990
msgstr ""
91+
"Esta invocación decodifica el archivo codificado en UUEncode *in_file* y "
92+
"coloca el resultado en el archivo *out_file*. Si *out_file* es un nombre de "
93+
"ruta, *mode* es usado para establecer los bits de permiso si el archivo debe "
94+
"ser creado. Valores por defecto para *out_file* y *mode* se toman del "
95+
"encabezado UUEncode. Sin embargo, si el archivo especificado en el "
96+
"encabezado existe, se genera un :exc:`uu.Error`."
7097

7198
#: ../Doc/library/uu.rst:51
7299
msgid ""
73100
":func:`decode` may print a warning to standard error if the input was "
74101
"produced by an incorrect uuencoder and Python could recover from that "
75102
"error. Setting *quiet* to a true value silences this warning."
76103
msgstr ""
104+
":func:`decode` puede imprimir una advertencia a error estándar si la entrada "
105+
"fue producida por un UUEncoder incorrecto y Python pudo recobrarse de ese "
106+
"error. Si se establece *quiet* a un valor verdadero se suprime esta "
107+
"advertencia."
77108

78109
#: ../Doc/library/uu.rst:58
79110
msgid ""
80111
"Subclass of :exc:`Exception`, this can be raised by :func:`uu.decode` under "
81112
"various situations, such as described above, but also including a badly "
82113
"formatted header, or truncated input file."
83114
msgstr ""
115+
"Subclase de :exc:`Exception`, esta puede ser generada por :func:`uu.decode` "
116+
"en diversas situaciones, como las descriptas arriba, pero también si se "
117+
"incluye un encabezado mal formado o un archivo de entrada truncado."
84118

85119
#: ../Doc/library/uu.rst:65
86120
msgid "Module :mod:`binascii`"
87-
msgstr ""
121+
msgstr "Módulo :mod:`binascii`"
88122

89123
#: ../Doc/library/uu.rst:66
90124
msgid ""
91125
"Support module containing ASCII-to-binary and binary-to-ASCII conversions."
92126
msgstr ""
127+
"Módulo de soporte que contiene conversiones de ASCII a binario y de binario "
128+
"a ASCII."

0 commit comments

Comments
 (0)