Skip to content

Commit 63880e4

Browse files
Update translation
Co-Authored-By: Rafael Fontenelle <rffontenelle@gmail.com> Co-Authored-By: Rainer Terroso
1 parent e5d1e34 commit 63880e4

4 files changed

Lines changed: 1151 additions & 274 deletions

File tree

c-api/dict.po

Lines changed: 35 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,17 @@
44
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
55
#
66
# Translators:
7-
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
87
# python-doc bot, 2025
8+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2025
99
#
1010
#, fuzzy
1111
msgid ""
1212
msgstr ""
1313
"Project-Id-Version: Python 3.14\n"
1414
"Report-Msgid-Bugs-To: \n"
15-
"POT-Creation-Date: 2025-11-19 14:14+0000\n"
15+
"POT-Creation-Date: 2025-11-19 19:26+0000\n"
1616
"PO-Revision-Date: 2025-09-16 00:00+0000\n"
17-
"Last-Translator: python-doc bot, 2025\n"
17+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n"
1818
"Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/"
1919
"teams/5390/pt_BR/)\n"
2020
"MIME-Version: 1.0\n"
@@ -770,86 +770,106 @@ msgstr ""
770770

771771
#: ../../c-api/dict.rst:483
772772
msgid "Ordered Dictionaries"
773-
msgstr ""
773+
msgstr "Dicionários ordenados"
774774

775775
#: ../../c-api/dict.rst:485
776776
msgid ""
777777
"Python's C API provides interface for :class:`collections.OrderedDict` from "
778778
"C. Since Python 3.7, dictionaries are ordered by default, so there is "
779779
"usually little need for these functions; prefer ``PyDict*`` where possible."
780780
msgstr ""
781+
"A API C do Python fornece uma interface para :class:`collections."
782+
"OrderedDict` do C. Desde o Python 3.7, os dicionários são ordenados por "
783+
"padrão, então geralmente há pouca necessidade dessas funções; prefira "
784+
"``PyDict*`` sempre que possível."
781785

782786
#: ../../c-api/dict.rst:492
783787
msgid ""
784788
"Type object for ordered dictionaries. This is the same object as :class:"
785789
"`collections.OrderedDict` in the Python layer."
786790
msgstr ""
791+
"Objeto de tipo para dicionários ordenados. Este é o mesmo objeto que :class:"
792+
"`collections.OrderedDict` na camada Python."
787793

788794
#: ../../c-api/dict.rst:498
789795
msgid ""
790796
"Return true if *od* is an ordered dictionary object or an instance of a "
791797
"subtype of the :class:`~collections.OrderedDict` type. This function always "
792798
"succeeds."
793799
msgstr ""
800+
"Retorna verdadeiro se *od* for um objeto de dicionário ordenado ou uma "
801+
"instância de um subtipo do tipo :class:`~collections.OrderedDict`. Esta "
802+
"função sempre tem sucesso.."
794803

795804
#: ../../c-api/dict.rst:505
796805
msgid ""
797806
"Return true if *od* is an ordered dictionary object, but not an instance of "
798807
"a subtype of the :class:`~collections.OrderedDict` type. This function "
799808
"always succeeds."
800809
msgstr ""
810+
"Retorna verdadeiro se *od* for um objeto de dicionário ordenado, mas não uma "
811+
"instância de um subtipo do tipo :class:`~collections.OrderedDict`. Esta "
812+
"função sempre tem sucesso."
801813

802814
#: ../../c-api/dict.rst:512
803815
msgid "Analogous to :c:type:`PyDictKeys_Type` for ordered dictionaries."
804-
msgstr ""
816+
msgstr "Análogo a :c:type:`PyDictKeys_Type` para dicionários ordenados."
805817

806818
#: ../../c-api/dict.rst:517
807819
msgid "Analogous to :c:type:`PyDictValues_Type` for ordered dictionaries."
808-
msgstr ""
820+
msgstr "Análogo a :c:type:`PyDictValues_Type` para dicionários ordenados."
809821

