5
5
#
6
6
# Translators:
7
7
# i17obot <[email protected] >, 2020
8
- # Rafael Fontenelle <[email protected] >, 2023
8
+ # Rafael Fontenelle <[email protected] >, 2025
9
9
#
10
10
#, fuzzy
11
11
msgid ""
12
12
msgstr ""
13
13
"Project-Id-Version : Python 3.9\n "
14
14
"Report-Msgid-Bugs-To : \n "
15
- "POT-Creation-Date : 2025-01-03 16:35 +0000\n "
15
+ "POT-Creation-Date : 2025-04-25 16:43 +0000\n "
16
16
"PO-Revision-Date : 2017-02-16 23:24+0000\n "
17
- "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2023 \n "
17
+ "
Last-Translator :
Rafael Fontenelle <[email protected] >, 2025 \n "
18
18
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
19
19
"teams/5390/pt_BR/)\n "
20
20
"Language : pt_BR\n "
@@ -61,13 +61,19 @@ msgid ""
61
61
"repr` function described below. Changing the attributes of this object will "
62
62
"affect the size limits used by :func:`.repr` and the Python debugger."
63
63
msgstr ""
64
+ "Esta é uma instância de :class:`Repr` que é usada para fornecer a função :"
65
+ "func:`.repr` descrita abaixo. Alterar os atributos deste objeto afetará os "
66
+ "limites de tamanho usados por :func:`.repr` e pelo depurador Python."
64
67
65
68
#: ../../library/reprlib.rst:37
66
69
msgid ""
67
70
"This is the :meth:`~Repr.repr` method of ``aRepr``. It returns a string "
68
71
"similar to that returned by the built-in function of the same name, but with "
69
72
"limits on most sizes."
70
73
msgstr ""
74
+ "Este é o método :meth:`~Repr.repr` de ``aRepr``. Ele retorna uma string "
75
+ "semelhante à retornada pela função interna de mesmo nome, mas com limites na "
76
+ "maioria dos tamanhos."
71
77
72
78
#: ../../library/reprlib.rst:41
73
79
msgid ""
@@ -93,25 +99,35 @@ msgid ""
93
99
"provide size limits for the representations of different object types, and "
94
100
"methods which format specific object types."
95
101
msgstr ""
102
+ "Instâncias :class:`Repr` fornecem vários atributos que podem ser usados para "
103
+ "fornecer limites de tamanho para as representações de diferentes tipos de "
104
+ "objetos e métodos que formatam tipos de objetos específicos."
96
105
97
106
#: ../../library/reprlib.rst:81
98
107
msgid ""
99
108
"Depth limit on the creation of recursive representations. The default is "
100
109
"``6``."
101
110
msgstr ""
111
+ "Limite de profundidade na criação de representações recursivas. O padrão é "
112
+ "``6``."
102
113
103
114
#: ../../library/reprlib.rst:92
104
115
msgid ""
105
116
"Limits on the number of entries represented for the named object type. The "
106
117
"default is ``4`` for :attr:`maxdict`, ``5`` for :attr:`maxarray`, and ``6`` "
107
118
"for the others."
108
119
msgstr ""
120
+ "Limites no número de entradas representadas para o tipo de objeto nomeado. O "
121
+ "padrão é ``4`` para :attr:`maxdict`, ``5`` para :attr:`maxarray` e ``6`` "
122
+ "para os demais."
109
123
110
124
#: ../../library/reprlib.rst:99
111
125
msgid ""
112
126
"Maximum number of characters in the representation for an integer. Digits "
113
127
"are dropped from the middle. The default is ``40``."
114
128
msgstr ""
129
+ "Número máximo de caracteres na representação para um inteiro. Os dígitos são "
130
+ "omitidos a partir do meio. O padrão é ``40``."
115
131
116
132
#: ../../library/reprlib.rst:105
117
133
msgid ""
@@ -120,19 +136,29 @@ msgid ""
120
136
"source: if escape sequences are needed in the representation, these may be "
121
137
"mangled when the representation is shortened. The default is ``30``."
122
138
msgstr ""
139
+ "Limite no número de caracteres na representação da string. Observe que a "
140
+ "representação \" normal\" da string é usada como fonte de caracteres: se "
141
+ "sequências de escape forem necessárias na representação, elas poderão ser "
142
+ "distorcidas quando a representação for encurtada. O padrão é ``30``."
123
143
124
144
#: ../../library/reprlib.rst:113
125
145
msgid ""
126
146
"This limit is used to control the size of object types for which no specific "
127
147
"formatting method is available on the :class:`Repr` object. It is applied in "
128
148
"a similar manner as :attr:`maxstring`. The default is ``20``."
129
149
msgstr ""
150
+ "Este limite é usado para controlar o tamanho de tipos de objetos para os "
151
+ "quais nenhum método de formatação específico está disponível no objeto :"
152
+ "class:`Repr`. Ele é aplicado de maneira semelhante a :attr:`maxstring`. O "
153
+ "padrão é ``20``."
130
154
131
155
#: ../../library/reprlib.rst:120
132
156
msgid ""
133
157
"The equivalent to the built-in :func:`repr` that uses the formatting imposed "
134
158
"by the instance."
135
159
msgstr ""
160
+ "O equivalente ao :func:`repr` embutido que usa a formatação imposta pela "
161
+ "instância."
136
162
137
163
#: ../../library/reprlib.rst:126
138
164
msgid ""
@@ -142,6 +168,11 @@ msgid ""
142
168
"formatting, with ``level - 1`` for the value of *level* in the recursive "
143
169
"call."
144
170
msgstr ""
171
+ "Implementação recursiva usada por :meth:`.repr`. Esta usa o tipo de *obj* "
172
+ "para determinar qual método de formatação chamar, passando *obj* e *level*. "
173
+ "Os métodos específicos de tipo devem chamar :meth:`repr1` para realizar a "
174
+ "formatação recursiva, com ``level - 1`` para o valor de *level* na chamada "
175
+ "recursiva."
145
176
146
177
#: ../../library/reprlib.rst:135
147
178
msgid ""
@@ -151,10 +182,16 @@ msgid ""
151
182
"meth:`repr1`. Type-specific methods which need to recursively format a value "
152
183
"should call ``self.repr1(subobj, level - 1)``."
153
184
msgstr ""
185
+ "Métodos de formatação para tipos específicos são implementados como métodos "
186
+ "com um nome baseado no nome do tipo. No nome do método, **TYPE** é "
187
+ "substituído por ``'_'.join(type(obj).__name__.split())``. O despacho para "
188
+ "esses métodos é tratado por :meth:`repr1`. Métodos específicos de tipo que "
189
+ "precisam formatar um valor recursivamente devem chamar ``self.repr1(subobj, "
190
+ "level - 1)``."
154
191
155
192
#: ../../library/reprlib.rst:145
156
193
msgid "Subclassing Repr Objects"
157
- msgstr ""
194
+ msgstr "Estendendo objetos Repr "
158
195
159
196
#: ../../library/reprlib.rst:147
160
197
msgid ""
0 commit comments