Skip to content

Commit b05e959

Browse files
committed
77%: Tipos de Python y SQLite
1 parent fe1680c commit b05e959

File tree

2 files changed

+27
-17
lines changed

2 files changed

+27
-17
lines changed

dictionaries/library_sqlite3.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
prototipar
22
Configurarla
33
autorizador
4+
desconexión

library/sqlite3.po

Lines changed: 26 additions & 17 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-10-06 19:36-0500\n"
14+
"PO-Revision-Date: 2020-10-06 21:24-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1302,7 +1302,7 @@ msgstr ""
13021302
"datos y no necesariamente bajo el control del programador, e.g. ocurre una "
13031303
"desconexión inesperada, el nombre de la fuente de datos no es encontrado, "
13041304
"una transacción no pudo ser procesada, etc. Es una subclase de :exc:"
1305-
"``DatabaseError`."
1305+
"`DatabaseError`."
13061306

13071307
#: ../Doc/library/sqlite3.rst:850
13081308
msgid ""
@@ -1318,78 +1318,83 @@ msgstr ""
13181318

13191319
#: ../Doc/library/sqlite3.rst:859
13201320
msgid "SQLite and Python types"
1321-
msgstr ""
1321+
msgstr "SQLite y tipos de Python"
13221322

13231323
#: ../Doc/library/sqlite3.rst:863
13241324
msgid "Introduction"
1325-
msgstr ""
1325+
msgstr "Introducción"
13261326

13271327
#: ../Doc/library/sqlite3.rst:865
13281328
msgid ""
13291329
"SQLite natively supports the following types: ``NULL``, ``INTEGER``, "
13301330
"``REAL``, ``TEXT``, ``BLOB``."
13311331
msgstr ""
1332+
"SQLite soporta nativamente los siguientes tipos: ``NULL``, ``INTEGER``, "
1333+
"``REAL``, ``TEXT``, ``BLOB``."
13321334

13331335
#: ../Doc/library/sqlite3.rst:868
13341336
msgid ""
13351337
"The following Python types can thus be sent to SQLite without any problem:"
13361338
msgstr ""
1339+
"Los siguientes tipos de Python se pueden enviar a SQLite sin problema alguno:"
13371340

13381341
#: ../Doc/library/sqlite3.rst:871 ../Doc/library/sqlite3.rst:888
13391342
msgid "Python type"
1340-
msgstr ""
1343+
msgstr "Tipo de Python"
13411344

13421345
#: ../Doc/library/sqlite3.rst:871 ../Doc/library/sqlite3.rst:888
13431346
msgid "SQLite type"
1344-
msgstr ""
1347+
msgstr "Tipo de SQLite"
13451348

13461349
#: ../Doc/library/sqlite3.rst:873 ../Doc/library/sqlite3.rst:890
13471350
msgid ":const:`None`"
1348-
msgstr ""
1351+
msgstr ":const:`None`"
13491352

13501353
#: ../Doc/library/sqlite3.rst:873 ../Doc/library/sqlite3.rst:890
13511354
msgid "``NULL``"
1352-
msgstr ""
1355+
msgstr "``NULL``"
13531356

13541357
#: ../Doc/library/sqlite3.rst:875 ../Doc/library/sqlite3.rst:892
13551358
msgid ":class:`int`"
1356-
msgstr ""
1359+
msgstr ":class:`int`"
13571360

13581361
#: ../Doc/library/sqlite3.rst:875 ../Doc/library/sqlite3.rst:892
13591362
msgid "``INTEGER``"
1360-
msgstr ""
1363+
msgstr "``INTEGER``"
13611364

13621365
#: ../Doc/library/sqlite3.rst:877 ../Doc/library/sqlite3.rst:894
13631366
msgid ":class:`float`"
1364-
msgstr ""
1367+
msgstr ":class:`float`"
13651368

13661369
#: ../Doc/library/sqlite3.rst:877 ../Doc/library/sqlite3.rst:894
13671370
msgid "``REAL``"
1368-
msgstr ""
1371+
msgstr "``REAL``"
13691372

13701373
#: ../Doc/library/sqlite3.rst:879
13711374
msgid ":class:`str`"
1372-
msgstr ""
1375+
msgstr ":class:`str`"
13731376

13741377
#: ../Doc/library/sqlite3.rst:879 ../Doc/library/sqlite3.rst:896
13751378
msgid "``TEXT``"
1376-
msgstr ""
1379+
msgstr "``TEXT``"
13771380

13781381
#: ../Doc/library/sqlite3.rst:881 ../Doc/library/sqlite3.rst:899
13791382
msgid ":class:`bytes`"
1380-
msgstr ""
1383+
msgstr ":class:`bytes`"
13811384

13821385
#: ../Doc/library/sqlite3.rst:881 ../Doc/library/sqlite3.rst:899
13831386
msgid "``BLOB``"
1384-
msgstr ""
1387+
msgstr "``BLOB``"
13851388

13861389
#: ../Doc/library/sqlite3.rst:885
13871390
msgid "This is how SQLite types are converted to Python types by default:"
13881391
msgstr ""
1392+
"De esta forma es como los tipos SQLite son convertidos a tipos de Python por "
1393+
"defecto:"
13891394

13901395
#: ../Doc/library/sqlite3.rst:896
13911396
msgid "depends on :attr:`~Connection.text_factory`, :class:`str` by default"
1392-
msgstr ""
1397+
msgstr "depende de :attr:`~Connection.text_factory`, por defecto :class:`str` "
13931398

13941399
#: ../Doc/library/sqlite3.rst:902
13951400
msgid ""
@@ -1398,6 +1403,10 @@ msgid ""
13981403
"adaptation, and you can let the :mod:`sqlite3` module convert SQLite types "
13991404
"to different Python types via converters."
14001405
msgstr ""
1406+
"El sistema de tipos del módulo :mod:`sqlite3` es extensible en dos formas: "
1407+
"se puede almacenar tipos de Python adicionales en una base de datos SQLite "
1408+
"vía adaptación de objetos, y se puede permitir que el módulo :mod:`sqlite3` "
1409+
"convierta tipos SQLite a diferentes tipos de Python vía convertidores."
14011410

14021411
#: ../Doc/library/sqlite3.rst:909
14031412
msgid "Using adapters to store additional Python types in SQLite databases"

0 commit comments

Comments
 (0)