Skip to content

Commit 1a39596

Browse files
Update translation
Co-Authored-By: Rafael Fontenelle <rffontenelle@gmail.com>
1 parent 607b4e5 commit 1a39596

12 files changed

Lines changed: 14340 additions & 13967 deletions

File tree

.tx/config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -441,6 +441,14 @@ resource_name = c-api--perfmaps
441441
replace_edited_strings = false
442442
keep_translations = false
443443

444+
[o:python-doc:p:python-newest:r:c-api--picklebuffer]
445+
file_filter = c-api/picklebuffer.po
446+
type = PO
447+
minimum_perc = 0
448+
resource_name = c-api--picklebuffer
449+
replace_edited_strings = false
450+
keep_translations = false
451+
444452
[o:python-doc:p:python-newest:r:c-api--refcounting]
445453
file_filter = c-api/refcounting.po
446454
type = PO

c-api/concrete.po

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-11-11 14:15+0000\n"
15+
"POT-Creation-Date: 2025-11-17 14:14+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
1717
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
@@ -98,7 +98,7 @@ msgstr "Objetos Função"
9898
msgid "Other Objects"
9999
msgstr "Outros Objetos"
100100

101-
#: ../../c-api/concrete.rst:122
101+
#: ../../c-api/concrete.rst:123
102102
msgid "C API for extension modules"
103103
msgstr "API C para módulos de extensão"
104104

c-api/picklebuffer.po

Lines changed: 130 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,130 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001 Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# python-doc bot, 2025
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
9+
#
10+
#, fuzzy
11+
msgid ""
12+
msgstr ""
13+
"Project-Id-Version: Python 3.14\n"
14+
"Report-Msgid-Bugs-To: \n"
15+
"POT-Creation-Date: 2025-11-17 14:14+0000\n"
16+
"PO-Revision-Date: 2025-11-17 14:16+0000\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
18+
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
19+
"teams/5390/pt_BR/)\n"
20+
"MIME-Version: 1.0\n"
21+
"Content-Type: text/plain; charset=UTF-8\n"
22+
"Content-Transfer-Encoding: 8bit\n"
23+
"Language: pt_BR\n"
24+
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % "
25+
"1000000 == 0 ? 1 : 2;\n"
26+
27+
#: ../../c-api/picklebuffer.rst:9
28+
msgid "Pickle buffer objects"
29+
msgstr "Objetos buffer serializados com pickle"
30+
31+
#: ../../c-api/picklebuffer.rst:13
32+
msgid ""
33+
"A :class:`pickle.PickleBuffer` object wraps a :ref:`buffer-providing object "
34+
"<bufferobjects>` for out-of-band data transfer with the :mod:`pickle` module."
35+
msgstr ""
36+
"Um objeto :class:`pickle.PickleBuffer` encapsula um :ref:`objeto provedor de "
37+
"buffer <bufferobjects>` para transferência de dados fora de banda com o "
38+
"módulo :mod:`pickle`."
39+
40+
#: ../../c-api/picklebuffer.rst:19
41+
msgid ""
42+
"This instance of :c:type:`PyTypeObject` represents the Python pickle buffer "
43+
"type. This is the same object as :class:`pickle.PickleBuffer` in the Python "
44+
"layer."
45+
msgstr ""
46+
"Esta instância de :c:type:`PyTypeObject` representa o tipo de buffer "
47+
"serializado com pickle do Python. Este é o mesmo objeto que :class:`pickle."
48+
"PickleBuffer` na camada Python."
49+
50+
#: ../../c-api/picklebuffer.rst:25
51+
msgid ""
52+
"Return true if *op* is a pickle buffer instance. This function always "
53+
"succeeds."
54+
msgstr ""
55+
"Retorna verdadeiro se *op* for uma instância de buffer serializado com "
56+
"pickle. Esta função sempre tem sucesso."
57+
58+
#: ../../c-api/picklebuffer.rst:31
59+
msgid "Create a pickle buffer from the object *obj*."
60+
msgstr "Cria um buffer serializado com pickle a partir do objeto *obj*."
61+
62+
#: ../../c-api/picklebuffer.rst:33
63+
msgid ""
64+
"This function will fail if *obj* doesn't support the :ref:`buffer protocol "
65+
"<bufferobjects>`."
66+
msgstr ""
67+
"Esta função falhará se *obj* não oferecer suporte ao :ref:`protocolo de "
68+
"buffer <bufferobjects>`."
69+
70+
#: ../../c-api/picklebuffer.rst:35
71+
msgid ""
72+
"On success, return a new pickle buffer instance. On failure, set an "
73+
"exception and return ``NULL``."
74+
msgstr ""
75+
"Em caso de sucesso, retorna uma nova instância de buffer serializado com "
76+
"pickle. Em caso de falha, define uma exceção e retorna ``NULL``."
77+
78+
#: ../../c-api/picklebuffer.rst:38
79+
msgid "Analogous to calling :class:`pickle.PickleBuffer` with *obj* in Python."
80+
msgstr "Análogo a chamar :class:`pickle.PickleBuffer` com *obj* em Python."
81+
82+
#: ../../c-api/picklebuffer.rst:43
83+
msgid ""
84+
"Get a pointer to the underlying :c:type:`Py_buffer` that the pickle buffer "
85+
"wraps."
86+
msgstr ""
87+
"Obtém um ponteiro para o :c:type:`Py_buffer` subjacente que o buffer "
88+
"serializado com pickle encapsula."
89+
90+
#: ../../c-api/picklebuffer.rst:45
91+
msgid ""
92+
"The returned pointer is valid as long as *picklebuf* is alive and has not "
93+
"been released. The caller must not modify or free the returned :c:type:"
94+
"`Py_buffer`. If the pickle buffer has been released, raise :exc:`ValueError`."
95+
msgstr ""
96+
"O ponteiro retornado é válido enquanto *picklebuf* estiver ativo e não tiver "
97+
"sido liberado. O chamador não deve modificar ou liberar o :c:type:"
98+
"`Py_buffer` retornado. Se o buffer serializado com pickle tiver sido "
99+
"liberado, levanta uma exceção :exc:`ValueError`."
100+
101+
#: ../../c-api/picklebuffer.rst:49
102+
msgid ""
103+
"On success, return a pointer to the buffer view. On failure, set an "
104+
"exception and return ``NULL``."
105+
msgstr ""
106+
"Em caso de sucesso, retorna um ponteiro para a visualização do buffer. Em "
107+
"caso de falha, define uma exceção e retorna ``NULL``."
108+
109+
#: ../../c-api/picklebuffer.rst:55
110+
msgid "Release the underlying buffer held by the pickle buffer."
111+
msgstr "Libera o buffer subjacente mantido pelo buffer serializado com pickle."
112+
113+
#: ../../c-api/picklebuffer.rst:57
114+
msgid ""
115+
"Return ``0`` on success. On failure, set an exception and return ``-1``."
116+
msgstr ""
117+
"Retorna ``0`` em caso de sucesso. Em caso de falha, define uma exceção e "
118+
"retorna ``-1``."
119+
120+
#: ../../c-api/picklebuffer.rst:59
121+
msgid "Analogous to calling :meth:`pickle.PickleBuffer.release` in Python."
122+
msgstr "Análogo a chamar :meth:`pickle.PickleBuffer.release` em Python."
123+
124+
#: ../../c-api/picklebuffer.rst:5
125+
msgid "object"
126+
msgstr "objeto"
127+
128+
#: ../../c-api/picklebuffer.rst:5
129+
msgid "PickleBuffer"
130+
msgstr "PickleBuffer"

0 commit comments

Comments
 (0)