1
1
# Copyright (C) 2001-2020, Python Software Foundation
2
2
# 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.
4
4
# docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
5
5
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get the list of volunteers
6
6
#
7
- #, fuzzy
8
7
msgid ""
9
8
msgstr ""
10
9
"Project-Id-Version : Python 3.8\n "
11
10
"Report-Msgid-Bugs-To : \n "
12
11
"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 "
15
13
"Language-Team : python-doc-es\n "
16
14
"MIME-Version : 1.0\n "
17
15
"Content-Type : text/plain; charset=UTF-8\n "
18
16
"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 "
19
21
20
22
#: ../Doc/library/sndhdr.rst:2
21
23
msgid ":mod:`sndhdr` --- Determine type of sound file"
22
- msgstr ""
24
+ msgstr ":mod:`sndhdr` --- Determinar el tipo de archivo de sonido "
23
25
24
26
#: ../Doc/library/sndhdr.rst:10
25
27
msgid "**Source code:** :source:`Lib/sndhdr.py`"
26
- msgstr ""
28
+ msgstr "**Código fuente:** :source:`Lib/sndhdr.py` "
27
29
28
30
#: ../Doc/library/sndhdr.rst:18
29
31
msgid ""
@@ -42,21 +44,42 @@ msgid ""
42
44
"the tuple, *bits_per_sample*, will either be the sample size in bits or "
43
45
"``'A'`` for A-LAW or ``'U'`` for u-LAW."
44
46
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
+ "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."
45
61
46
62
#: ../Doc/library/sndhdr.rst:35
47
63
msgid ""
48
64
"Determines the type of sound data stored in the file *filename* using :func:"
49
65
"`whathdr`. If it succeeds, returns a namedtuple as described above, "
50
66
"otherwise ``None`` is returned."
51
67
msgstr ""
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``."
52
71
53
72
#: ../Doc/library/sndhdr.rst:39 ../Doc/library/sndhdr.rst:49
54
73
msgid "Result changed from a tuple to a namedtuple."
55
- msgstr ""
74
+ msgstr "El resultado cambió de una tupla a una *namedtuple*. "
56
75
57
76
#: ../Doc/library/sndhdr.rst:45
58
77
msgid ""
59
78
"Determines the type of sound data stored in a file based on the file "
60
79
"header. The name of the file is given by *filename*. This function returns "
61
80
"a namedtuple as described above on success, or ``None``."
62
81
msgstr ""
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