@@ -11,15 +11,16 @@ msgstr ""
11
11
"Project-Id-Version : Python 3.8\n "
12
12
"Report-Msgid-Bugs-To : \n "
13
13
"POT-Creation-Date : 2021-10-16 21:42+0200\n "
14
- "PO-Revision-Date : 2021-08-07 15:44+0200 \n "
14
+ "PO-Revision-Date : 2021-11-14 07:32+0100 \n "
15
15
"Last-Translator : Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n "
16
16
"Language : es\n "
17
17
"Language-Team : python-doc-es\n "
18
- "Plural-Forms : nplurals=2; plural=(n != 1)\n "
18
+ "Plural-Forms : nplurals=2; plural=(n != 1); \n "
19
19
"MIME-Version : 1.0\n "
20
20
"Content-Type : text/plain; charset=utf-8\n "
21
21
"Content-Transfer-Encoding : 8bit\n "
22
22
"Generated-By : Babel 2.9.1\n "
23
+ "X-Generator : Poedit 3.0\n "
23
24
24
25
#: ../Doc/library/csv.rst:2
25
26
msgid ":mod:`csv` --- CSV File Reading and Writing"
@@ -334,13 +335,23 @@ msgid ""
334
335
"subtly different CSV data. :class:`Dialect` instances define how :class:"
335
336
"`reader` and :class:`writer` instances behave."
336
337
msgstr ""
338
+ "La clase :class:`Dialect` es una clase contenedora cuyos atributos contienen "
339
+ "información sobre cómo manejar las comillas dobles, los espacios en blanco, "
340
+ "los delimitadores, etc. Debido a la falta de una especificación estricta de "
341
+ "CSV, diferentes aplicaciones producen datos CSV sutilmente diferentes. Las "
342
+ "instancias de :class:`Dialect` definen cómo se comportan las instancias de :"
343
+ "class:`reader` y :class:`writer`."
337
344
338
345
#: ../Doc/library/csv.rst:234
339
346
msgid ""
340
347
"All available :class:`Dialect` names are returned by :func:`list_dialects`, "
341
348
"and they can be registered with specific :class:`reader` and :class:`writer` "
342
349
"classes through their initializer (``__init__``) functions like this::"
343
350
msgstr ""
351
+ "Todos los nombres disponibles de :class:`Dialect` son devueltos por :func:"
352
+ "`list_dialects`, y pueden ser registrados con clases específicas de :class:"
353
+ "`reader` y :class:`writer` a través de sus funciones inicializadoras "
354
+ "(``__init__``) así::"
344
355
345
356
#: ../Doc/library/csv.rst:247
346
357
msgid ""
@@ -405,25 +416,31 @@ msgstr ""
405
416
406
417
#: ../Doc/library/csv.rst:287
407
418
msgid "the second through n-th rows contain numeric values"
408
- msgstr ""
419
+ msgstr "las filas segunda n-th contienen valores numéricos "
409
420
410
421
#: ../Doc/library/csv.rst:288
411
422
msgid ""
412
423
"the second through n-th rows contain strings where at least one value's "
413
424
"length differs from that of the putative header of that column."
414
425
msgstr ""
426
+ "las segundas filas n-th contienen cadenas en las que la longitud de al menos "
427
+ "un valor difiere de la de la supuesta cabecera de esa columna."
415
428
416
429
#: ../Doc/library/csv.rst:291
417
430
msgid ""
418
431
"Twenty rows after the first row are sampled; if more than half of columns + "
419
432
"rows meet the criteria, :const:`True` is returned."
420
433
msgstr ""
434
+ "Se muestrean veinte filas después de la primera; si más de la mitad de las "
435
+ "columnas + filas cumplen los criterios, se devuelve :const:`True`."
421
436
422
437
#: ../Doc/library/csv.rst:296
423
438
msgid ""
424
439
"This method is a rough heuristic and may produce both false positives and "
425
440
"negatives."
426
441
msgstr ""
442
+ "This method is a rough heuristic and may produce both false positives and "
443
+ "negatives."
427
444
428
445
#: ../Doc/library/csv.rst:299
429
446
msgid "An example for :class:`Sniffer` use::"
0 commit comments