Skip to content

Commit a7c6d1b

Browse files
committed
powrap
1 parent 8a3651b commit a7c6d1b

File tree

1 file changed

+39
-40
lines changed

1 file changed

+39
-40
lines changed

library/fileinput.po

+39-40
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,20 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2021-10-16 21:42+0200\n"
14-
"PO-Revision-Date: 2020-08-14 15:10-0300\n"
14+
"PO-Revision-Date: 2021-12-29 10:44-0300\n"
1515
"Last-Translator: \n"
1616
"Language: es_AR\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.9.1\n"
23+
"X-Generator: Poedit 3.0\n"
2324

2425
#: ../Doc/library/fileinput.rst:2
2526
msgid ":mod:`fileinput` --- Iterate over lines from multiple input streams"
26-
msgstr ""
27-
":mod:`fileinput` --- Iterar sobre líneas de múltiples flujos de entrada"
27+
msgstr ":mod:`fileinput` --- Iterar sobre líneas de múltiples flujos de entrada"
2828

2929
#: ../Doc/library/fileinput.rst:10
3030
msgid "**Source code:** :source:`Lib/fileinput.py`"
@@ -33,8 +33,8 @@ msgstr "**Código fuente:** :source:`Lib/fileinput.py`"
3333
#: ../Doc/library/fileinput.rst:14
3434
msgid ""
3535
"This module implements a helper class and functions to quickly write a loop "
36-
"over standard input or a list of files. If you just want to read or write "
37-
"one file see :func:`open`."
36+
"over standard input or a list of files. If you just want to read or write one "
37+
"file see :func:`open`."
3838
msgstr ""
3939
"Este módulo implementa una clase auxiliar y funciones para escribir "
4040
"rápidamente un bucle sobre una entrada estándar o una lista de archivos. Si "
@@ -49,9 +49,8 @@ msgid ""
4949
"This iterates over the lines of all files listed in ``sys.argv[1:]``, "
5050
"defaulting to ``sys.stdin`` if the list is empty. If a filename is ``'-'``, "
5151
"it is also replaced by ``sys.stdin`` and the optional arguments *mode* and "
52-
"*openhook* are ignored. To specify an alternative list of filenames, pass "
53-
"it as the first argument to :func:`.input`. A single file name is also "
54-
"allowed."
52+
"*openhook* are ignored. To specify an alternative list of filenames, pass it "
53+
"as the first argument to :func:`.input`. A single file name is also allowed."
5554
msgstr ""
5655
"Esto itera sobre las líneas de todos los archivos enumerados en ``sys."
5756
"argv[1:]``, por defecto a ``sys.stdin``si la lista está vacía. Si un nombre "
@@ -89,12 +88,12 @@ msgstr ""
8988
#: ../Doc/library/fileinput.rst:42
9089
msgid ""
9190
"Empty files are opened and immediately closed; the only time their presence "
92-
"in the list of filenames is noticeable at all is when the last file opened "
93-
"is empty."
91+
"in the list of filenames is noticeable at all is when the last file opened is "
92+
"empty."
9493
msgstr ""
95-
"Los archivos vacíos se abren e inmediatamente se cierran; la única vez que "
96-
"su presencia en la lista de nombres de archivo es notable es cuando el "
97-
"último archivo abierto está vacío."
94+
"Los archivos vacíos se abren e inmediatamente se cierran; la única vez que su "
95+
"presencia en la lista de nombres de archivo es notable es cuando el último "
96+
"archivo abierto está vacío."
9897

9998
#: ../Doc/library/fileinput.rst:46
10099
msgid ""
@@ -109,17 +108,17 @@ msgid ""
109108
"You can control how files are opened by providing an opening hook via the "
110109
"*openhook* parameter to :func:`fileinput.input` or :class:`FileInput()`. The "
111110
"hook must be a function that takes two arguments, *filename* and *mode*, and "
112-
"returns an accordingly opened file-like object. If *encoding* and/or "
113-
"*errors* are specified, they will be passed to the hook as additional "
114-
"keyword arguments. This module provides a :func:`hook_compressed` to support "
111+
"returns an accordingly opened file-like object. If *encoding* and/or *errors* "
112+
"are specified, they will be passed to the hook as additional keyword "
113+
"arguments. This module provides a :func:`hook_compressed` to support "
115114
"compressed files."
116115
msgstr ""
117116
"Puede controlar cómo se abren los archivos proporcionando un enlace de "
118-
"apertura a través del parámetro *openhook* a :func:`fileinput.input` o :"
119-
"class:`FileInput()`. El enlace debe ser una función que tome dos argumentos, "
120-
"*filename* y *mode*, y en consecuencia retorna un objeto similar a un "
121-
"archivo abierto. Si *encoding* y/o *errors* son especificados, serán pasados "
122-
"al enlace como argumentos de palabras clave adicionales. Este módulo "
117+
"apertura a través del parámetro *openhook* a :func:`fileinput.input` o :class:"
118+
"`FileInput()`. El enlace debe ser una función que tome dos argumentos, "
119+
"*filename* y *mode*, y en consecuencia retorna un objeto similar a un archivo "
120+
"abierto. Si *encoding* y/o *errors* son especificados, serán pasados al "
121+
"enlace como argumentos de palabras clave adicionales. Este módulo "
123122
"proporciona :func:`hook_compressed` para admitir archivos comprimidos."
124123

