Skip to content

Commit 33ca912

Browse files
committed
Progreso hasta el 75% aprox.
1 parent 9b5557b commit 33ca912

File tree

1 file changed

+53
-13
lines changed

1 file changed

+53
-13
lines changed

library/stdtypes.po

Lines changed: 53 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
14-
"PO-Revision-Date: 2020-06-11 23:44+0100\n"
14+
"PO-Revision-Date: 2020-06-16 20:47+0100\n"
1515
"Last-Translator: Juan Ignacio Rodríguez de León <euribates@gmail.com>\n"
1616
"Language-Team: python-doc-es\n"
1717
"MIME-Version: 1.0\n"
@@ -5655,56 +5655,70 @@ msgid ""
56555655
"is not copied. Supported casts are 1D -> C-:term:`contiguous` and C-"
56565656
"contiguous -> 1D."
56575657
msgstr ""
5658+
"Transforma el formato o el tamaño de un objeto *memoryview*. El parámetro "
5659+
"*shape* por defecto vale ``[byte_length//new_itemsize]``, lo que significa "
5660+
"que el resultado será unidimensional. El valor de retorno es un nuevo objeto "
5661+
"de tipo *memoryview*, pero el buffer en sí no se copia. Las transformaciones "
5662+
"pueden ser 1D -> C-:term:`contiguo` y C-contiguo -> 1D."
56585663

56595664
#: ../Doc/library/stdtypes.rst:3752
56605665
msgid ""
56615666
"The destination format is restricted to a single element native format in :"
56625667
"mod:`struct` syntax. One of the formats must be a byte format ('B', 'b' or "
56635668
"'c'). The byte length of the result must be the same as the original length."
56645669
msgstr ""
5670+
"El formato de destino está restringido a un único elemento de formato nativo "
5671+
"en la sintaxis de :mod:`struct`. Uno de los formatos debe ser un formato de "
5672+
"byte (``'B'``, ``'b'`` o ``'c'``). La longitud en bytes del resultado debe "
5673+
"coincidir con la longitud original."
56655674

56665675
#: ../Doc/library/stdtypes.rst:3757
56675676
msgid "Cast 1D/long to 1D/unsigned bytes::"
5668-
msgstr ""
5677+
msgstr "Transforma de ``1D/long`` a bytes ``1D/unsigned``::"
56695678

56705679
#: ../Doc/library/stdtypes.rst:3780
56715680
msgid "Cast 1D/unsigned bytes to 1D/char::"
5672-
msgstr ""
5681+
msgstr "Transforma de ``1D/unsigned`` a bytes ``1D/char``::"
56735682

56745683
#: ../Doc/library/stdtypes.rst:3793
56755684
msgid "Cast 1D/bytes to 3D/ints to 1D/signed char::"
5676-
msgstr ""
5685+
msgstr "Transforma de ``1D/bytes`` a ``3D/ints`` a caracteres ``1D/signed``::"
56775686

56785687
#: ../Doc/library/stdtypes.rst:3819
56795688
msgid "Cast 1D/unsigned long to 2D/unsigned long::"
5680-
msgstr ""
5689+
msgstr "Transforma de *long* ``1D/unsigned`` a *long* ``2D/unsigned``::"
56815690

56825691
#: ../Doc/library/stdtypes.rst:3833
56835692
msgid "The source format is no longer restricted when casting to a byte view."
56845693
msgstr ""
5694+
"El formato de origen ya no está restringido cuando se transforma a una vista "
5695+
"de bytes."
56855696

56865697
#: ../Doc/library/stdtypes.rst:3836
56875698
msgid "There are also several readonly attributes available:"
5688-
msgstr ""
5699+
msgstr "Hay disponibles varios atributos de solo lectura:"
56895700

56905701
#: ../Doc/library/stdtypes.rst:3840
56915702
msgid "The underlying object of the memoryview::"
5692-
msgstr ""
5703+
msgstr "El objeto subyacente del *memoryview*::"
56935704

56945705
#: ../Doc/library/stdtypes.rst:3851
56955706
msgid ""
56965707
"``nbytes == product(shape) * itemsize == len(m.tobytes())``. This is the "
56975708
"amount of space in bytes that the array would use in a contiguous "
56985709
"representation. It is not necessarily equal to ``len(m)``::"
56995710
msgstr ""
5711+
"``nbytes == product(shape) * itemsize == len(m.tobytes())``. Este es el "
5712+
"espacio, medido en bytes, que usará el *array* en una representación "
5713+
"continua. No tiene que ser necesariamente igual a ``len(m)``::"
57005714

57015715
#: ../Doc/library/stdtypes.rst:3870
57025716
msgid "Multi-dimensional arrays::"
5703-
msgstr ""
5717+
msgstr "Matrices de múltiples dimensiones"
57045718

57055719
#: ../Doc/library/stdtypes.rst:3887
57065720
msgid "A bool indicating whether the memory is read only."
5707-
msgstr ""
5721+
msgstr "Un booleano que indica si la memoria es de solo lectura."
57085722

