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
87msgid ""
98msgstr ""
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-14 11:58-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 : \n "
19+ "Language : en\n "
20+ "X-Generator : Poedit 2.4.2\n "
1921
2022#: ../Doc/library/sndhdr.rst:2
2123msgid ":mod:`sndhdr` --- Determine type of sound file"
22- msgstr ""
24+ msgstr ":mod:`sndhdr` --- Determinar el tipo de archivo de sonido "
2325
2426#: ../Doc/library/sndhdr.rst:10
2527msgid "**Source code:** :source:`Lib/sndhdr.py`"
26- msgstr ""
28+ msgstr "**Código fuente:** :source:`Lib/sndhdr.py` "
2729
2830#: ../Doc/library/sndhdr.rst:18
2931msgid ""
@@ -42,21 +44,42 @@ msgid ""
4244"the tuple, *bits_per_sample*, will either be the sample size in bits or "
4345"``'A'`` for A-LAW or ``'U'`` for u-LAW."
4446msgstr ""
47+ "El :mod:`sndhdr` proporciona funciones de utilidad que intentan determinar "
48+ "el tipo de datos de sonido que hay en un archivo. Cuando estas funciones son "
49+ "capaces de determinar qué tipo de datos sonoros se almacenan en un archivo, "
50+ "retornan un :func:`~collections.namedtuple`, que contiene cinco atributos: "
51+ "(``filetype``, ``framerate``, ``nchannels``, ``nframes``, ``sampwidth``). El "
52+ "valor de *type* indica el tipo de datos y será una de las cadenas siguientes "
53+ "cadenas: ``'aifc'``, ``'aiff'``, ``'au'``, ``'hcom'``, ``'sndr'``, "
54+ "``'sndt'``, ``'voc'``, ``'wav'``, ``'8svx'``, ``'sb'``, ``'ub'``, o "
55+ "``'ul'``. El *sampling_rate* será el valor actual o ``0`` si es desconocido "
56+ "o difícil de decodificar. De forma similar, *channels* será el número de "
57+ "canales o ``0`` si no se puede determinar o si el valor es difícil de "
58+ "decodificar. El valor de *frames* será el número de fotogramas o ``-1``. El "
59+ "último elemento de la tupla, *bits_per_sample*, será el tamaño de la muestra "
60+ "en bits, ``'A'`` para A-LAW o ``'U'`` para u-LAW."
4561
4662#: ../Doc/library/sndhdr.rst:35
4763msgid ""
4864"Determines the type of sound data stored in the file *filename* using :func:"
4965"`whathdr`. If it succeeds, returns a namedtuple as described above, "
5066"otherwise ``None`` is returned."
5167msgstr ""
68+ "Determina el tipo de datos de sonido almacenados en el archivo *filename* "
69+ "usando :func:`whathdr`. Si se tiene éxito, retorna una namedtuple como se "
70+ "describe arriba, de lo contrario retorna ``None``."
5271
5372#: ../Doc/library/sndhdr.rst:39 ../Doc/library/sndhdr.rst:49
5473msgid "Result changed from a tuple to a namedtuple."
55- msgstr ""
74+ msgstr "El resultado cambió de una tupla a una *namedtuple*. "
5675
5776#: ../Doc/library/sndhdr.rst:45
5877msgid ""
5978"Determines the type of sound data stored in a file based on the file "
6079"header. The name of the file is given by *filename*. This function returns "
6180"a namedtuple as described above on success, or ``None``."
6281msgstr ""
82+ "Determina el tipo de dato de sonido almacenado en un archivo basado en el "
83+ "encabezado del archivo. El nombre del archivo viene dado por *filename*. "
84+ "Esta función retorna una *namedtuple* como se ha descrito anteriormente en "
85+ "caso de éxito o ``None``."
0 commit comments