@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version : Python 3.11\n "
1313"Report-Msgid-Bugs-To : \n "
14- "POT-Creation-Date : 2024-10-18 15:23 +0000\n "
14+ "POT-Creation-Date : 2024-10-26 21:16 +0000\n "
1515"PO-Revision-Date : 2023-05-24 02:08+0000\n "
1616"Last-Translator : Rafael Fontenelle <rffontenelle@gmail.com>, 2024\n "
1717"Language-Team : Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -37,55 +37,81 @@ msgid ""
3737"structure into a static variable, :c:data:`!PyDateTimeAPI`, that is used by "
3838"the following macros."
3939msgstr ""
40+ "Vários objetos de data e hora são fornecidos pelo módulo :mod:`datetime`. "
41+ "Antes de usar qualquer uma dessas funções, o arquivo de cabeçalho :file:"
42+ "`datetime.h` deve ser incluído na sua fonte (observe que isso não é incluído "
43+ "por :file:`Python.h`) e a macro :c:macro:`!PyDateTime_IMPORT` deve ser "
44+ "chamada, geralmente como parte da função de inicialização do módulo. A macro "
45+ "coloca um ponteiro para uma estrutura C em uma variável estática, :c:data:`!"
46+ "PyDateTimeAPI`, usada pelas macros a seguir."
4047
4148#: ../../c-api/datetime.rst:18
4249msgid "This subtype of :c:type:`PyObject` represents a Python date object."
4350msgstr ""
51+ "Esta é uma instância de :c:type:`PyObject` representando o objeto data do "
52+ "Python."
4453
4554#: ../../c-api/datetime.rst:22
4655msgid "This subtype of :c:type:`PyObject` represents a Python datetime object."
4756msgstr ""
57+ "Esta é uma instância de :c:type:`PyObject` representando o objeto datetime "
58+ "do Python."
4859
4960#: ../../c-api/datetime.rst:26
5061msgid "This subtype of :c:type:`PyObject` represents a Python time object."
5162msgstr ""
63+ "Esta é uma instância de :c:type:`PyObject` representando o objeto hora do "
64+ "Python."
5265
5366#: ../../c-api/datetime.rst:30
5467msgid ""
5568"This subtype of :c:type:`PyObject` represents the difference between two "
5669"datetime values."
5770msgstr ""
71+ "Esta é uma instância de :c:type:`PyObject` representando a diferença entre "
72+ "dois valores de datetime."
5873
5974#: ../../c-api/datetime.rst:34
6075msgid ""
6176"This instance of :c:type:`PyTypeObject` represents the Python date type; it "
6277"is the same object as :class:`datetime.date` in the Python layer."
6378msgstr ""
79+ "Esta instância de :c:type:`PyTypeObject` representa o tipo data do Python; é "
80+ "o mesmo objeto que :class:`datetime.date` na camada de Python."
6481
6582#: ../../c-api/datetime.rst:39
6683msgid ""
6784"This instance of :c:type:`PyTypeObject` represents the Python datetime type; "
6885"it is the same object as :class:`datetime.datetime` in the Python layer."
6986msgstr ""
87+ "Esta instância de :c:type:`PyTypeObject` representa o tipo datetime do "
88+ "Python; é o mesmo objeto que :class:`datetime.datetime` na camada de Python."
7089
7190#: ../../c-api/datetime.rst:44
7291msgid ""
7392"This instance of :c:type:`PyTypeObject` represents the Python time type; it "
7493"is the same object as :class:`datetime.time` in the Python layer."
7594msgstr ""
95+ "Esta instância de :c:type:`PyTypeObject` representa o tipo hora do Python; é "
96+ "o mesmo objeto que :class:`datetime.time` na camada de Python."
7697
7798#: ../../c-api/datetime.rst:49
7899msgid ""
79100"This instance of :c:type:`PyTypeObject` represents Python type for the "
80101"difference between two datetime values; it is the same object as :class:"
81102"`datetime.timedelta` in the Python layer."
82103msgstr ""
104+ "Esta instância de :c:type:`PyTypeObject` representa o tipo Python para a "
105+ "diferença entre dois valores de datetime; é o mesmo objeto que :class:"
106+ "`datetime.timedelta` na camada de Python."
83107
84108#: ../../c-api/datetime.rst:55
85109msgid ""
86110"This instance of :c:type:`PyTypeObject` represents the Python time zone info "
87111"type; it is the same object as :class:`datetime.tzinfo` in the Python layer."
88112msgstr ""
113+ "Esta instância de :c:type:`PyTypeObject` representa o tipo fuso horário do "
114+ "Python; é o mesmo objeto que :class:`datetime.tzinfo` na camada de Python."
89115
90116#: ../../c-api/datetime.rst:59
91117msgid "Macro for access to the UTC singleton:"
@@ -109,36 +135,45 @@ msgid ""
109135"of :c:data:`!PyDateTime_DateType`. *ob* must not be ``NULL``. This "
110136"function always succeeds."
111137msgstr ""
138+ "Retorna true se *ob* for do tipo :c:data:`PyDateTime_DateType` ou um subtipo "
139+ "de :c:data:`!PyDateTime_DateType`. *ob* não deve ser ``NULL``. Esta função "
140+ "sempre obtém sucesso."
112141
113142#: ../../c-api/datetime.rst:80
114143msgid ""
115144"Return true if *ob* is of type :c:data:`PyDateTime_DateType`. *ob* must not "
116145"be ``NULL``. This function always succeeds."
117146msgstr ""
118147"Retorna true se *ob* for do tipo :c:data:`PyDateTime_DateType`. *ob* não "
119- "deve ser ``NULL``. Esta função sempre tem sucesso."
148+ "deve ser ``NULL``. Esta função sempre obtém sucesso."
120149
121150#: ../../c-api/datetime.rst:86
122151msgid ""
123152"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType` or a "
124153"subtype of :c:data:`!PyDateTime_DateTimeType`. *ob* must not be ``NULL``. "
125154"This function always succeeds."
126155msgstr ""
156+ "Retorna true se *ob* é do tipo :c:data:`PyDateTime_DateTimeType` ou um "
157+ "subtipo de :c:data:`!PyDateTime_DateTimeType`. *ob* não deve ser ``NULL``. "
158+ "Esta função sempre obtém sucesso."
127159
128160#: ../../c-api/datetime.rst:93
129161msgid ""
130162"Return true if *ob* is of type :c:data:`PyDateTime_DateTimeType`. *ob* must "
131163"not be ``NULL``. This function always succeeds."
132164msgstr ""
133165"Retorna true se *ob* for do tipo :c:data:`PyDateTime_DateTimeType`. *ob* não "
134- "deve ser ``NULL``. Esta função sempre tem sucesso."
166+ "deve ser ``NULL``. Esta função sempre obtém sucesso."
135167
136168#: ../../c-api/datetime.rst:99
137169msgid ""
138170"Return true if *ob* is of type :c:data:`PyDateTime_TimeType` or a subtype "
139171"of :c:data:`!PyDateTime_TimeType`. *ob* must not be ``NULL``. This "
140172"function always succeeds."
141173msgstr ""
174+ "Retorna true se *ob* é do tipo :c:data:`PyDateTime_TimeType` ou um subtipo "
175+ "de :c:data:`!PyDateTime_TimeType`. *ob* não deve ser ``NULL``. Esta função "
176+ "sempre obtém sucesso."
142177
143178#: ../../c-api/datetime.rst:106
144179msgid ""
@@ -154,6 +189,9 @@ msgid ""
154189"of :c:data:`!PyDateTime_DeltaType`. *ob* must not be ``NULL``. This "
155190"function always succeeds."
156191msgstr ""
192+ "Retorna true se *ob* é do tipo :c:data:`PyDateTime_DeltaType` ou um subtipo "
193+ "de :c:data:`!PyDateTime_DeltaType`. *ob* não deve ser ``NULL``. Esta função "
194+ "sempre tem sucesso."
157195
158196#: ../../c-api/datetime.rst:119
159197msgid ""
0 commit comments