Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 6dcaef2

Browse files
committed
100%: Problemas comunes
1 parent cecab43 commit 6dcaef2

File tree

1 file changed

+20
-5
lines changed

1 file changed

+20
-5
lines changed

library/sqlite3.po

Lines changed: 20 additions & 5 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-16 20:32-0500\n"
14+
"PO-Revision-Date: 2020-10-17 07:36-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1733,22 +1733,26 @@ msgstr ""
17331733

17341734
#: ../Doc/library/sqlite3.rst:1084
17351735
msgid "Using the connection as a context manager"
1736-
msgstr ""
1736+
msgstr "Usando la conexión como un administrador de contexto"
17371737

17381738
#: ../Doc/library/sqlite3.rst:1086
17391739
msgid ""
17401740
"Connection objects can be used as context managers that automatically commit "
17411741
"or rollback transactions. In the event of an exception, the transaction is "
17421742
"rolled back; otherwise, the transaction is committed:"
17431743
msgstr ""
1744+
"Objetos de conexión pueden ser usados como administradores de contexto que "
1745+
"automáticamente *commit* o *rollback* transacciones. En el evento de una "
1746+
"excepción, la transacción es retrocedida; de otra forma, la transacción es "
1747+
"confirmada:"
17441748

17451749
#: ../Doc/library/sqlite3.rst:1095
17461750
msgid "Common issues"
1747-
msgstr ""
1751+
msgstr "Problemas comunes"
17481752

17491753
#: ../Doc/library/sqlite3.rst:1098
17501754
msgid "Multithreading"
1751-
msgstr ""
1755+
msgstr "Multihilo"
17521756

17531757
#: ../Doc/library/sqlite3.rst:1100
17541758
msgid ""
@@ -1757,16 +1761,22 @@ msgid ""
17571761
"between threads. If you still try to do so, you will get an exception at "
17581762
"runtime."
17591763
msgstr ""
1764+
"Versiones antiguas de SQLite tiene problemas compartiendo conexiones entre "
1765+
"hilos. Por esto el módulo de Python deshabilito compartir conexiones y "
1766+
"cursores entre hilos. Si se quiere intentar esto, se obtendrá una excepción "
1767+
"en tiempo de ejecución."
17601768

17611769
#: ../Doc/library/sqlite3.rst:1104
17621770
msgid ""
17631771
"The only exception is calling the :meth:`~Connection.interrupt` method, "
17641772
"which only makes sense to call from a different thread."
17651773
msgstr ""
1774+
"La única excepción es llamando el método :meth:`~Connection.interrupt`, el "
1775+
"cuál solamente hace sentido llamarlo desde un hilo diferente."
17661776

17671777
#: ../Doc/library/sqlite3.rst:1108
17681778
msgid "Footnotes"
1769-
msgstr ""
1779+
msgstr "Notas al pie"
17701780

17711781
#: ../Doc/library/sqlite3.rst:1109
17721782
msgid ""
@@ -1775,3 +1785,8 @@ msgid ""
17751785
"compiled without this feature. To get loadable extension support, you must "
17761786
"pass --enable-loadable-sqlite-extensions to configure."
17771787
msgstr ""
1788+
"El módulo sqlite3 no está compilado con una extensión cargable por defecto, "
1789+
"porqué algunas plataformas (notablemente Mac OS X) tienen bibliotecas SQLite "
1790+
"compiladas sin esta característica. Para obtener soporte de extensión "
1791+
"configurable, se debe pasar --enable-loadable-sqlite-extension para "
1792+
"configurar."

0 commit comments

Comments
 (0)