|
4 | 4 | # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
5 | 5 | # |
6 | 6 | # Translators: |
7 | | -# python-doc bot, 2025 |
8 | 7 | # Rafael Fontenelle <rffontenelle@gmail.com>, 2025 |
| 8 | +# python-doc bot, 2025 |
9 | 9 | # |
10 | 10 | #, fuzzy |
11 | 11 | msgid "" |
12 | 12 | msgstr "" |
13 | 13 | "Project-Id-Version: Python 3.14\n" |
14 | 14 | "Report-Msgid-Bugs-To: \n" |
15 | | -"POT-Creation-Date: 2025-11-13 18:32+0000\n" |
| 15 | +"POT-Creation-Date: 2025-11-19 14:14+0000\n" |
16 | 16 | "PO-Revision-Date: 2025-09-16 00:00+0000\n" |
17 | | -"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n" |
| 17 | +"Last-Translator: python-doc bot, 2025\n" |
18 | 18 | "Language-Team: Portuguese (Brazil) (https://app.transifex.com/python-doc/" |
19 | 19 | "teams/5390/pt_BR/)\n" |
20 | 20 | "MIME-Version: 1.0\n" |
@@ -768,6 +768,113 @@ msgstr "" |
768 | 768 | "Retorna verdadeiro se *op* for uma instância de uma visualização de itens de " |
769 | 769 | "dicionário. Esta função sempre tem sucesso." |
770 | 770 |
|
| 771 | +#: ../../c-api/dict.rst:483 |
| 772 | +msgid "Ordered Dictionaries" |
| 773 | +msgstr "" |
| 774 | + |
| 775 | +#: ../../c-api/dict.rst:485 |
| 776 | +msgid "" |
| 777 | +"Python's C API provides interface for :class:`collections.OrderedDict` from " |
| 778 | +"C. Since Python 3.7, dictionaries are ordered by default, so there is " |
| 779 | +"usually little need for these functions; prefer ``PyDict*`` where possible." |
| 780 | +msgstr "" |
| 781 | + |
| 782 | +#: ../../c-api/dict.rst:492 |
| 783 | +msgid "" |
| 784 | +"Type object for ordered dictionaries. This is the same object as :class:" |
| 785 | +"`collections.OrderedDict` in the Python layer." |
| 786 | +msgstr "" |
| 787 | + |
| 788 | +#: ../../c-api/dict.rst:498 |
| 789 | +msgid "" |
| 790 | +"Return true if *od* is an ordered dictionary object or an instance of a " |
| 791 | +"subtype of the :class:`~collections.OrderedDict` type. This function always " |
| 792 | +"succeeds." |
| 793 | +msgstr "" |
| 794 | + |
| 795 | +#: ../../c-api/dict.rst:505 |
| 796 | +msgid "" |
| 797 | +"Return true if *od* is an ordered dictionary object, but not an instance of " |
| 798 | +"a subtype of the :class:`~collections.OrderedDict` type. This function " |
| 799 | +"always succeeds." |
| 800 | +msgstr "" |
| 801 | + |
| 802 | +#: ../../c-api/dict.rst:512 |
| 803 | +msgid "Analogous to :c:type:`PyDictKeys_Type` for ordered dictionaries." |
| 804 | +msgstr "" |
| 805 | + |
| 806 | +#: ../../c-api/dict.rst:517 |
| 807 | +msgid "Analogous to :c:type:`PyDictValues_Type` for ordered dictionaries." |
| 808 | +msgstr "" |
| 809 | + |
| 810 | +#: ../../c-api/dict.rst:522 |
| 811 | +msgid "Analogous to :c:type:`PyDictItems_Type` for ordered dictionaries." |
| 812 | +msgstr "" |
| 813 | + |
| 814 | +#: ../../c-api/dict.rst:527 |
| 815 | +msgid "Return a new empty ordered dictionary, or ``NULL`` on failure." |
| 816 | +msgstr "" |
| 817 | + |
| 818 | +#: ../../c-api/dict.rst:529 |
| 819 | +msgid "This is analogous to :c:func:`PyDict_New`." |
| 820 | +msgstr "" |
| 821 | + |
| 822 | +#: ../../c-api/dict.rst:534 |
| 823 | +msgid "" |
| 824 | +"Insert *value* into the ordered dictionary *od* with a key of *key*. Return " |
| 825 | +"``0`` on success or ``-1`` with an exception set on failure." |
| 826 | +msgstr "" |
| 827 | + |
| 828 | +#: ../../c-api/dict.rst:537 |
| 829 | +msgid "This is analogous to :c:func:`PyDict_SetItem`." |
| 830 | +msgstr "" |
| 831 | + |
| 832 | +#: ../../c-api/dict.rst:542 |
| 833 | +msgid "" |
| 834 | +"Remove the entry in the ordered dictionary *od* with key *key*. Return ``0`` " |
| 835 | +"on success or ``-1`` with an exception set on failure." |
| 836 | +msgstr "" |
| 837 | + |
| 838 | +#: ../../c-api/dict.rst:545 |
| 839 | +msgid "This is analogous to :c:func:`PyDict_DelItem`." |
| 840 | +msgstr "" |
| 841 | + |
| 842 | +#: ../../c-api/dict.rst:548 |
| 843 | +msgid "These are :term:`soft deprecated` aliases to ``PyDict`` APIs:" |
| 844 | +msgstr "" |
| 845 | + |
| 846 | +#: ../../c-api/dict.rst:555 |
| 847 | +msgid "``PyODict``" |
| 848 | +msgstr "" |
| 849 | + |
| 850 | +#: ../../c-api/dict.rst:556 |
| 851 | +msgid "``PyDict``" |
| 852 | +msgstr "" |
| 853 | + |
| 854 | +#: ../../c-api/dict.rst:558 |
| 855 | +msgid ":c:func:`PyDict_GetItem`" |
| 856 | +msgstr ":c:func:`PyDict_GetItem`" |
| 857 | + |
| 858 | +#: ../../c-api/dict.rst:560 |
| 859 | +msgid ":c:func:`PyDict_GetItemWithError`" |
| 860 | +msgstr ":c:func:`PyDict_GetItemWithError`" |
| 861 | + |
| 862 | +#: ../../c-api/dict.rst:562 |
| 863 | +msgid ":c:func:`PyDict_GetItemString`" |
| 864 | +msgstr ":c:func:`PyDict_GetItemString`" |
| 865 | + |
| 866 | +#: ../../c-api/dict.rst:564 |
| 867 | +msgid ":c:func:`PyDict_Contains`" |
| 868 | +msgstr "" |
| 869 | + |
| 870 | +#: ../../c-api/dict.rst:566 |
| 871 | +msgid ":c:func:`PyDict_Size`" |
| 872 | +msgstr "" |
| 873 | + |
| 874 | +#: ../../c-api/dict.rst:568 |
| 875 | +msgid ":c:func:`PyDict_GET_SIZE`" |
| 876 | +msgstr "" |
| 877 | + |
771 | 878 | #: ../../c-api/dict.rst:8 |
772 | 879 | msgid "object" |
773 | 880 | msgstr "objeto" |
|
0 commit comments