@@ -39,10 +39,10 @@ msgstr ""
39
39
"El módulo :mod:`datetime` proporciona varios objetos de fecha y hora. Antes "
40
40
"de usar cualquiera de estas funciones, el archivo de encabezado :file:"
41
41
"`datetime.h` debe estar incluido en su fuente (tenga en cuenta que esto no "
42
- "está incluido en archivo :file:`Python.h`), y el macro :c:macro:"
42
+ "está incluido en el archivo :file:`Python.h`), y la macro :c:macro:"
43
43
"`PyDateTime_IMPORT` debe llamarse, generalmente como parte de la función de "
44
- "inicialización del módulo. El macro coloca un puntero a una estructura C en "
45
- "una variable estática, :c:data:`PyDateTimeAPI`, que utilizan los siguientes "
44
+ "inicialización del módulo. La macro coloca un puntero a una estructura C en "
45
+ "una variable estática, :c:data:`PyDateTimeAPI`, que utilizan las siguientes "
46
46
"macros."
47
47
48
48
#: ../Doc/c-api/datetime.rst:16
@@ -130,16 +130,16 @@ msgid ""
130
130
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType` or a subtype "
131
131
"of :c:data:`PyDateTime_TZInfoType`. *ob* must not be ``NULL``."
132
132
msgstr ""
133
- "Retorna verdadero si *ob es de tipo :c:data:`PyDateTime_TZInfoType` o un "
134
- "subtipo de :c:data:`PyDateTime_TZInfoType`. *ob* no debe ser ``NULL``."
133
+ "Retorna verdadero si *ob* es de tipo :c:data:`PyDateTime_TZInfoType` o un "
134
+ "subtipo de :c:data:`PyDateTime_TZInfoType`. *ob* no debe ser ``NULL``."
135
135
136
136
#: ../Doc/c-api/datetime.rst:84
137
137
msgid ""
138
138
"Return true if *ob* is of type :c:data:`PyDateTime_TZInfoType`. *ob* must "
139
139
"not be ``NULL``."
140
140
msgstr ""
141
- "Retorna true si *ob* es de tipo :c:data:`PyDateTime_TZInfoType`. *ob* no "
142
- "debe ser ``NULL``."
141
+ "Retorna verdadero si *ob* es de tipo :c:data:`PyDateTime_TZInfoType`. *ob* "
142
+ "no debe ser ``NULL``."
143
143
144
144
#: ../Doc/c-api/datetime.rst:88
145
145
msgid "Macros to create objects:"
@@ -210,7 +210,7 @@ msgid ""
210
210
"by the *offset* argument and with tzname *name*."
211
211
msgstr ""
212
212
"Retorna un objeto :class:`datetime.timezone` con un desplazamiento fijo "
213
- "representado por el argumento *offset* y con `` tzname`` *name*."
213
+ "representado por el argumento *offset* y con tzname *name*."
214
214
215
215
#: ../Doc/c-api/datetime.rst:145
216
216
msgid ""
@@ -226,15 +226,15 @@ msgstr ""
226
226
227
227
#: ../Doc/c-api/datetime.rst:152
228
228
msgid "Return the year, as a positive int."
229
- msgstr "Regrese el año, como un * int* positivo."
229
+ msgstr "Regrese el año, como un int positivo."
230
230
231
231
#: ../Doc/c-api/datetime.rst:157
232
232
msgid "Return the month, as an int from 1 through 12."
233
- msgstr "Regresa el mes, como * int* del 1 al 12."
233
+ msgstr "Regresa el mes, como int del 1 al 12."
234
234
235
235
#: ../Doc/c-api/datetime.rst:162
236
236
msgid "Return the day, as an int from 1 through 31."
237
- msgstr "Retorna el día, como * int* del 1 al 31."
237
+ msgstr "Retorna el día, como int del 1 al 31."
238
238
239
239
#: ../Doc/c-api/datetime.rst:165
240
240
msgid ""
@@ -244,23 +244,23 @@ msgid ""
244
244
msgstr ""
245
245
"Macros para extraer campos de objetos de fecha y hora. El argumento debe ser "
246
246
"una instancia de :c:data:`PyDateTime_DateTime`, incluidas las subclases. El "
247
- "argumento no debe ser ``NULL`` y el tipo no está marcado :"
247
+ "argumento no debe ser ``NULL`` y el tipo no es comprobado :"
248
248
249
249
#: ../Doc/c-api/datetime.rst:171 ../Doc/c-api/datetime.rst:195
250
250
msgid "Return the hour, as an int from 0 through 23."
251
- msgstr "Retorna la hora, como un * int* de 0 hasta 23."
251
+ msgstr "Retorna la hora, como un int de 0 hasta 23."
252
252
253
253
#: ../Doc/c-api/datetime.rst:176 ../Doc/c-api/datetime.rst:200
254
254
msgid "Return the minute, as an int from 0 through 59."
255
- msgstr "Retorna el minuto, como un * int* de 0 hasta 59."
255
+ msgstr "Retorna el minuto, como un int de 0 hasta 59."
256
256
257
257
#: ../Doc/c-api/datetime.rst:181 ../Doc/c-api/datetime.rst:205
258
258
msgid "Return the second, as an int from 0 through 59."
259
- msgstr "Retorna el segundo, como un * int* de 0 hasta 59."
259
+ msgstr "Retorna el segundo, como un int de 0 hasta 59."
260
260
261
261
#: ../Doc/c-api/datetime.rst:186 ../Doc/c-api/datetime.rst:210
262
262
msgid "Return the microsecond, as an int from 0 through 999999."
263
- msgstr "Retorna el micro segundo, como un * int* de 0 hasta 999999."
263
+ msgstr "Retorna el micro segundo, como un int de 0 hasta 999999."
264
264
265
265
#: ../Doc/c-api/datetime.rst:189
266
266
msgid ""
@@ -284,15 +284,15 @@ msgstr ""
284
284
285
285
#: ../Doc/c-api/datetime.rst:219
286
286
msgid "Return the number of days, as an int from -999999999 to 999999999."
287
- msgstr "Retorna el número de días, como un * int* desde -999999999 a 999999999."
287
+ msgstr "Retorna el número de días, como un int desde -999999999 a 999999999."
288
288
289
289
#: ../Doc/c-api/datetime.rst:226
290
290
msgid "Return the number of seconds, as an int from 0 through 86399."
291
- msgstr "Retorna el número de segundos, como un * int* de 0 a 86399."
291
+ msgstr "Retorna el número de segundos, como un int de 0 a 86399."
292
292
293
293
#: ../Doc/c-api/datetime.rst:233
294
294
msgid "Return the number of microseconds, as an int from 0 through 999999."
295
- msgstr "Retorna el número de micro segundos, como un * int* de 0 a 999999."
295
+ msgstr "Retorna el número de micro segundos, como un int de 0 a 999999."
296
296
297
297
#: ../Doc/c-api/datetime.rst:238
298
298
msgid "Macros for the convenience of modules implementing the DB API:"
0 commit comments