Skip to content

Commit d368fbc

Browse files
committed
64%: Clase Row, método keys
1 parent caa3611 commit d368fbc

File tree

1 file changed

+17
-7
lines changed

1 file changed

+17
-7
lines changed

library/sqlite3.po

Lines changed: 17 additions & 7 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 09:54-0500\n"
14+
"PO-Revision-Date: 2020-10-06 12:22-0500\n"
1515
"Language-Team: python-doc-es\n"
1616
"MIME-Version: 1.0\n"
1717
"Content-Type: text/plain; charset=UTF-8\n"
@@ -1090,7 +1090,7 @@ msgid ""
10901090
"`ProgrammingError` exception will be raised if any operation is attempted "
10911091
"with the cursor."
10921092
msgstr ""
1093-
"El cursor no será usable de este punto en adelante; una exepción :exc:"
1093+
"El cursor no será usable de este punto en adelante; una excepción :exc:"
10941094
"`ProgrammingError` será lanzada si se intenta cualquier operación con el "
10951095
"cursor."
10961096

@@ -1197,48 +1197,58 @@ msgstr ""
11971197
"Este atributo de solo lectura provee la :class:`Connection` de la base de "
11981198
"datos SQLite usada por el objeto :class:`Cursor`. Un objeto :class:`Cursor` "
11991199
"creado por la llamada de :meth:`con.cursor() <Connection.cursor>` tendrá un "
1200-
"atributo :attr:`connection` que se fiere a *con*::"
1200+
"atributo :attr:`connection` que se refiere a *con*::"
12011201

12021202
#: ../Doc/library/sqlite3.rst:749
12031203
msgid "Row Objects"
1204-
msgstr ""
1204+
msgstr "Objetos *Row*"
12051205

12061206
#: ../Doc/library/sqlite3.rst:753
12071207
msgid ""
12081208
"A :class:`Row` instance serves as a highly optimized :attr:`~Connection."
12091209
"row_factory` for :class:`Connection` objects. It tries to mimic a tuple in "
12101210
"most of its features."
12111211
msgstr ""
1212+
"Una instancia :class:`Row` sirve como una altamente optimizada :attr:"
1213+
"`~Connection.row_factory` para objetos :class:`Connection`. Esta trata de "
1214+
"imitar una tupla en su mayoría de características."
12121215

12131216
#: ../Doc/library/sqlite3.rst:757
12141217
msgid ""
12151218
"It supports mapping access by column name and index, iteration, "
12161219
"representation, equality testing and :func:`len`."
12171220
msgstr ""
1221+
"Soporta acceso mapeado por nombre de columna e índice, iteración, "
1222+
"representación, pruebas de igualdad y :func:`len`."
12181223

12191224
#: ../Doc/library/sqlite3.rst:760
12201225
msgid ""
12211226
"If two :class:`Row` objects have exactly the same columns and their members "
12221227
"are equal, they compare equal."
12231228
msgstr ""
1229+
"Si dos objetos :class:`Row` tienen exactamente las mismas columnas y sus "
1230+
"miembros son iguales, entonces se comparan a igual."
12241231

12251232
#: ../Doc/library/sqlite3.rst:765
12261233
msgid ""
12271234
"This method returns a list of column names. Immediately after a query, it is "
12281235
"the first member of each tuple in :attr:`Cursor.description`."
12291236
msgstr ""
1237+
"Este método retorna una lista con los nombre de columnas. Inmediatamente "
1238+
"después de una consulta, es el primer miembro de cada tupla en :attr:`Cursor."
1239+
"description`."
12301240

12311241
#: ../Doc/library/sqlite3.rst:768
12321242
msgid "Added support of slicing."
1233-
msgstr ""
1243+
msgstr "Agrega soporte de segmentación."
12341244

12351245
#: ../Doc/library/sqlite3.rst:771
12361246
msgid "Let's assume we initialize a table as in the example given above::"
1237-
msgstr ""
1247+
msgstr "Vamos a asumir que se inicializa una tabla como en el ejemplo dado::"
12381248

12391249
#: ../Doc/library/sqlite3.rst:783
12401250
msgid "Now we plug :class:`Row` in::"
1241-
msgstr ""
1251+
msgstr "Ahora conectamos :class:`Row` en::"
12421252

12431253
#: ../Doc/library/sqlite3.rst:815
12441254
msgid "Exceptions"

0 commit comments

Comments
 (0)