57095723
#: ../Doc/library/stdtypes.rst:3891
57105724
msgid ""
@@ -5713,58 +5727,77 @@ msgid ""
57135727
"arbitrary format strings, but some methods (e.g. :meth:`tolist`) are "
57145728
"restricted to native single element formats."
57155729
msgstr ""
5730+
"Una cadena de caracteres que contiene el formato (En el estilo del módulo :"
5731+
"mod:`struct`) para cada elemento de la vista. Un objeto *memoryview* se "
5732+
"puede crear a partir de un exportador con textos de formato arbitrarios, "
5733+
"pero algunos métodos (Como, por ejemplo, :meth:`tolist`) están restringidos "
5734+
"a usar formatos de elementos nativos sencillos."
57165735

57175736
#: ../Doc/library/stdtypes.rst:3896
57185737
msgid ""
57195738
"format ``'B'`` is now handled according to the struct module syntax. This "
57205739
"means that ``memoryview(b'abc')[0] == b'abc'[0] == 97``."
57215740
msgstr ""
5741+
"El formato ``'B'`` se gestiona ahora de acuerdo a la sintaxis descrita en el "
5742+
"módulo ``struct``. Esto significa que ``memoryview(b'abc')[0] == b'abc'[0] "
5743+
"== 97``."
57225744

57235745
#: ../Doc/library/stdtypes.rst:3902
57245746
msgid "The size in bytes of each element of the memoryview::"
5725-
msgstr ""
5747+
msgstr "El tamaño en bytes de cada elemento del objeto *memoryview*::"
57265748

57275749
#: ../Doc/library/stdtypes.rst:3915
57285750
msgid ""
57295751
"An integer indicating how many dimensions of a multi-dimensional array the "
57305752
"memory represents."
57315753
msgstr ""
5754+
"Un número entero que indica cuantas dimensiones de una matriz multi-"
5755+
"dimensional representa la memoria."
57325756

57335757
#: ../Doc/library/stdtypes.rst:3920
57345758
msgid ""
57355759
"A tuple of integers the length of :attr:`ndim` giving the shape of the "
57365760
"memory as an N-dimensional array."
57375761
msgstr ""
5762+
"Una tupla de números enteros, de longitud :attr:`ndim`, que indica la forma "
5763+
"de la memoria en una matriz de *N* dimensiones."
57385764

57395765
#: ../Doc/library/stdtypes.rst:3923 ../Doc/library/stdtypes.rst:3931
57405766
msgid "An empty tuple instead of ``None`` when ndim = 0."
5741-
msgstr ""
5767+
msgstr "Una tupla vacía, en vez de ``None``, cuando ``ndom = 0``."
57425768

57435769
#: ../Doc/library/stdtypes.rst:3928
57445770
msgid ""
57455771
"A tuple of integers the length of :attr:`ndim` giving the size in bytes to "
57465772
"access each element for each dimension of the array."
57475773
msgstr ""
5774+
"Una tupla de números enteros, de longitud :attr:`ndim`, que indica el tamaño "
5775+
"en bytes para acceder a cada dimensión de la matriz."
57485776

57495777
#: ../Doc/library/stdtypes.rst:3936
57505778
msgid "Used internally for PIL-style arrays. The value is informational only."
57515779
msgstr ""
5780+
"De uso interno para las matrices estilo *PIL*. El valor es solo informativo."
57525781

57535782
#: ../Doc/library/stdtypes.rst:3940
57545783
msgid "A bool indicating whether the memory is C-:term:`contiguous`."
57555784
msgstr ""
5785+
"Un booleano que indica si la memoria es :term:`<contigua>contiguo` al estilo "
5786+
"*C*."
57565787

57575788
#: ../Doc/library/stdtypes.rst:3946
57585789
msgid "A bool indicating whether the memory is Fortran :term:`contiguous`."
57595790
msgstr ""
5791+
"Un booleano que indica si la memoria es :term:`<contigua>contiguo` al estilo "
5792+
"Fortran."
57605793

57615794
#: ../Doc/library/stdtypes.rst:3952
57625795
msgid "A bool indicating whether the memory is :term:`contiguous`."
5763-
msgstr ""
5796+
msgstr "Un booleano que indica si la memoria es :term:`<contigua>contiguo`."
57645797

57655798
#: ../Doc/library/stdtypes.rst:3960
57665799
msgid "Set Types --- :class:`set`, :class:`frozenset`"
5767-
msgstr ""
5800+
msgstr "Conjuntos --- :class:`set`, :class:`frozenset`"
57685801

57695802
#: ../Doc/library/stdtypes.rst:3964
57705803
msgid ""
@@ -5775,6 +5808,13 @@ msgid ""
57755808
"in :class:`dict`, :class:`list`, and :class:`tuple` classes, and the :mod:"
57765809
"`collections` module.)"
57775810
msgstr ""
5811+
"Un objeto de tipo :dfn:`conjunto` o :dfn:`set` es una colección no ordenada "
5812+
"de distintos objetos :term:`<hashables>hashable`. Los casos de uso común "
5813+
"incluyen comprobar la pertenencia al conjunto de un elemento, eliminar "
5814+
"duplicados de una secuencia y realizar operaciones matemáticas como la "
5815+
"intersección, la unión, la diferencia o la diferencia simétrica (Para otros "
5816+
"tipos de contenedores véanse las clases básicas :class:`dict`, :class:"
5817+
"`list`, y :class:`tuple`, así como el módulo :mod:`collections`)."
57785818

57795819
#: ../Doc/library/stdtypes.rst:3971
57805820
msgid ""

0 commit comments

Comments
 (0)