810822
#: ../../c-api/dict.rst:522
811823
msgid "Analogous to :c:type:`PyDictItems_Type` for ordered dictionaries."
812-
msgstr ""
824+
msgstr "Análogo a :c:type:`PyDictItems_Type` para dicionários ordenados."
813825

814826
#: ../../c-api/dict.rst:527
815827
msgid "Return a new empty ordered dictionary, or ``NULL`` on failure."
816828
msgstr ""
829+
"Retorna um novo dicionário ordenado vazio ou ``NULL`` em caso de falha."
817830

818831
#: ../../c-api/dict.rst:529
819832
msgid "This is analogous to :c:func:`PyDict_New`."
820-
msgstr ""
833+
msgstr "Isso é análogo a :c:func:`PyDict_New`."
821834

822835
#: ../../c-api/dict.rst:534
823836
msgid ""
824837
"Insert *value* into the ordered dictionary *od* with a key of *key*. Return "
825838
"``0`` on success or ``-1`` with an exception set on failure."
826839
msgstr ""
840+
"Insere o valor *value* no dicionário ordenado *od* com a chave de *key*. "
841+
"Retorna ``0`` em caso de sucesso ou ``-1`` com uma exceção definida em caso "
842+
"de falha."
827843

828844
#: ../../c-api/dict.rst:537
829845
msgid "This is analogous to :c:func:`PyDict_SetItem`."
830-
msgstr ""
846+
msgstr "Isso é análogo a :c:func:`PyDict_SetItem`."
831847

832848
#: ../../c-api/dict.rst:542
833849
msgid ""
834850
"Remove the entry in the ordered dictionary *od* with key *key*. Return ``0`` "
835851
"on success or ``-1`` with an exception set on failure."
836852
msgstr ""
853+
"Remove a entrada do dicionário ordenado *od* com a chave *key*. Retorna "
854+
"``0`` em caso de sucesso ou ``-1`` com uma exceção definida em caso de falha."
837855

838856
#: ../../c-api/dict.rst:545
839857
msgid "This is analogous to :c:func:`PyDict_DelItem`."
840-
msgstr ""
858+
msgstr "Isso é análogo a :c:func:`PyDict_DelItem`."
841859

842860
#: ../../c-api/dict.rst:548
843861
msgid "These are :term:`soft deprecated` aliases to ``PyDict`` APIs:"
844862
msgstr ""
863+
"Estes são apelidos :term:`suavemente descontinuados <suavemente "
864+
"descontinuado>` a APIs de ``PyDict``:"
845865

846866
#: ../../c-api/dict.rst:555
847867
msgid "``PyODict``"
848-
msgstr ""
868+
msgstr "``PyODict``"
849869

850870
#: ../../c-api/dict.rst:556
851871
msgid "``PyDict``"
852-
msgstr ""
872+
msgstr "``PyDict``"
853873

854874
#: ../../c-api/dict.rst:558
855875
msgid ":c:func:`PyDict_GetItem`"
@@ -865,15 +885,15 @@ msgstr ":c:func:`PyDict_GetItemString`"
865885

866886
#: ../../c-api/dict.rst:564
867887
msgid ":c:func:`PyDict_Contains`"
868-
msgstr ""
888+
msgstr ":c:func:`PyDict_Contains`"
869889

870890
#: ../../c-api/dict.rst:566
871891
msgid ":c:func:`PyDict_Size`"
872-
msgstr ""
892+
msgstr ":c:func:`PyDict_Size`"
873893

874894
#: ../../c-api/dict.rst:568
875895
msgid ":c:func:`PyDict_GET_SIZE`"
876-
msgstr ""
896+
msgstr ":c:func:`PyDict_GET_SIZE`"
877897

878898
#: ../../c-api/dict.rst:8
879899
msgid "object"

0 commit comments

Comments
 (0)