@@ -11,7 +11,7 @@ msgid ""
11
11
msgstr ""
12
12
"Project-Id-Version : Python 3.12\n "
13
13
"Report-Msgid-Bugs-To : \n "
14
- "POT-Creation-Date : 2025-03-07 14:53 +0000\n "
14
+ "POT-Creation-Date : 2025-04-04 14:56 +0000\n "
15
15
"PO-Revision-Date : 2024-05-11 00:33+0000\n "
16
16
"
Last-Translator :
Rafael Fontenelle <[email protected] >, 2025\n "
17
17
"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -140,17 +140,12 @@ msgstr ""
140
140
141
141
#: ../../library/cmath.rst:60
142
142
msgid ""
143
- "Return the phase of *x * (also known as the *argument* of *x *), as a float. "
144
- "``phase(x )`` is equivalent to ``math.atan2(x .imag, x .real)``. The result "
143
+ "Return the phase of *z * (also known as the *argument* of *z *), as a float. "
144
+ "``phase(z )`` is equivalent to ``math.atan2(z .imag, z .real)``. The result "
145
145
"lies in the range [-\\ *π*, *π*], and the branch cut for this operation lies "
146
146
"along the negative real axis. The sign of the result is the same as the "
147
- "sign of ``x .imag``, even when ``x .imag`` is zero::"
147
+ "sign of ``z .imag``, even when ``z .imag`` is zero::"
148
148
msgstr ""
149
- "Retorna a fase de *x* (também conhecido como *argumento* de *x*), como um "
150
- "ponto flutuante. ``phase(x)`` é equivalente a ``math.atan2(x.imag, x."
151
- "real)``. O resultado está no intervalo [-\\ *π*, *π*], e o corte de "
152
- "ramificação para esta operação está ao longo do eixo real negativo. O sinal "
153
- "do resultado é igual ao sinal de ``x.imag``, mesmo quando ``x.imag`` é zero::"
154
149
155
150
#: ../../library/cmath.rst:66
156
151
msgid ""
@@ -166,182 +161,144 @@ msgstr ""
166
161
167
162
#: ../../library/cmath.rst:74
168
163
msgid ""
169
- "The modulus (absolute value) of a complex number *x * can be computed using "
164
+ "The modulus (absolute value) of a complex number *z * can be computed using "
170
165
"the built-in :func:`abs` function. There is no separate :mod:`cmath` module "
171
166
"function for this operation."
172
167
msgstr ""
173
- "O módulo (valor absoluto) de um número complexo *x* pode ser calculado "
174
- "usando a função embutida :func:`abs`. Não há função do módulo :mod:`cmath` "
175
- "separada para esta operação."
176
168
177
169
#: ../../library/cmath.rst:81
178
170
msgid ""
179
- "Return the representation of *x * in polar coordinates. Returns a pair ``(r, "
180
- "phi)`` where *r* is the modulus of *x * and phi is the phase of *x *. "
181
- "``polar(x )`` is equivalent to ``(abs(x ), phase(x ))``."
171
+ "Return the representation of *z * in polar coordinates. Returns a pair ``(r, "
172
+ "phi)`` where *r* is the modulus of *z * and * phi* is the phase of *z *. "
173
+ "``polar(z )`` is equivalent to ``(abs(z ), phase(z ))``."
182
174
msgstr ""
183
- "Retorna a representação de *x* em coordenadas polares. Retorna um par ``(r, "
184
- "phi)`` onde *r* é o módulo de *x* e phi é a fase de *x*. ``polar(x)`` é "
185
- "equivalente a ``(abs(x), phase(x))``."
186
175
187
176
#: ../../library/cmath.rst:89
188
177
msgid ""
189
- "Return the complex number *x * with polar coordinates *r* and *phi*. "
178
+ "Return the complex number *z * with polar coordinates *r* and *phi*. "
190
179
"Equivalent to ``complex(r * math.cos(phi), r * math.sin(phi))``."
191
180
msgstr ""
192
- "Retorna o número complexo *x* com coordenadas polares *r* e *phi*. "
193
- "Equivalente a ``complex(r * math.cos(phi), r * math.sin(phi))``."
194
181
195
182
#: ../../library/cmath.rst:94
196
183
msgid "Power and logarithmic functions"
197
184
msgstr "Funções de potência e logarítmicas"
198
185
199
186
#: ../../library/cmath.rst:98
200
187
msgid ""
201
- "Return *e* raised to the power *x *, where *e* is the base of natural "
188
+ "Return *e* raised to the power *z *, where *e* is the base of natural "
202
189
"logarithms."
203
190
msgstr ""
204
- "Retorna *e* elevado à potência *x*, onde *e* é a base de logaritmos naturais."
205
191
206
192
#: ../../library/cmath.rst:104
207
193
msgid ""
208
- "Returns the logarithm of *x * to the given *base*. If the *base* is not "
209
- "specified, returns the natural logarithm of *x *. There is one branch cut, "
194
+ "Return the logarithm of *z * to the given *base*. If the *base* is not "
195
+ "specified, returns the natural logarithm of *z *. There is one branch cut, "
210
196
"from 0 along the negative real axis to -∞."
211
197
msgstr ""
212
- "Retorna o logaritmo de *x* para a *base* fornecida. Se a *base* não for "
213
- "especificada, retorna o logaritmo natural de *x*. Há um corte de "
214
- "ramificação, de 0 ao longo do eixo real negativo até -∞."
215
198
216
199
#: ../../library/cmath.rst:111
217
200
msgid ""
218
- "Return the base-10 logarithm of *x *. This has the same branch cut as :func:"
201
+ "Return the base-10 logarithm of *z *. This has the same branch cut as :func:"
219
202
"`log`."
220
203
msgstr ""
221
- "Retorna o logaritmo de *x* na base 10. Este tem o mesmo corte de ramificação "
222
- "que :func:`log`."
223
204
224
205
#: ../../library/cmath.rst:117
225
206
msgid ""
226
- "Return the square root of *x *. This has the same branch cut as :func:`log`."
207
+ "Return the square root of *z *. This has the same branch cut as :func:`log`."
227
208
msgstr ""
228
- "Retorna a raiz quadrada de *x*. Este tem o mesmo corte de ramificação que :"
229
- "func:`log`."
230
209
231
210
#: ../../library/cmath.rst:121
232
211
msgid "Trigonometric functions"
233
212
msgstr "Funções trigonométricas"
234
213
235
214
#: ../../library/cmath.rst:125
236
215
msgid ""
237
- "Return the arc cosine of *x *. There are two branch cuts: One extends right "
216
+ "Return the arc cosine of *z *. There are two branch cuts: One extends right "
238
217
"from 1 along the real axis to ∞. The other extends left from -1 along the "
239
218
"real axis to -∞."
240
219
msgstr ""
241
- "Retorna o arco cosseno de *x*. Existem dois cortes de ramificação: um se "
242
- "estende desde 1 ao longo do eixo real até ∞. O outro se estende para a "
243
- "esquerda de -1 ao longo do eixo real até -∞."
244
220
245
221
#: ../../library/cmath.rst:132
246
222
msgid ""
247
- "Return the arc sine of *x *. This has the same branch cuts as :func:`acos`."
223
+ "Return the arc sine of *z *. This has the same branch cuts as :func:`acos`."
248
224
msgstr ""
249
- "Retorna o arco seno de *x*. Tem os mesmos cortes de ramificação que :func:"
250
- "`acos`."
251
225
252
226
#: ../../library/cmath.rst:137
253
227
msgid ""
254
- "Return the arc tangent of *x *. There are two branch cuts: One extends from "
228
+ "Return the arc tangent of *z *. There are two branch cuts: One extends from "
255
229
"``1j`` along the imaginary axis to ``∞j``. The other extends from ``-1j`` "
256
230
"along the imaginary axis to ``-∞j``."
257
231
msgstr ""
258
- "Retorna o arco tangente de *x*. Existem dois cortes de ramificação: Um se "
259
- "estende de ``1j`` ao longo do eixo imaginário até ``∞j``. O outro se estende "
260
- "de ``-1j`` ao longo do eixo imaginário até ``-∞j``."
261
232
262
233
#: ../../library/cmath.rst:144
263
- msgid "Return the cosine of *x *."
264
- msgstr "Retorna o cosseno de *x*. "
234
+ msgid "Return the cosine of *z *."
235
+ msgstr ""
265
236
266
237
#: ../../library/cmath.rst:149
267
- msgid "Return the sine of *x *."
268
- msgstr "Retorna o seno de *x*. "
238
+ msgid "Return the sine of *z *."
239
+ msgstr ""
269
240
270
241
#: ../../library/cmath.rst:154
271
- msgid "Return the tangent of *x *."
272
- msgstr "Retorna a tangente de *x*. "
242
+ msgid "Return the tangent of *z *."
243
+ msgstr ""
273
244
274
245
#: ../../library/cmath.rst:158
275
246
msgid "Hyperbolic functions"
276
247
msgstr "Funções hiperbólicas"
277
248
278
249
#: ../../library/cmath.rst:162
279
250
msgid ""
280
- "Return the inverse hyperbolic cosine of *x *. There is one branch cut, "
251
+ "Return the inverse hyperbolic cosine of *z *. There is one branch cut, "
281
252
"extending left from 1 along the real axis to -∞."
282
253
msgstr ""
283
- "Retorna o cosseno hiperbólico inverso de *x*. Há um corte de ramificação, "
284
- "estendendo-se para a esquerda de 1 ao longo do eixo real até -∞."
285
254
286
255
#: ../../library/cmath.rst:168
287
256
msgid ""
288
- "Return the inverse hyperbolic sine of *x *. There are two branch cuts: One "
257
+ "Return the inverse hyperbolic sine of *z *. There are two branch cuts: One "
289
258
"extends from ``1j`` along the imaginary axis to ``∞j``. The other extends "
290
259
"from ``-1j`` along the imaginary axis to ``-∞j``."
291
260
msgstr ""
292
- "Retorna o seno hiperbólico inverso de *x*. Existem dois cortes de "
293
- "ramificação: Um se estende de ``1j`` ao longo do eixo imaginário até ``∞j``. "
294
- "O outro se estende de ``-1j`` ao longo do eixo imaginário até ``-∞j``."
295
261
296
262
#: ../../library/cmath.rst:175
297
263
msgid ""
298
- "Return the inverse hyperbolic tangent of *x *. There are two branch cuts: One "
264
+ "Return the inverse hyperbolic tangent of *z *. There are two branch cuts: One "
299
265
"extends from ``1`` along the real axis to ``∞``. The other extends from "
300
266
"``-1`` along the real axis to ``-∞``."
301
267
msgstr ""
302
- "Retorna a tangente hiperbólica inversa de *x*. Existem dois cortes de "
303
- "ramificação: Um se estende de ``1`` ao longo do eixo real até ``∞``. O outro "
304
- "se estende de ``-1`` ao longo do eixo real até ``-∞``."
305
268
306
269
#: ../../library/cmath.rst:182
307
- msgid "Return the hyperbolic cosine of *x *."
308
- msgstr "Retorna o cosseno hiperbólico de *x*. "
270
+ msgid "Return the hyperbolic cosine of *z *."
271
+ msgstr ""
309
272
310
273
#: ../../library/cmath.rst:187
311
- msgid "Return the hyperbolic sine of *x *."
312
- msgstr "Retorna o seno hiperbólico de *x*. "
274
+ msgid "Return the hyperbolic sine of *z *."
275
+ msgstr ""
313
276
314
277
#: ../../library/cmath.rst:192
315
- msgid "Return the hyperbolic tangent of *x *."
316
- msgstr "Retorna a tangente hiperbólica de *x*. "
278
+ msgid "Return the hyperbolic tangent of *z *."
279
+ msgstr ""
317
280
318
281
#: ../../library/cmath.rst:196
319
282
msgid "Classification functions"
320
283
msgstr "Funções de classificação"
321
284
322
285
#: ../../library/cmath.rst:200
323
286
msgid ""
324
- "Return ``True`` if both the real and imaginary parts of *x * are finite, and "
287
+ "Return ``True`` if both the real and imaginary parts of *z * are finite, and "
325
288
"``False`` otherwise."
326
289
msgstr ""
327
- "Retorna ``True`` se ambas as partes real e imaginária de *x* forem finitas, "
328
- "e ``False`` caso contrário."
329
290
330
291
#: ../../library/cmath.rst:208
331
292
msgid ""
332
- "Return ``True`` if either the real or the imaginary part of *x * is an "
293
+ "Return ``True`` if either the real or the imaginary part of *z * is an "
333
294
"infinity, and ``False`` otherwise."
334
295
msgstr ""
335
- "Retorna ``True`` se ou a parte real ou a imaginária de *x* for infinita, e "
336
- "``False`` caso contrário."
337
296
338
297
#: ../../library/cmath.rst:214
339
298
msgid ""
340
- "Return ``True`` if either the real or the imaginary part of *x * is a NaN, "
299
+ "Return ``True`` if either the real or the imaginary part of *z * is a NaN, "
341
300
"and ``False`` otherwise."
342
301
msgstr ""
343
- "Retorna ``True`` se ou a parte real ou a imaginária de *x* for NaN, e "
344
- "``False`` caso contrário."
345
302
346
303
#: ../../library/cmath.rst:220
347
304
msgid ""
0 commit comments