Skip to content

Commit 244124b

Browse files
Traducido archivo library/sndhdr
1 parent 7e79bcf commit 244124b

File tree

1 file changed

+30
-7
lines changed

1 file changed

+30
-7
lines changed

library/sndhdr.po

Lines changed: 30 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,31 @@
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-10 23:04-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.1\n"
1921

2022
#: ../Doc/library/sndhdr.rst:2
2123
msgid ":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
2527
msgid "**Source code:** :source:`Lib/sndhdr.py`"
26-
msgstr ""
28+
msgstr "**Código fuente:** :source:`Lib/sndhdr.py`"
2729

2830
#: ../Doc/library/sndhdr.rst:18
2931
msgid ""
@@ -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."
4446
msgstr ""
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+
"devuelven 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á o 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á o el número de fotogramas o ``-1``. "
59+
"El último elemento de la tupla, *bits_per_sample*, será o bien el tamaño de "
60+
"la muestra en bits, o ``'A'`` para A-LAW o ``'U'`` para u-LAW."
4561

4662
#: ../Doc/library/sndhdr.rst:35
4763
msgid ""
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."
5167
msgstr ""
68+
"Determina el tipo de datos de sonido almacenados en el archivo *filename* "
69+
"usando :func:`whathdr`. Si se tiene éxito, devuelve un namedtuple como se "
70+
"describe arriba, de lo contrario se devuelve ``None``."
5271

5372
#: ../Doc/library/sndhdr.rst:39 ../Doc/library/sndhdr.rst:49
5473
msgid "Result changed from a tuple to a namedtuple."
55-
msgstr ""
74+
msgstr "El resultado cambió de *tuple* a *namedtuple*."
5675

5776
#: ../Doc/library/sndhdr.rst:45
5877
msgid ""
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``."
6281
msgstr ""
82+
"Determina el tipo de dato de sonido almacenado en un archivo basado en el "
83+
"archivo de cabecera. El nombre del archivo viene dado por *filename*. Esta "
84+
"función devuelve una *namedtuple* como se ha descrito anteriormente en caso "
85+
"de éxito, o ``None``."

0 commit comments

Comments
 (0)