@@ -237,37 +237,37 @@ msgstr "Retorna o número de ocorrências de *b* em *a*."
237237
238238#: ../../library/operator.rst:225
239239msgid "Remove the value of *a* at index *b*."
240- msgstr "Remove o valor de *a* no índice *b*."
240+ msgstr "Remove de *a* o valor no índice *b*."
241241
242242#: ../../library/operator.rst:231
243243msgid "Return the value of *a* at index *b*."
244- msgstr "Retorna o valor de *a* no índice *b*."
244+ msgstr "Retorna de *a* o valor no índice *b*."
245245
246246#: ../../library/operator.rst:236
247247msgid "Return the index of the first of occurrence of *b* in *a*."
248248msgstr "Retorna o índice da primeira ocorrência de *b* em *a*."
249249
250250#: ../../library/operator.rst:242
251251msgid "Set the value of *a* at index *b* to *c*."
252- msgstr "Define o valor de *a* no índice *b* para *c*."
252+ msgstr "Define em *a* o valor no índice *b* para *c*."
253253
254254#: ../../library/operator.rst:247
255255msgid ""
256256"Return an estimated length for the object *o*. First try to return its "
257257"actual length, then an estimate using :meth:`object.__length_hint__`, and "
258258"finally return the default value."
259259msgstr ""
260- "Retorna um comprimento estimado para o objeto *o*. Primeiro tente retornar o "
260+ "Retorna um comprimento estimado para o objeto *o*. Primeiro tenta retornar o "
261261"seu comprimento real, em seguida, uma estimativa utilizando :meth:`object."
262262"__length_hint__`, e finalmente retorna o valor padrão."
263263
264264#: ../../library/operator.rst:254
265265msgid "The following operation works with callables:"
266- msgstr ""
266+ msgstr "Os operadores seguintes funcionam com chamáveis: "
267267
268268#: ../../library/operator.rst:259
269269msgid "Return ``obj(*args, **kwargs)``."
270- msgstr ""
270+ msgstr "Retorna ``obj(*args, **kwargs)``. "
271271
272272#: ../../library/operator.rst:264
273273msgid ""
@@ -278,8 +278,9 @@ msgid ""
278278msgstr ""
279279"O módulo :mod:`operator` também define ferramentas para procura de itens e "
280280"atributos generalizados. Estes são úteis para fazer extração de campo "
281- "rapidamente como argumentos para a função :func:`map`, :func:`sorted`, :meth:"
282- "`itertools.groupby`, ou outra função que espera um argumento de função."
281+ "rapidamente como argumentos para as funções :func:`map`, :func:`sorted`, :"
282+ "meth:`itertools.groupby`, ou outra função que espera uma função como "
283+ "argumento."
283284
284285#: ../../library/operator.rst:273
285286msgid ""
@@ -325,8 +326,8 @@ msgid ""
325326"returns a tuple of lookup values. For example:"
326327msgstr ""
327328"Retorna um objeto chamável que busca *item* de seu operando usando o "
328- "operando do método :meth:`__getitem__`. Se múltiplo itens são especificados, "
329- "retorna uma tupla de valores da pesquisa. Por exemplo:"
329+ "operando do método :meth:`__getitem__`. Se múltiplos itens são "
330+ "especificados, retorna uma tupla de valores da pesquisa. Por exemplo:"
330331
331332#: ../../library/operator.rst:312
332333msgid "After ``f = itemgetter(2)``, the call ``f(r)`` returns ``r[2]``."
@@ -348,7 +349,7 @@ msgid ""
348349"accept an index or a slice:"
349350msgstr ""
350351"Os itens podem ser qualquer tipo aceito pelo método :meth:`__getitem__`. Os "
351- "dicionários aceitam qualquer valor hashable . Listas, tuplas e strings "
352+ "dicionários aceitam qualquer valor hasheável . Listas, tuplas e strings "
352353"aceitam um índice ou uma fatia:"
353354
354355#: ../../library/operator.rst:343
@@ -366,7 +367,7 @@ msgid ""
366367"to the method as well. For example:"
367368msgstr ""
368369"Retorna um objeto chamável que invoca o método *name* em seu operando. Se "
369- "argumentos adicionais e/ou argumentos de keyword forem fornecidos, os mesmos "
370+ "argumentos adicionais e/ou argumentos nomeados forem fornecidos, os mesmos "
370371"serão passados para o método. Por exemplo:"
371372
372373#: ../../library/operator.rst:360
@@ -386,15 +387,15 @@ msgstr ""
386387
387388#: ../../library/operator.rst:376
388389msgid "Mapping Operators to Functions"
389- msgstr "Mapeando os Operadores para suas Respectivas Funções "
390+ msgstr "Mapeando os operadores para suas respectivas funções "
390391
391392#: ../../library/operator.rst:378
392393msgid ""
393394"This table shows how abstract operations correspond to operator symbols in "
394395"the Python syntax and the functions in the :mod:`operator` module."
395396msgstr ""
396- "Esta tabela mostra como as operações abstratos correspondem aos símbolos do "
397- "operador na sintaxe Python e as funções no módulo :mod:`operator`."
397+ "Esta tabela mostra como as operações abstratas correspondem aos símbolos do "
398+ "operador na sintaxe Python e às funções no módulo :mod:`operator`."
398399
399400#: ../../library/operator.rst:382
400401msgid "Operation"
@@ -406,7 +407,7 @@ msgstr "Sintaxe"
406407
407408#: ../../library/operator.rst:382
408409msgid "Function"
409- msgstr "Função "
410+ msgstr "Função"
410411
411412#: ../../library/operator.rst:384
412413msgid "Addition"
@@ -434,7 +435,7 @@ msgstr "``concat(seq1, seq2)``"
434435
435436#: ../../library/operator.rst:388
436437msgid "Containment Test"
437- msgstr "Teste de Contenção "
438+ msgstr "Teste de pertinência "
438439
439440#: ../../library/operator.rst:388
440441msgid "``obj in seq``"
@@ -466,7 +467,7 @@ msgstr "``floordiv(a, b)``"
466467
467468#: ../../library/operator.rst:394
468469msgid "Bitwise And"
469- msgstr "E Bit a Bit "
470+ msgstr "E bit a bit "
470471
471472#: ../../library/operator.rst:394
472473msgid "``a & b``"
@@ -478,7 +479,7 @@ msgstr "``and_(a, b)``"
478479
479480#: ../../library/operator.rst:396
480481msgid "Bitwise Exclusive Or"
481- msgstr "Ou Exclusivo Bit a Bit "
482+ msgstr "Ou exclusivo bit a bit "
482483
483484#: ../../library/operator.rst:396
484485msgid "``a ^ b``"
@@ -490,7 +491,7 @@ msgstr "``xor(a, b)``"
490491
491492#: ../../library/operator.rst:398
492493msgid "Bitwise Inversion"
493- msgstr "Inversão Bit a Bit "
494+ msgstr "Inversão bit a bit "
494495
495496#: ../../library/operator.rst:398
496497msgid "``~ a``"
@@ -502,7 +503,7 @@ msgstr "``invert(a)``"
502503
503504#: ../../library/operator.rst:400
504505msgid "Bitwise Or"
505- msgstr "Ou Bit a Bit "
506+ msgstr "Ou bit a bit "
506507
507508#: ../../library/operator.rst:400
508509msgid "``a | b``"
@@ -558,7 +559,7 @@ msgstr "``setitem(obj, k, v)``"
558559
559560#: ../../library/operator.rst:410
560561msgid "Indexed Deletion"
561- msgstr "Eliminação Indexada "
562+ msgstr "Eliminação indexada "
562563
563564#: ../../library/operator.rst:410
564565msgid "``del obj[k]``"
@@ -582,7 +583,7 @@ msgstr "``getitem(obj, k)``"
582583
583584#: ../../library/operator.rst:414
584585msgid "Left Shift"
585- msgstr "Left Shift "
586+ msgstr "Deslocamento à esquerda "
586587
587588#: ../../library/operator.rst:414
588589msgid "``a << b``"
@@ -618,7 +619,7 @@ msgstr "``mul(a, b)``"
618619
619620#: ../../library/operator.rst:420
620621msgid "Matrix Multiplication"
621- msgstr "Multiplicação de Arrays "
622+ msgstr "Multiplicação de matrizes "
622623
623624#: ../../library/operator.rst:420
624625msgid "``a @ b``"
@@ -630,7 +631,7 @@ msgstr "``matmul(a, b)``"
630631
631632#: ../../library/operator.rst:422
632633msgid "Negation (Arithmetic)"
633- msgstr "Negação (Aritmética )"
634+ msgstr "Negação (aritmética )"
634635
635636#: ../../library/operator.rst:422
636637msgid "``- a``"
@@ -642,7 +643,7 @@ msgstr "``neg(a)``"
642643
643644#: ../../library/operator.rst:424
644645msgid "Negation (Logical)"
645- msgstr "Negação (Lógica )"
646+ msgstr "Negação (lógica )"
646647
647648#: ../../library/operator.rst:424
648649msgid "``not a``"
@@ -666,7 +667,7 @@ msgstr "``pos(a)``"
666667
667668#: ../../library/operator.rst:428
668669msgid "Right Shift"
669- msgstr "Right Shift "
670+ msgstr "Deslocamento à direita "
670671
671672#: ../../library/operator.rst:428
672673msgid "``a >> b``"
@@ -678,7 +679,7 @@ msgstr "``rshift(a, b)``"
678679
679680#: ../../library/operator.rst:430
680681msgid "Slice Assignment"
681- msgstr "Atribuição de Fatiamento "
682+ msgstr "Atribuição de fatia "
682683
683684#: ../../library/operator.rst:430
684685msgid "``seq[i:j] = values``"
@@ -690,7 +691,7 @@ msgstr "``setitem(seq, slice(i, j), values)``"
690691
691692#: ../../library/operator.rst:432
692693msgid "Slice Deletion"
693- msgstr "Remoção de Fatiamento "
694+ msgstr "Remoção de fatia "
694695
695696#: ../../library/operator.rst:432
696697msgid "``del seq[i:j]``"
@@ -714,7 +715,7 @@ msgstr "``getitem(seq, slice(i, j))``"
714715
715716#: ../../library/operator.rst:436
716717msgid "String Formatting"
717- msgstr "Formatação de Strings "
718+ msgstr "Formatação de strings "
718719
719720#: ../../library/operator.rst:436
720721msgid "``s % obj``"
@@ -738,7 +739,7 @@ msgstr "``sub(a, b)``"
738739
739740#: ../../library/operator.rst:440
740741msgid "Truth Test"
741- msgstr "Teste Verdadeiro "
742+ msgstr "Teste verdadeiro "
742743
743744#: ../../library/operator.rst:440
744745msgid "``obj``"
@@ -823,7 +824,7 @@ msgid ""
823824"y``."
824825msgstr ""
825826"Muitas operações possuem uma versão \" in-place\" . Listadas abaixo, as "
826- "funções fornecem um acesso mais primitivo as operadores locais do que a "
827+ "funções fornecem um acesso mais primitivo aos operadores locais do que a "
827828"sintaxe usual; por exemplo, a :term:`instrução` ``x += y`` é equivalente a "
828829"``x = operator.iadd(x, y)``. Outra maneira de colocá-lo é dizendo que ``z = "
829830"operator.iadd(x, y)`` é equivalente à instrução composta ``z = x; z += y``."
@@ -845,7 +846,7 @@ msgid ""
845846"For immutable targets such as strings, numbers, and tuples, the updated "
846847"value is computed, but not assigned back to the input variable:"
847848msgstr ""
848- "Para os casos imutáveis, como as Strings , números e tuplas, o valor "
849+ "Para os casos imutáveis, como as strings , números e tuplas, o valor "
849850"atualizado será calculado, mas não será atribuído de volta à variável de "
850851"entrada:"
851852
@@ -859,11 +860,11 @@ msgstr ""
859860
860861#: ../../library/operator.rst:491
861862msgid "``a = iadd(a, b)`` is equivalent to ``a += b``."
862- msgstr "``a = iadd(a, b)`` is equivalent to ``a += b``."
863+ msgstr "``a = iadd(a, b)`` é equivalente a ``a += b``."
863864
864865#: ../../library/operator.rst:497
865866msgid "``a = iand(a, b)`` is equivalent to ``a &= b``."
866- msgstr "``a = iand(a, b)`` is equivalent to ``a &= b``."
867+ msgstr "``a = iand(a, b)`` é equivalente a ``a &= b``."
867868
868869#: ../../library/operator.rst:503
869870msgid ""
0 commit comments