Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f336a0c

Browse files
committed
Up to 24%
1 parent 9e28ba1 commit f336a0c

File tree

1 file changed

+70
-30
lines changed

1 file changed

+70
-30
lines changed

library/stdtypes.po

Lines changed: 70 additions & 30 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-05-13 18:54+0100\n"
14+
"PO-Revision-Date: 2020-05-13 21:34+0100\n"
1515
"Last-Translator: Juan Ignacio Rodríguez de León <[email protected]>\n"
1616
"Language-Team: python-doc-es\n"
1717
"MIME-Version: 1.0\n"
@@ -1338,23 +1338,31 @@ msgstr ""
13381338
"objetos Python en la API Python/C."
13391339

13401340
#: ../Doc/library/stdtypes.rst:792
1341+
#, fuzzy
13411342
msgid ""
13421343
"Python defines several iterator objects to support iteration over general "
13431344
"and specific sequence types, dictionaries, and other more specialized "
13441345
"forms. The specific types are not important beyond their implementation of "
13451346
"the iterator protocol."
13461347
msgstr ""
1348+
"Python define varios objetos iteradores que permiten iterar sobre las "
1349+
"secuencias, ya sean generales o específicas, diccionarios y otras "
1350+
"estructuras de datos especializadas. Los tipos específicos no son tan "
1351+
"importantes como la implementación del protocolo iterador."
13471352

13481353
#: ../Doc/library/stdtypes.rst:797
13491354
msgid ""
13501355
"Once an iterator's :meth:`~iterator.__next__` method raises :exc:"
13511356
"`StopIteration`, it must continue to do so on subsequent calls. "
13521357
"Implementations that do not obey this property are deemed broken."
13531358
msgstr ""
1359+
"Una vez que la ejecución del método :meth:`~iterator.__next__` eleva la "
1360+
"excepción :exc:`StopIteration`, debe continuar haciéndolo en subsiguientes "
1361+
"llamadas al método. Si una implementación no cumple esto, se considera rota."
13541362

13551363
#: ../Doc/library/stdtypes.rst:805
13561364
msgid "Generator Types"
1357-
msgstr ""
1365+
msgstr "Tipos Generador"
13581366

13591367
#: ../Doc/library/stdtypes.rst:807
13601368
msgid ""
@@ -1365,10 +1373,17 @@ msgid ""
13651373
"`~generator.__next__` methods. More information about generators can be "
13661374
"found in :ref:`the documentation for the yield expression <yieldexpr>`."
13671375
msgstr ""
1376+
"Los :term:`generadores` de Python proporcionan una manera cómoda de "
1377+
"implementar el protocolo iterador. Si un objeto de tipo contenedor "
1378+
"implementa el método :meth:`__iter__` como un generador, de forma automática "
1379+
"este devolverá un objeto iterador (Técnicamente, un objeto generador) que "
1380+
"implementa los métodos :meth:`__iter__` y :meth:`~generator.__next__`. Se "
1381+
"puede obtener más información acerca de los generadores en:ref:`la "
1382+
"documentación de la expresión yield <yieldexpr>`."
13681383

13691384
#: ../Doc/library/stdtypes.rst:819
13701385
msgid "Sequence Types --- :class:`list`, :class:`tuple`, :class:`range`"
1371-
msgstr ""
1386+
msgstr "Tipos secuencia --- :class:`list`, :class:`tuple`, :class:`range`"
13721387

13731388
#: ../Doc/library/stdtypes.rst:821
13741389
msgid ""
@@ -1377,10 +1392,14 @@ msgid ""
13771392
"<binaryseq>` and :ref:`text strings <textseq>` are described in dedicated "
13781393
"sections."
13791394
msgstr ""
1395+
"Hay tres tipos básicos de secuencia: listas, tuplas y objetos de tipo rango. "
1396+
"Existen tipos de secuencia especiales usados para el procesado de :ref:"
1397+
"`datos binarios <binaryseq>` y :ref:`cadenas de texto <textseq>` que se "
1398+
"describirán en secciones específicas."
13801399

13811400
#: ../Doc/library/stdtypes.rst:830
13821401
msgid "Common Sequence Operations"
1383-
msgstr ""
1402+
msgstr "Operaciones comunes de las secuencias"
13841403

