X Tutup
Skip to content

Commit ca97f5c

Browse files
Update translations from Transifex
1 parent 9bd5412 commit ca97f5c

36 files changed

+8928
-8029
lines changed

c-api/type.po

Lines changed: 40 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ msgid ""
1313
msgstr ""
1414
"Project-Id-Version: Python 3.9\n"
1515
"Report-Msgid-Bugs-To: \n"
16-
"POT-Creation-Date: 2020-09-05 04:00+0000\n"
16+
"POT-Creation-Date: 2020-12-21 04:56+0000\n"
1717
"PO-Revision-Date: 2017-02-16 17:39+0000\n"
1818
"Last-Translator: Marco Rougeth <marco@rougeth.com>, 2020\n"
1919
"Language-Team: Portuguese (Brazil) (https://www.transifex.com/python-doc/"
@@ -194,11 +194,12 @@ msgstr ""
194194

195195
#: ../../c-api/type.rst:158
196196
msgid ""
197-
"If *bases* is ``NULL``, the *Py_tp_base* slot is used instead. If that also "
198-
"is ``NULL``, the new type derives from :class:`object`."
197+
"If *bases* is ``NULL``, the *Py_tp_bases* slot is used instead. If that also "
198+
"is ``NULL``, the *Py_tp_base* slot is used instead. If that also is "
199+
"``NULL``, the new type derives from :class:`object`."
199200
msgstr ""
200201

201-
#: ../../c-api/type.rst:161
202+
#: ../../c-api/type.rst:162
202203
msgid ""
203204
"The *module* argument can be used to record the module in which the new "
204205
"class is defined. It must be a module object or ``NULL``. If not ``NULL``, "
@@ -207,157 +208,157 @@ msgid ""
207208
"subclasses; it must be specified for each class individually."
208209
msgstr ""
209210

210-
#: ../../c-api/type.rst:168
211+
#: ../../c-api/type.rst:169
211212
msgid "This function calls :c:func:`PyType_Ready` on the new type."
212213
msgstr ""
213214

214-
#: ../../c-api/type.rst:174
215+
#: ../../c-api/type.rst:175
215216
msgid "Equivalent to ``PyType_FromModuleAndSpec(NULL, spec, bases)``."
216217
msgstr ""
217218

218-
#: ../../c-api/type.rst:180
219+
#: ../../c-api/type.rst:181
219220
msgid "Equivalent to ``PyType_FromSpecWithBases(spec, NULL)``."
220221
msgstr ""
221222

222-
#: ../../c-api/type.rst:184
223+
#: ../../c-api/type.rst:185
223224
msgid "Structure defining a type's behavior."
224225
msgstr ""
225226

226-
#: ../../c-api/type.rst:188
227+
#: ../../c-api/type.rst:189
227228
msgid "Name of the type, used to set :c:member:`PyTypeObject.tp_name`."
228229
msgstr ""
229230

230-
#: ../../c-api/type.rst:193
231+
#: ../../c-api/type.rst:194
231232
msgid ""
232233
"Size of the instance in bytes, used to set :c:member:`PyTypeObject."
233234
"tp_basicsize` and :c:member:`PyTypeObject.tp_itemsize`."
234235
msgstr ""
235236

236-
#: ../../c-api/type.rst:199
237+
#: ../../c-api/type.rst:200
237238
msgid "Type flags, used to set :c:member:`PyTypeObject.tp_flags`."
238239
msgstr ""
239240

240-
#: ../../c-api/type.rst:201
241+
#: ../../c-api/type.rst:202
241242
msgid ""
242243
"If the ``Py_TPFLAGS_HEAPTYPE`` flag is not set, :c:func:"
243244
"`PyType_FromSpecWithBases` sets it automatically."
244245
msgstr ""
245246

246-
#: ../../c-api/type.rst:206
247+
#: ../../c-api/type.rst:207
247248
msgid ""
248249
"Array of :c:type:`PyType_Slot` structures. Terminated by the special slot "
249250
"value ``{0, NULL}``."
250251
msgstr ""
251252

252-
#: ../../c-api/type.rst:211
253+
#: ../../c-api/type.rst:212
253254
msgid ""
254255
"Structure defining optional functionality of a type, containing a slot ID "
255256
"and a value pointer."
256257
msgstr ""
257258

258-
#: ../../c-api/type.rst:216
259+
#: ../../c-api/type.rst:217
259260
msgid "A slot ID."
260261
msgstr ""
261262

262-
#: ../../c-api/type.rst:218
263+
#: ../../c-api/type.rst:219
263264
msgid ""
264265
"Slot IDs are named like the field names of the structures :c:type:"
265266
"`PyTypeObject`, :c:type:`PyNumberMethods`, :c:type:`PySequenceMethods`, :c:"
266267
"type:`PyMappingMethods` and :c:type:`PyAsyncMethods` with an added ``Py_`` "
267268
"prefix. For example, use:"
268269
msgstr ""
269270

270-
#: ../../c-api/type.rst:224
271+
#: ../../c-api/type.rst:225
271272
msgid "``Py_tp_dealloc`` to set :c:member:`PyTypeObject.tp_dealloc`"
272273
msgstr ""
273274

