Skip to content

Commit ad3c677

Browse files
Feat: translate csv.po entries
1 parent 4bc63f7 commit ad3c677

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

library/csv.po

+20-3
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: 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"
1515
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
1616
"Language: es\n"
1717
"Language-Team: python-doc-es\n"
18-
"Plural-Forms: nplurals=2; plural=(n != 1)\n"
18+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
1919
"MIME-Version: 1.0\n"
2020
"Content-Type: text/plain; charset=utf-8\n"
2121
"Content-Transfer-Encoding: 8bit\n"
2222
"Generated-By: Babel 2.9.1\n"
23+
"X-Generator: Poedit 3.0\n"
2324

2425
#: ../Doc/library/csv.rst:2
2526
msgid ":mod:`csv` --- CSV File Reading and Writing"
@@ -334,13 +335,23 @@ msgid ""
334335
"subtly different CSV data. :class:`Dialect` instances define how :class:"
335336
"`reader` and :class:`writer` instances behave."
336337
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`."
337344

338345
#: ../Doc/library/csv.rst:234
339346
msgid ""
340347
"All available :class:`Dialect` names are returned by :func:`list_dialects`, "
341348
"and they can be registered with specific :class:`reader` and :class:`writer` "
342349
"classes through their initializer (``__init__``) functions like this::"
343350
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í::"
344355

345356
#: ../Doc/library/csv.rst:247
346357
msgid ""
@@ -405,25 +416,31 @@ msgstr ""
405416

406417
#: ../Doc/library/csv.rst:287
407418
msgid "the second through n-th rows contain numeric values"
408-
msgstr ""
419+
msgstr "las filas segunda n-th contienen valores numéricos"
409420

410421
#: ../Doc/library/csv.rst:288
411422
msgid ""
412423
"the second through n-th rows contain strings where at least one value's "
413424
"length differs from that of the putative header of that column."
414425
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."
415428

416429
#: ../Doc/library/csv.rst:291
417430
msgid ""
418431
"Twenty rows after the first row are sampled; if more than half of columns + "
419432
"rows meet the criteria, :const:`True` is returned."
420433
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`."
421436

422437
#: ../Doc/library/csv.rst:296
423438
msgid ""
424439
"This method is a rough heuristic and may produce both false positives and "
425440
"negatives."
426441
msgstr ""
442+
"This method is a rough heuristic and may produce both false positives and "
443+
"negatives."
427444

428445
#: ../Doc/library/csv.rst:299
429446
msgid "An example for :class:`Sniffer` use::"

0 commit comments

Comments
 (0)