@@ -12,7 +12,7 @@ msgid ""
1212msgstr ""
1313"Project-Id-Version :Python 3.10\n "
1414"Report-Msgid-Bugs-To :\n "
15- "POT-Creation-Date :2025-09-22 21:19 +0000\n "
15+ "POT-Creation-Date :2025-10-03 17:10 +0000\n "
1616"PO-Revision-Date :2025-09-22 15:58+0000\n "
1717"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1818"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -431,88 +431,100 @@ msgid ""
431431"Hash objects from this module follow the API of standard library's :mod:"
432432"`hashlib` objects."
433433msgstr ""
434+ "Os objetos hash deste módulo seguem a API dos objetos :mod:`hashlib` da "
435+ "biblioteca padrão."
434436
435437#: ../../library/hashlib.rst:322
436438msgid "Creating hash objects"
437- msgstr ""
439+ msgstr "Criando objetos hash "
438440
439441#: ../../library/hashlib.rst:324
440442msgid "New hash objects are created by calling constructor functions:"
441- msgstr ""
443+ msgstr "Novos objetos hash são criados chamando funções construtoras: "
442444
443445#: ../../library/hashlib.rst:338
444446msgid ""
445447"These functions return the corresponding hash objects for calculating "
446448"BLAKE2b or BLAKE2s. They optionally take these general parameters:"
447449msgstr ""
450+ "Essas funções retornam os objetos hash correspondentes para calcular BLAKE2b "
451+ "ou BLAKE2s. Opcionalmente, elas aceitam estes parâmetros gerais:"
448452
449453#: ../../library/hashlib.rst:341
450454msgid ""
451455"*data*: initial chunk of data to hash, which must be :term:`bytes-like "
452456"object`. It can be passed only as positional argument."
453457msgstr ""
458+ "*data*: pedaço inicial de dados para hash, que deve ser :term:`objeto bytes "
459+ "ou similar`. Pode ser passado apenas como argumento posicional."
454460
455461#: ../../library/hashlib.rst:344
456462msgid "*digest_size*: size of output digest in bytes."
457- msgstr ""
463+ msgstr "*digest_size*: tamanho do resumo de saída em bytes. "
458464
459465#: ../../library/hashlib.rst:346
460466msgid ""
461467"*key*: key for keyed hashing (up to 64 bytes for BLAKE2b, up to 32 bytes for "
462468"BLAKE2s)."
463469msgstr ""
470+ "*key*: chave para hash com chave (até 64 bytes para BLAKE2b, até 32 bytes "
471+ "para BLAKE2s)."
464472
465473#: ../../library/hashlib.rst:349
466474msgid ""
467475"*salt*: salt for randomized hashing (up to 16 bytes for BLAKE2b, up to 8 "
468476"bytes for BLAKE2s)."
469477msgstr ""
478+ "*salt*: sal para hash aleatório (até 16 bytes para BLAKE2b, até 8 bytes para "
479+ "BLAKE2s)."
470480
471481#: ../../library/hashlib.rst:352
472482msgid ""
473483"*person*: personalization string (up to 16 bytes for BLAKE2b, up to 8 bytes "
474484"for BLAKE2s)."
475485msgstr ""
486+ "*person*: string de personalização (até 16 bytes para BLAKE2b, até 8 bytes "
487+ "para BLAKE2s)."
476488
477489#: ../../library/hashlib.rst:355
478490msgid "The following table shows limits for general parameters (in bytes):"
479- msgstr ""
491+ msgstr "A tabela a seguir mostra os limites para parâmetros gerais (em bytes): "
480492
481493#: ../../library/hashlib.rst:358
482494msgid "Hash"
483- msgstr ""
495+ msgstr "Hash "
484496
485497#: ../../library/hashlib.rst:358
486498msgid "digest_size"
487499msgstr "digest_size"
488500
489501#: ../../library/hashlib.rst:358
490502msgid "len(key)"
491- msgstr ""
503+ msgstr "len(key) "
492504
493505#: ../../library/hashlib.rst:358
494506msgid "len(salt)"
495- msgstr ""
507+ msgstr "len(salt) "
496508
497509#: ../../library/hashlib.rst:358
498510msgid "len(person)"
499- msgstr ""
511+ msgstr "len(person) "
500512
501513#: ../../library/hashlib.rst:360
502514msgid "BLAKE2b"
503- msgstr ""
515+ msgstr "BLAKE2b "
504516
505517#: ../../library/hashlib.rst:360
506518msgid "64"
507- msgstr ""
519+ msgstr "64 "
508520
509521#: ../../library/hashlib.rst:360
510522msgid "16"
511523msgstr "16"
512524
513525#: ../../library/hashlib.rst:361
514526msgid "BLAKE2s"
515- msgstr ""
527+ msgstr "BLAKE2s "
516528
517529#: ../../library/hashlib.rst:361
518530msgid "32"