13851404
#: ../Doc/library/stdtypes.rst:834
13861405
msgid ""
@@ -1389,6 +1408,10 @@ msgid ""
13891408
"provided to make it easier to correctly implement these operations on custom "
13901409
"sequence types."
13911410
msgstr ""
1411+
"Las operaciones de la siguiente tabla están soportadas por la mayoría de los "
1412+
"tipos secuencia, tanto mutables como inmutables. La clase ABC :class:"
1413+
"`collections.abc.Sequence` se incluye para facilitar la implementación "
1414+
"correcta de estas operaciones en nuestros propios tipos de secuencias."
13921415

13931416
#: ../Doc/library/stdtypes.rst:839
13941417
msgid ""
@@ -1397,6 +1420,10 @@ msgid ""
13971420
"are integers and *x* is an arbitrary object that meets any type and value "
13981421
"restrictions imposed by *s*."
13991422
msgstr ""
1423+
"La tabla lista las operaciones ordenadas de menor a mayor prioridad. En la "
1424+
"tabla, *s* y *t* representan secuencias del mismo tipo, *n*, *i*, *j* y *k* "
1425+
"son números enteros y *x* es un objeto arbitrario que cumple con cualquier "
1426+
"restricción de tipo o valor impuesta por *s*."
14001427

14011428
#: ../Doc/library/stdtypes.rst:844
14021429
msgid ""
@@ -1405,124 +1432,131 @@ msgid ""
14051432
"operations have the same priority as the corresponding numeric operations. "
14061433
"[3]_"
14071434
msgstr ""
1435+
"Las operaciones ``in`` y ``not in`` tienen la misma prioridad que los "
1436+
"operadores de comparación. Las operaciones ``+`` (Concatenación) y ``*`` "
1437+
"(Repetición) tienen la misma prioridad que sus equivalentes numéricos [3]_."
14081438

14091439
#: ../Doc/library/stdtypes.rst:865
14101440
msgid "``x in s``"
1411-
msgstr ""
1441+
msgstr "``x in s``"
14121442

14131443
#: ../Doc/library/stdtypes.rst:865
14141444
msgid "``True`` if an item of *s* is equal to *x*, else ``False``"
14151445
msgstr ""
1446+
"``True`` si un elemento de *s* es igual a *x*, ``False`` en caso contrario."
14161447

14171448
#: ../Doc/library/stdtypes.rst:868
14181449
msgid "``x not in s``"
1419-
msgstr ""
1450+
msgstr "``x not in s``"
14201451

14211452
#: ../Doc/library/stdtypes.rst:868
14221453
msgid "``False`` if an item of *s* is equal to *x*, else ``True``"
14231454
msgstr ""
1455+
"``False`` si un elemento de *s* es igual a *x*, ``True`` en caso contrario."
14241456

14251457
#: ../Doc/library/stdtypes.rst:871
14261458
msgid "``s + t``"
1427-
msgstr ""
1459+
msgstr "``s + t``"
14281460

14291461
#: ../Doc/library/stdtypes.rst:871
14301462
msgid "the concatenation of *s* and *t*"
1431-
msgstr ""
1463+
msgstr "La concatenación de *s* y *t*."
14321464

14331465
#: ../Doc/library/stdtypes.rst:871
14341466
msgid "(6)(7)"
1435-
msgstr ""
1467+
msgstr "(6)(7)"
14361468

14371469
#: ../Doc/library/stdtypes.rst:874
14381470
msgid "``s * n`` or ``n * s``"
1439-
msgstr ""
1471+
msgstr "``s * n`` o ``n * s``"
14401472

14411473
#: ../Doc/library/stdtypes.rst:874
14421474
msgid "equivalent to adding *s* to itself *n* times"
1443-
msgstr ""
1475+
msgstr "Equivale a concatenar *s* consigo mismo *n* veces."
14441476

14451477
#: ../Doc/library/stdtypes.rst:874
14461478
msgid "(2)(7)"
1447-
msgstr ""
1479+
msgstr "(2)(7)"
14481480

14491481
#: ../Doc/library/stdtypes.rst:877
14501482
msgid "``s[i]``"
1451-
msgstr ""
1483+
msgstr "``s[i]``"
14521484

14531485
#: ../Doc/library/stdtypes.rst:877
14541486
msgid "*i*\\ th item of *s*, origin 0"
1455-
msgstr ""
1487+
msgstr "El elemento *i*-esimo de *s*, empezando a contar en 0."
14561488

14571489
#: ../Doc/library/stdtypes.rst:879
14581490
msgid "``s[i:j]``"
1459-
msgstr ""
1491+
msgstr "``s[i:j]``"
14601492