125124
#: ../Doc/library/fileinput.rst:56
@@ -133,9 +132,9 @@ msgid ""
133132
"to use during iteration. The parameters to this function will be passed "
134133
"along to the constructor of the :class:`FileInput` class."
135134
msgstr ""
136-
"Crea una instancia de la clase :class:`FileInput`. La instancia se usará "
137-
"como estado global para las funciones de este módulo y también se volverá a "
138-
"usar durante la iteración. Los parámetros de esta función se pasarán al "
135+
"Crea una instancia de la clase :class:`FileInput`. La instancia se usará como "
136+
"estado global para las funciones de este módulo y también se volverá a usar "
137+
"durante la iteración. Los parámetros de esta función se pasarán al "
139138
"constructor de la clase :class:`FileInput`."
140139

141140
#: ../Doc/library/fileinput.rst:66
@@ -241,8 +240,8 @@ msgstr ""
241240
"contarán para el recuento de líneas acumuladas. El nombre del archivo no se "
242241
"cambia hasta que se haya leído la primera línea del siguiente archivo. Antes "
243242
"de que se haya leído la primera línea, esta función no tiene efecto; no se "
244-
"puede usar para omitir el primer archivo. Después de leer la última línea "
245-
"del último archivo, esta función no tiene efecto."
243+
"puede usar para omitir el primer archivo. Después de leer la última línea del "
244+
"último archivo, esta función no tiene efecto."
246245

247246
#: ../Doc/library/fileinput.rst:138
248247
msgid "Close the sequence."
@@ -260,12 +259,12 @@ msgstr ""
260259
msgid ""
261260
"Class :class:`FileInput` is the implementation; its methods :meth:"
262261
"`filename`, :meth:`fileno`, :meth:`lineno`, :meth:`filelineno`, :meth:"
263-
"`isfirstline`, :meth:`isstdin`, :meth:`nextfile` and :meth:`close` "
264-
"correspond to the functions of the same name in the module. In addition it "
265-
"has a :meth:`~io.TextIOBase.readline` method which returns the next input "
266-
"line, and a :meth:`__getitem__` method which implements the sequence "
267-
"behavior. The sequence must be accessed in strictly sequential order; random "
268-
"access and :meth:`~io.TextIOBase.readline` cannot be mixed."
262+
"`isfirstline`, :meth:`isstdin`, :meth:`nextfile` and :meth:`close` correspond "
263+
"to the functions of the same name in the module. In addition it has a :meth:"
264+
"`~io.TextIOBase.readline` method which returns the next input line, and a :"
265+
"meth:`__getitem__` method which implements the sequence behavior. The "
266+
"sequence must be accessed in strictly sequential order; random access and :"
267+
"meth:`~io.TextIOBase.readline` cannot be mixed."
269268
msgstr ""
270269
"La Clase :class:`FileInput` es la implementación; sus métodos :meth:"
271270
"`filename`, :meth:`fileno`, :meth:`lineno`, :meth:`filelineno`, :meth:"
@@ -334,10 +333,10 @@ msgid ""
334333
"input file (if a file of the same name as the backup file already exists, it "
335334
"will be replaced silently). This makes it possible to write a filter that "
336335
"rewrites its input file in place. If the *backup* parameter is given "
337-
"(typically as ``backup='.<some extension>'``), it specifies the extension "
338-
"for the backup file, and the backup file remains around; by default, the "
339-
"extension is ``'.bak'`` and it is deleted when the output file is closed. "
340-
"In-place filtering is disabled when standard input is read."
336+
"(typically as ``backup='.<some extension>'``), it specifies the extension for "
337+
"the backup file, and the backup file remains around; by default, the "
338+
"extension is ``'.bak'`` and it is deleted when the output file is closed. In-"
339+
"place filtering is disabled when standard input is read."
341340
msgstr ""
342341
"**Filtrado al instante opcional:** si el argumento de la palabra clave "
343342
"``inplace=True`` se pasa a :func:`fileinput.input` o al constructor :class:"
@@ -365,9 +364,9 @@ msgid ""
365364
msgstr ""
366365
"Abre de forma transparente archivos comprimidos con *gzip* y *bzip2* "
367366
"(reconocidos por las extensiones ``'.gz'`` and ``'.bz2'``) utilizando los "
368-
"módulos :mod:`gzip` y :mod:`bz2`. Si la extensión del nombre de archivo no "
369-
"es ``'.gz'`` or ``'.bz2'``, el archivo se abre normalmente (es decir, "
370-
"usando :func:`open` sin descompresión)."
367+
"módulos :mod:`gzip` y :mod:`bz2`. Si la extensión del nombre de archivo no es "
368+
"``'.gz'`` or ``'.bz2'``, el archivo se abre normalmente (es decir, usando :"
369+
"func:`open` sin descompresión)."
371370

372371
#: ../Doc/library/fileinput.rst:208
373372
msgid ""

0 commit comments

Comments
 (0)