Skip to content

Commit 7a20a72

Browse files
committed
78%: Usando adaptadores para almacenar tipos adicionales de Python en SQLite
1 parent b05e959 commit 7a20a72

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

library/sqlite3.po

Lines changed: 12 additions & 3 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 21:24-0500\n"
14+
"PO-Revision-Date: 2020-10-06 22:07-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1257,7 +1257,7 @@ msgstr "Excepciones"
12571257

12581258
#: ../Doc/library/sqlite3.rst:819
12591259
msgid "A subclass of :exc:`Exception`."
1260-
msgstr "Una subclase de :exe:`Exception`."
1260+
msgstr "Una subclase de :exc:`Exception`."
12611261

12621262
#: ../Doc/library/sqlite3.rst:823
12631263
msgid ""
@@ -1329,7 +1329,7 @@ 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``, "
1332+
"SQLite soporta de forma nativa los siguientes tipos: ``NULL``, ``INTEGER``, "
13331333
"``REAL``, ``TEXT``, ``BLOB``."
13341334

13351335
#: ../Doc/library/sqlite3.rst:868
@@ -1411,6 +1411,8 @@ msgstr ""
14111411
#: ../Doc/library/sqlite3.rst:909
14121412
msgid "Using adapters to store additional Python types in SQLite databases"
14131413
msgstr ""
1414+
"Usando adaptadores para almacenar tipos adicionales de Python en bases de "
1415+
"datos SQLite"
14141416

14151417
#: ../Doc/library/sqlite3.rst:911
14161418
msgid ""
@@ -1419,12 +1421,19 @@ msgid ""
14191421
"sqlite3 module's supported types for SQLite: one of NoneType, int, float, "
14201422
"str, bytes."
14211423
msgstr ""
1424+
"Como se describió anteriormente, SQLite soporta solamente un conjunto "
1425+
"limitado de tipos de forma nativa. Para usar otros tipos de Python con "
1426+
"SQLite, se deben **adaptar** a uno de los tipos de datos soportados por el "
1427+
"módulo sqlite3 para SQLite: uno de *NoneType*, entero, flotante, cadena de "
1428+
"texto o *bytes*."
14221429

14231430
#: ../Doc/library/sqlite3.rst:916
14241431
msgid ""
14251432
"There are two ways to enable the :mod:`sqlite3` module to adapt a custom "
14261433
"Python type to one of the supported ones."
14271434
msgstr ""
1435+
"Hay dos formas de habilitar el módulo :mod:`sqlite3` para adaptar un tipo "
1436+
"personalizado de Python a alguno de los admitidos."
14281437

14291438
#: ../Doc/library/sqlite3.rst:921
14301439
msgid "Letting your object adapt itself"

0 commit comments

Comments
 (0)