Skip to content

Commit feddfe2

Browse files
authored
Traducido archivo library/bisect (#2367)
Closes #2019
1 parent 817496a commit feddfe2

File tree

1 file changed

+23
-12
lines changed

1 file changed

+23
-12
lines changed

library/bisect.po

+23-12
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2020-07-22 13:24-0300\n"
14+
"PO-Revision-Date: 2023-04-03 15:39-0600\n"
1515
"Last-Translator: \n"
16-
"Language: es\n"
1716
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
17+
"Language: es\n"
1918
"MIME-Version: 1.0\n"
2019
"Content-Type: text/plain; charset=utf-8\n"
2120
"Content-Transfer-Encoding: 8bit\n"
21+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
2222
"Generated-By: Babel 2.10.3\n"
23+
"X-Generator: Poedit 3.2.2\n"
2324

2425
#: ../Doc/library/bisect.rst:2
2526
msgid ":mod:`bisect` --- Array bisection algorithm"
@@ -84,12 +85,17 @@ msgid ""
8485
"extract a comparison key from each element in the array. To support "
8586
"searching complex records, the key function is not applied to the *x* value."
8687
msgstr ""
88+
"*key* especifica una :term:`función clave` de un argumento que es usada para "
89+
"extraer una clave de comparación de cada elemento en el arreglo. La función "
90+
"clave no se aplica a *x* para facilitar la búsqueda de registros complejos."
8791

8892
#: ../Doc/library/bisect.rst:41 ../Doc/library/bisect.rst:62
8993
msgid ""
9094
"If *key* is ``None``, the elements are compared directly with no intervening "
9195
"function call."
9296
msgstr ""
97+
"Si *key* es ``None``, los elementos son comparados directamente sin "
98+
"intervención de una función."
9399

94100
#: ../Doc/library/bisect.rst:44 ../Doc/library/bisect.rst:65
95101
#: ../Doc/library/bisect.rst:83 ../Doc/library/bisect.rst:103
@@ -133,6 +139,9 @@ msgid ""
133139
"To support inserting records in a table, the *key* function (if any) is "
134140
"applied to *x* for the search step but not for the insertion step."
135141
msgstr ""
142+
"Para mantener la inserción de registros en una tabla, la función *key* (en "
143+
"caso de existir) se aplica a *x* en el paso de búsqueda pero no en el paso "
144+
"de inserción."
136145

137146
#: ../Doc/library/bisect.rst:80 ../Doc/library/bisect.rst:100
138147
msgid ""
@@ -208,15 +217,14 @@ msgstr ""
208217
"sección de ejemplos a continuación)."
209218

210219
#: ../Doc/library/bisect.rst:129
211-
#, fuzzy
212220
msgid ""
213221
"`Sorted Collections <https://grantjenks.com/docs/sortedcollections/>`_ is a "
214222
"high performance module that uses *bisect* to managed sorted collections of "
215223
"data."
216224
msgstr ""
217-
"`Sorted Collections <http://www.grantjenks.com/docs/sortedcollections/>`_ es "
218-
"un módulo de alto rendimiento que utiliza *bisect* para gestionar "
219-
"colecciones de datos ordenadas."
225+
"`Sorted Collections <https://grantjenks.com/docs/sortedcollections/>`_ es un "
226+
"módulo de alto rendimiento que utiliza *bisect* para gestionar colecciones "
227+
"de datos ordenadas."
220228

221229
#: ../Doc/library/bisect.rst:133
222230
msgid ""
@@ -229,8 +237,8 @@ msgstr ""
229237
"El `SortedCollection recipe <https://code.activestate.com/recipes/577197-"
230238
"sortedcollection/>`_ usa bisect para construir una clase de colección con "
231239
"todas las funciones con métodos de búsqueda sencillos y soporte para una "
232-
"función clave. Las teclas se calculan previamente para ahorrar llamadas "
233-
"innecesarias a la función de la tecla durante las búsquedas."
240+
"función clave. Las claves se calculan previamente para ahorrar llamadas "
241+
"innecesarias a la función clave durante las búsquedas."
234242

235243
#: ../Doc/library/bisect.rst:141
236244
msgid "Searching Sorted Lists"
@@ -270,15 +278,18 @@ msgid ""
270278
"tuples. The *key* argument can serve to extract the field used for ordering "
271279
"records in a table::"
272280
msgstr ""
281+
"Las funciones :func:`bisect` e :func:`insort` también funcionan con listas "
282+
"de tuplas. El argumento *key* puede usarse para extraer el campo usado para "
283+
"ordenar registros en una tabla::"
273284

274285
#: ../Doc/library/bisect.rst:235
275-
#, fuzzy
276286
msgid ""
277287
"If the key function is expensive, it is possible to avoid repeated function "
278288
"calls by searching a list of precomputed keys to find the index of a record::"
279289
msgstr ""
280-
"Una técnica para evitar llamadas repetidas a una función de tecla es buscar "
281-
"en una lista de teclas precalculadas para encontrar el índice de un registro:"
290+
"Para evitar llamadas repetidas a la función clave, cuando ésta usa muchos "
291+
"recursos, se puede buscar en una lista de claves previamente calculadas para "
292+
"encontrar el índice de un registro::"
282293

283294
#~ msgid ""
284295
#~ "*key* specifies a :term:`key function` of one argument that is used to "

0 commit comments

Comments
 (0)