Skip to content

Traducido archivo library/sndhdr #1142

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 13 commits into from
Nov 21, 2020
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Traducido archivo library/sndhdr
  • Loading branch information
enrique-zarate-itti committed Nov 12, 2020
commit 8a3a6e0d537ff12911c50326783121db9ef1001d
2 changes: 1 addition & 1 deletion TRANSLATORS
Original file line number Diff line number Diff line change
Expand Up @@ -114,5 +114,5 @@ Alan Verdugo Muñoz (@alanverdugo)
Alcides Rivarola (@alcides29)
David Silva (@dvidsilva)
Ricardo Rodríguez (@ricrogz)
Enrique Zárate (enrique-zarate)
Enrique Zárate (@enrique-zarate)
Jaume Montané (@jaumemy)
34 changes: 17 additions & 17 deletions library/sndhdr.po
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ 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-11-10 23:04-0300\n"
"PO-Revision-Date: 2020-11-12 20:42-0300\n"
"Language-Team: python-doc-es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Last-Translator: \n"
"Language: en\n"
"X-Generator: Poedit 2.4.1\n"
"X-Generator: Poedit 2.4.2\n"

#: ../Doc/library/sndhdr.rst:2
msgid ":mod:`sndhdr` --- Determine type of sound file"
Expand All @@ -40,24 +40,24 @@ msgid ""
"will be either the actual value or ``0`` if unknown or difficult to decode. "
"Similarly, *channels* will be either the number of channels or ``0`` if it "
"cannot be determined or if the value is difficult to decode. The value for "
"*frames* will be either the number of frames or ``-1``. The last item in "
"the tuple, *bits_per_sample*, will either be the sample size in bits or "
"``'A'`` for A-LAW or ``'U'`` for u-LAW."
"*frames* will be either the number of frames or ``-1``. The last item in the "
"tuple, *bits_per_sample*, will either be the sample size in bits or ``'A'`` "
"for A-LAW or ``'U'`` for u-LAW."
msgstr ""
"El :mod:`sndhdr` proporciona funciones de utilidad que intentan determinar "
"el tipo de datos de sonido que hay en un archivo. Cuando estas funciones son "
"El :mod:`sndhdr` proporciona funciones de utilidad que intentan determinar el "
"tipo de datos de sonido que hay en un archivo. Cuando estas funciones son "
"capaces de determinar qué tipo de datos sonoros se almacenan en un archivo, "
"devuelven un :func:`~collections.namedtuple`, que contiene cinco atributos: "
"(``filetype``, ``framerate``, ``nchannels``, ``nframes``, ``sampwidth``). El "
"valor de *type* indica el tipo de datos y será una de las cadenas siguientes "
"cadenas: ``'aifc'``, ``'aiff'``, ``'au'``, ``'hcom'``, ``'sndr'``, "
"``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``, ``'sb'``, ``'ub'``, o "
"``'ul'``. El *sampling_rate* será el valor actual o ``0`` si es desconocido "
"o difícil de decodificar. De forma similar, *channels* será el número de "
"canales o ``0`` si no se puede determinar o si el valor es difícil de "
"decodificar. El valor de *frames* será el número de fotogramas o ``-1``. "
"El último elemento de la tupla, *bits_per_sample*, será el tamaño de "
"la muestra en bits, ``'A'`` para A-LAW o ``'U'`` para u-LAW."
"``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``, ``'sb'``, ``'ub'``, o ``'ul'``. "
"El *sampling_rate* será el valor actual o ``0`` si es desconocido o difícil "
"de decodificar. De forma similar, *channels* será el número de canales o "
"``0`` si no se puede determinar o si el valor es difícil de decodificar. El "
"valor de *frames* será el número de fotogramas o ``-1``. El último elemento "
"de la tupla, *bits_per_sample*, será el tamaño de la muestra en bits, ``'A'`` "
"para A-LAW o ``'U'`` para u-LAW."

#: ../Doc/library/sndhdr.rst:35
msgid ""
Expand All @@ -75,9 +75,9 @@ msgstr "El resultado cambió de una tupla a una *namedtuple*."

#: ../Doc/library/sndhdr.rst:45
msgid ""
"Determines the type of sound data stored in a file based on the file "
"header. The name of the file is given by *filename*. This function returns "
"a namedtuple as described above on success, or ``None``."
"Determines the type of sound data stored in a file based on the file header. "
"The name of the file is given by *filename*. This function returns a "
"namedtuple as described above on success, or ``None``."
msgstr ""
"Determina el tipo de dato de sonido almacenado en un archivo basado en el "
"encabezado del archivo. El nombre del archivo viene dado por *filename*. Esta "
Expand Down