Skip to content

Commit fb59c4a

Browse files
committed
Traducido c-apy/bytearray
1 parent 5841933 commit fb59c4a

File tree

1 file changed

+32
-11
lines changed

1 file changed

+32
-11
lines changed

c-api/bytearray.po

+32-11
Original file line numberDiff line numberDiff line change
@@ -6,98 +6,119 @@
66
# Check https://github.com/PyCampES/python-docs-es/blob/3.8/TRANSLATORS to
77
# get the list of volunteers
88
#
9-
#, fuzzy
109
msgid ""
1110
msgstr ""
1211
"Project-Id-Version: Python 3.8\n"
1312
"Report-Msgid-Bugs-To: \n"
1413
"POT-Creation-Date: 2020-05-05 12:54+0200\n"
15-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
16-
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"PO-Revision-Date: 2020-05-09 16:04+0200\n"
1715
"Language-Team: python-doc-es\n"
1816
"MIME-Version: 1.0\n"
19-
"Content-Type: text/plain; charset=utf-8\n"
17+
"Content-Type: text/plain; charset=UTF-8\n"
2018
"Content-Transfer-Encoding: 8bit\n"
2119
"Generated-By: Babel 2.8.0\n"
20+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
21+
"Last-Translator: \n"
22+
"Language: es\n"
23+
"X-Generator: Poedit 2.3\n"
2224

2325
#: ../Doc/c-api/bytearray.rst:6
2426
msgid "Byte Array Objects"
25-
msgstr ""
27+
msgstr "Objetos de arreglos de bytes (*bytearrays*)"
2628

2729
#: ../Doc/c-api/bytearray.rst:13
2830
msgid ""
2931
"This subtype of :c:type:`PyObject` represents a Python bytearray object."
3032
msgstr ""
33+
"Este subtipo de :c:type:`PyObject` representa un objeto arreglo de bytes de "
34+
"Python."
3135

3236
#: ../Doc/c-api/bytearray.rst:18
3337
msgid ""
3438
"This instance of :c:type:`PyTypeObject` represents the Python bytearray "
3539
"type; it is the same object as :class:`bytearray` in the Python layer."
3640
msgstr ""
41+
"Esta instancia de :c:type:`PyTypeObject` representa el tipo arreglo de bytes "
42+
"de Python; es el mismo objeto que :class:`bytearray` en la capa de Python."
3743

3844
#: ../Doc/c-api/bytearray.rst:23
3945
msgid "Type check macros"
40-
msgstr ""
46+
msgstr "Macros de verificación de tipos"
4147

4248
#: ../Doc/c-api/bytearray.rst:27
4349
msgid ""
4450
"Return true if the object *o* is a bytearray object or an instance of a "
4551
"subtype of the bytearray type."
4652
msgstr ""
53+
"Retorna verdadero si el objeto *o* es un objeto de arreglo de bytes o una "
54+
"instancia de un subtipo del tipo arreglo de bytes."
4755

4856
#: ../Doc/c-api/bytearray.rst:33
4957
msgid ""
5058
"Return true if the object *o* is a bytearray object, but not an instance of "
5159
"a subtype of the bytearray type."
5260
msgstr ""
61+
"Retorna verdadero si el objeto *o* es un objeto de arreglo de bytes, pero no "
62+
"una instancia de un subtipo del tipo arreglo de bytes."
5363

5464
#: ../Doc/c-api/bytearray.rst:38
5565
msgid "Direct API functions"
56-
msgstr ""
66+
msgstr "Funciones API directas"
5767

5868
#: ../Doc/c-api/bytearray.rst:42
5969
msgid ""
6070
"Return a new bytearray object from any object, *o*, that implements the :ref:"
6171
"`buffer protocol <bufferobjects>`."
6272
msgstr ""
73+
"Retorna un nuevo objeto de arreglo de bytes de cualquier objeto, *o*, que "
74+
"implementa el :ref:`buffer protocol <bufferobjects>`."
6375

6476
#: ../Doc/c-api/bytearray.rst:50
6577
msgid ""
6678
"Create a new bytearray object from *string* and its length, *len*. On "
6779
"failure, ``NULL`` is returned."
6880
msgstr ""
81+
"Crea un nuevo objeto de arreglo de bytes a partir de *string* y su longitud, "
82+
"*len*. En caso de fallo, se devuelve ``NULL``."
6983

7084
#: ../Doc/c-api/bytearray.rst:56
7185
msgid ""
7286
"Concat bytearrays *a* and *b* and return a new bytearray with the result."
7387
msgstr ""
88+
"Une los arreglos de bytes (*bytearrays*) *a* y *b* y retorna un nuevo "
89+
"arreglo de bytes (*bytearray*) con el resultado."
7490

7591
#: ../Doc/c-api/bytearray.rst:61
7692
msgid "Return the size of *bytearray* after checking for a ``NULL`` pointer."
7793
msgstr ""
94+
"Retorna el tamaño de *bytearray* después de buscar un puntero ``NULL``."
7895

7996
#: ../Doc/c-api/bytearray.rst:66
8097
msgid ""
8198
"Return the contents of *bytearray* as a char array after checking for a "
8299
"``NULL`` pointer. The returned array always has an extra null byte appended."
83100
msgstr ""
101+
"Retorna el contenido de *bytearray* como un arreglo de caracteres después de "
102+
"verificar un puntero ``NULL``. La arreglo retornado siempre tiene un byte "
103+
"nulo adicional agregado."
84104

85105
#: ../Doc/c-api/bytearray.rst:73
86106
msgid "Resize the internal buffer of *bytearray* to *len*."
87-
msgstr ""
107+
msgstr "Cambia el tamaño del búfer interno de *bytearray* a *len*."
88108

89109
#: ../Doc/c-api/bytearray.rst:76
90110
msgid "Macros"
91-
msgstr ""
111+
msgstr "Macros"
92112

93113
#: ../Doc/c-api/bytearray.rst:78
94114
msgid "These macros trade safety for speed and they don't check pointers."
95115
msgstr ""
116+
"Estos macros intercambian seguridad por velocidad y no comprueban punteros."
96117

97118
#: ../Doc/c-api/bytearray.rst:82
98119
msgid "Macro version of :c:func:`PyByteArray_AsString`."
99-
msgstr ""
120+
msgstr "Versión macro de :c:func:`PyByteArray_AsString`."
100121

101122
#: ../Doc/c-api/bytearray.rst:87
102123
msgid "Macro version of :c:func:`PyByteArray_Size`."
103-
msgstr ""
124+
msgstr "Versión macro de :c:func:`PyByteArray_Size`."

0 commit comments

Comments
 (0)