14611493
#: ../Doc/library/stdtypes.rst:879
14621494
msgid "slice of *s* from *i* to *j*"
1463-
msgstr ""
1495+
msgstr "La rebanada de *s* desde *i* hasta *j*."
14641496

14651497
#: ../Doc/library/stdtypes.rst:879
14661498
msgid "(3)(4)"
1467-
msgstr ""
1499+
msgstr "(3)(4)"
14681500

14691501
#: ../Doc/library/stdtypes.rst:881
14701502
msgid "``s[i:j:k]``"
1471-
msgstr ""
1503+
msgstr "``s[i:j:k]``"
14721504

14731505
#: ../Doc/library/stdtypes.rst:881
14741506
msgid "slice of *s* from *i* to *j* with step *k*"
1475-
msgstr ""
1507+
msgstr "La rebanada de *s* desde *i* hasta *j*, con paso *j*."
14761508

14771509
#: ../Doc/library/stdtypes.rst:881
14781510
msgid "(3)(5)"
1479-
msgstr ""
1511+
msgstr "(3)(5)"
14801512

14811513
#: ../Doc/library/stdtypes.rst:884
14821514
msgid "``len(s)``"
1483-
msgstr ""
1515+
msgstr "``len(s)``"
14841516

14851517
#: ../Doc/library/stdtypes.rst:884
14861518
msgid "length of *s*"
1487-
msgstr ""
1519+
msgstr "Longitud de *s*."
14881520

14891521
#: ../Doc/library/stdtypes.rst:886
14901522
msgid "``min(s)``"
1491-
msgstr ""
1523+
msgstr "``min(s)``"
14921524

14931525
#: ../Doc/library/stdtypes.rst:886
14941526
msgid "smallest item of *s*"
1495-
msgstr ""
1527+
msgstr "El elemento más pequeño de *s*."
14961528

14971529
#: ../Doc/library/stdtypes.rst:888
14981530
msgid "``max(s)``"
1499-
msgstr ""
1531+
msgstr "``max(s)``"
15001532

15011533
#: ../Doc/library/stdtypes.rst:888
15021534
msgid "largest item of *s*"
1503-
msgstr ""
1535+
msgstr "El elemento más grande de *s*."
15041536

15051537
#: ../Doc/library/stdtypes.rst:890
15061538
msgid "``s.index(x[, i[, j]])``"
1507-
msgstr ""
1539+
msgstr "``s.index(x[, i[, j]])``"
15081540

15091541
#: ../Doc/library/stdtypes.rst:890
15101542
msgid ""
15111543
"index of the first occurrence of *x* in *s* (at or after index *i* and "
15121544
"before index *j*)"
15131545
msgstr ""
1546+
"Índice de la primera ocurrencia de *x* en *s* (en la posición *i* o "
1547+
"superior, y antes de *j*)"
15141548

15151549
#: ../Doc/library/stdtypes.rst:890 ../Doc/library/stdtypes.rst:3391
15161550
msgid "\\(8)"
1517-
msgstr ""
1551+
msgstr "\\(8)"
15181552

15191553
#: ../Doc/library/stdtypes.rst:894
15201554
msgid "``s.count(x)``"
1521-
msgstr ""
1555+
msgstr "``s.count(x)``"
15221556

15231557
#: ../Doc/library/stdtypes.rst:894
15241558
msgid "total number of occurrences of *x* in *s*"
1525-
msgstr ""
1559+
msgstr "Número total de ocurrencias de *x* en *s*."
15261560

15271561
#: ../Doc/library/stdtypes.rst:898
15281562
msgid ""
@@ -1532,6 +1566,12 @@ msgid ""
15321566
"and the two sequences must be of the same type and have the same length. "
15331567
"(For full details see :ref:`comparisons` in the language reference.)"
15341568
msgstr ""
1569+
"También se pueden comparar secuencias del mismo tipo. En particular, las "
1570+
"tuplas y las listas se comparan léxicográficamente, comparando los elementos "
1571+
"en la misma posición. Esto significa que, para que se consideren iguales, "
1572+
"todos los elementos correspondientes deben ser iguales y las dos secuencias "
1573+
"deben ser del mismo tipo y de la misma longitud (Para más detalles véase :"
1574+
"ref:`comparaciones` en la referencia del lenguaje)."
15351575

15361576
#: ../Doc/library/stdtypes.rst:907
15371577
msgid ""

0 commit comments

Comments
 (0)