4
4
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
5
#
6
6
# Translators:
7
- # Rafael Fontenelle <[email protected] >, 2023
7
+ # Rafael Fontenelle <[email protected] >, 2024
8
8
#
9
9
#, fuzzy
10
10
msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.13\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2024-05-31 14:14 +0000\n "
14
+ "POT-Creation-Date : 2024-06-07 14:15 +0000\n "
15
15
"PO-Revision-Date : 2021-06-28 00:50+0000\n "
16
- "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2023 \n "
16
+ "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2024 \n "
17
17
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
18
18
"teams/5390/pt_BR/)\n "
19
19
"MIME-Version : 1.0\n "
@@ -45,17 +45,23 @@ msgid ""
45
45
"Return non-zero if *ob* is either a reference or proxy object. This "
46
46
"function always succeeds."
47
47
msgstr ""
48
+ "Retorna não zero se *ob* for um objeto referência ou um objeto "
49
+ "intermediário. Esta função sempre tem sucesso."
48
50
49
51
#: ../../c-api/weakref.rst:22
50
52
msgid ""
51
53
"Return non-zero if *ob* is a reference object. This function always "
52
54
"succeeds."
53
55
msgstr ""
56
+ "Retorna não zero se *ob* for um objeto referência. Esta função sempre tem "
57
+ "sucesso."
54
58
55
59
#: ../../c-api/weakref.rst:27
56
60
msgid ""
57
61
"Return non-zero if *ob* is a proxy object. This function always succeeds."
58
62
msgstr ""
63
+ "Retorna não zero se *ob* for um objeto intermediário. Esta função sempre tem "
64
+ "sucesso."
59
65
60
66
#: ../../c-api/weakref.rst:32
61
67
msgid ""
@@ -68,6 +74,15 @@ msgid ""
68
74
"weakly referenceable object, or if *callback* is not callable, ``None``, or "
69
75
"``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
70
76
msgstr ""
77
+ "Retorna um objeto de referência fraco para o objeto *ob*. Isso sempre "
78
+ "retornará uma nova referência, mas não é garantido para criar um novo "
79
+ "objeto; um objeto de referência existente pode ser retornado. O segundo "
80
+ "parâmetro, *callback*, pode ser um objeto chamável que recebe notificação "
81
+ "quando *ob* for lixo coletado; ele deve aceitar um único parâmetro, que será "
82
+ "o objeto de referência fraco propriamente dito. *callback* também pode ser "
83
+ "``None`` ou ``NULL``. Se *ob* não for um objeto fracamente referenciável, ou "
84
+ "se *callback* não for um chamável, ``None``, ou ``NULL``, isso retornará "
85
+ "``NULL`` e levantará a :exc:`TypeError`."
71
86
72
87
#: ../../c-api/weakref.rst:44
73
88
msgid ""
@@ -80,32 +95,49 @@ msgid ""
80
95
"*ob* is not a weakly referenceable object, or if *callback* is not callable, "
81
96
"``None``, or ``NULL``, this will return ``NULL`` and raise :exc:`TypeError`."
82
97
msgstr ""
98
+ "Retorna um objeto de proxy de referência fraca para o objeto *ob*. Isso "
99
+ "sempre retornará uma nova referência, mas não é garantido para criar um novo "
100
+ "objeto; um objeto de proxy existente pode ser retornado. O segundo "
101
+ "parâmetro, *callback*, pode ser um objeto chamável que recebe notificação "
102
+ "quando *ob* for lixo coletado; ele deve aceitar um único parâmetro, que será "
103
+ "o objeto de referência fraco propriamente dito. *callback* também pode ser "
104
+ "``None`` ou ``NULL``. Se *ob* não for um objeto referência fraca, ou se "
105
+ "*callback* não for um chamável, ``None``, ou ``NULL``, isso retornará "
106
+ "``NULL`` e levantará a :exc:`TypeError`."
83
107
84
108
#: ../../c-api/weakref.rst:56
85
109
msgid ""
86
110
"Get a :term:`strong reference` to the referenced object from a weak "
87
111
"reference, *ref*, into *\\ *pobj*."
88
112
msgstr ""
113
+ "Obtém uma :term:`referência forte` para o objeto referenciado a partir de "
114
+ "uma referência fraca, *ref*, em *\\ *pobj*."
89
115
90
116
#: ../../c-api/weakref.rst:59
91
117
msgid ""
92
118
"On success, set *\\ *pobj* to a new :term:`strong reference` to the "
93
119
"referenced object and return 1."
94
120
msgstr ""
121
+ "Em caso de sucesso, define *\\ *pobj* como uma nova :term:`referência forte` "
122
+ "para o objeto referenciado e retorna 1."
95
123
96
124
#: ../../c-api/weakref.rst:61
97
125
msgid "If the reference is dead, set *\\ *pobj* to ``NULL`` and return 0."
98
126
msgstr ""
127
+ "Se a referência estiver quebrada, define *\\ *pobj* como ``NULL`` e retorna 0."
99
128
100
129
#: ../../c-api/weakref.rst:62
101
130
msgid "On error, raise an exception and return -1."
102
- msgstr ""
131
+ msgstr "Em caso de erro, levanta uma exceção e retorna -1. "
103
132
104
133
#: ../../c-api/weakref.rst:69
105
134
msgid ""
106
135
"Return a :term:`borrowed reference` to the referenced object from a weak "
107
136
"reference, *ref*. If the referent is no longer live, returns ``Py_None``."
108
137
msgstr ""
138
+ "Retorna uma :term:`referência emprestada` ao objeto referenciado a partir de "
139
+ "uma referência fraca, *ref*. Se o referente não estiver mais em tempo real, "
140
+ "retorna ``Py_None``."
109
141
110
142
#: ../../c-api/weakref.rst:74
111
143
msgid ""
@@ -121,7 +153,7 @@ msgstr ""
121
153
122
154
#: ../../c-api/weakref.rst:80 ../../c-api/weakref.rst:88
123
155
msgid "Use :c:func:`PyWeakref_GetRef` instead."
124
- msgstr ""
156
+ msgstr "Usa :c:func:`PyWeakref_GetRef`. "
125
157
126
158
#: ../../c-api/weakref.rst:85
127
159
msgid "Similar to :c:func:`PyWeakref_GetObject`, but does no error checking."
0 commit comments