274-
#: ../../c-api/type.rst:225
275+
#: ../../c-api/type.rst:226
275276
msgid "``Py_nb_add`` to set :c:member:`PyNumberMethods.nb_add`"
276277
msgstr ""
277278

278-
#: ../../c-api/type.rst:226
279+
#: ../../c-api/type.rst:227
279280
msgid "``Py_sq_length`` to set :c:member:`PySequenceMethods.sq_length`"
280281
msgstr ""
281282

282-
#: ../../c-api/type.rst:228
283+
#: ../../c-api/type.rst:229
283284
msgid ""
284285
"The following fields cannot be set at all using :c:type:`PyType_Spec` and :c:"
285286
"type:`PyType_Slot`:"
286287
msgstr ""
287288

288-
#: ../../c-api/type.rst:231
289+
#: ../../c-api/type.rst:232
289290
msgid ":c:member:`~PyTypeObject.tp_dict`"
290291
msgstr ":c:member:`~PyTypeObject.tp_dict`"
291292

292-
#: ../../c-api/type.rst:232
293+
#: ../../c-api/type.rst:233
293294
msgid ":c:member:`~PyTypeObject.tp_mro`"
294295
msgstr ":c:member:`~PyTypeObject.tp_mro`"
295296

296-
#: ../../c-api/type.rst:233
297+
#: ../../c-api/type.rst:234
297298
msgid ":c:member:`~PyTypeObject.tp_cache`"
298299
msgstr ":c:member:`~PyTypeObject.tp_cache`"
299300

300-
#: ../../c-api/type.rst:234
301+
#: ../../c-api/type.rst:235
301302
msgid ":c:member:`~PyTypeObject.tp_subclasses`"
302303
msgstr ":c:member:`~PyTypeObject.tp_subclasses`"
303304

304-
#: ../../c-api/type.rst:235
305+
#: ../../c-api/type.rst:236
305306
msgid ":c:member:`~PyTypeObject.tp_weaklist`"
306307
msgstr ":c:member:`~PyTypeObject.tp_weaklist`"
307308

308-
#: ../../c-api/type.rst:236
309+
#: ../../c-api/type.rst:237
309310
msgid ":c:member:`~PyTypeObject.tp_vectorcall`"
310311
msgstr ""
311312

312-
#: ../../c-api/type.rst:237
313+
#: ../../c-api/type.rst:238
313314
msgid ""
314315
":c:member:`~PyTypeObject.tp_weaklistoffset` (see :ref:`PyMemberDef "
315316
"<pymemberdef-offsets>`)"
316317
msgstr ""
317318

318-
#: ../../c-api/type.rst:239
319+
#: ../../c-api/type.rst:240
319320
msgid ""
320321
":c:member:`~PyTypeObject.tp_dictoffset` (see :ref:`PyMemberDef <pymemberdef-"
321322
"offsets>`)"
322323
msgstr ""
323324

324-
#: ../../c-api/type.rst:241
325+
#: ../../c-api/type.rst:242
325326
msgid ""
326327
":c:member:`~PyTypeObject.tp_vectorcall_offset` (see :ref:`PyMemberDef "
327328
"<pymemberdef-offsets>`)"
328329
msgstr ""
329330

330-
#: ../../c-api/type.rst:244
331+
#: ../../c-api/type.rst:245
331332
msgid ""
332333
"The following fields cannot be set using :c:type:`PyType_Spec` and :c:type:"
333334
"`PyType_Slot` under the limited API:"
334335
msgstr ""
335336

336-
#: ../../c-api/type.rst:247
337+
#: ../../c-api/type.rst:248
337338
msgid ":c:member:`~PyBufferProcs.bf_getbuffer`"
338339
msgstr ":c:member:`~PyBufferProcs.bf_getbuffer`"
339340

340-
#: ../../c-api/type.rst:248
341+
#: ../../c-api/type.rst:249
341342
msgid ":c:member:`~PyBufferProcs.bf_releasebuffer`"
342343
msgstr ":c:member:`~PyBufferProcs.bf_releasebuffer`"
343344

344-
#: ../../c-api/type.rst:250
345+
#: ../../c-api/type.rst:251
345346
msgid ""
346-
"Setting :c:data:`Py_tp_bases` may be problematic on some platforms. To avoid "
347-
"issues, use the *bases* argument of :py:func:`PyType_FromSpecWithBases` "
348-
"instead."
347+
"Setting :c:data:`Py_tp_bases` or :c:data:`Py_tp_base` may be problematic on "
348+
"some platforms. To avoid issues, use the *bases* argument of :py:func:"
349+
"`PyType_FromSpecWithBases` instead."
349350
msgstr ""
350351

351-
#: ../../c-api/type.rst:256
352+
#: ../../c-api/type.rst:258
352353
msgid "Slots in :c:type:`PyBufferProcs` in may be set in the unlimited API."
353354
msgstr ""
354355

355-
#: ../../c-api/type.rst:260
356+
#: ../../c-api/type.rst:262
356357
msgid ""
357358
"The desired value of the slot. In most cases, this is a pointer to a "
358359
"function."
359360
msgstr ""
360361

361-
#: ../../c-api/type.rst:263
362+
#: ../../c-api/type.rst:265
362363
msgid "May not be ``NULL``."
363364
msgstr ""

0 commit comments

Comments
 (0)
X Tutup