@@ -11,7 +11,7 @@ msgid ""
1111msgstr ""
1212"Project-Id-Version :Python 3.12\n "
1313"Report-Msgid-Bugs-To :\n "
14- "POT-Creation-Date :2025-01-03 14:53 +0000\n "
14+ "POT-Creation-Date :2025-10-15 15:54 +0000\n "
1515"PO-Revision-Date :2025-07-18 19:58+0000\n "
1616"Last-Translator :Rafael Fontenelle <rffontenelle@gmail.com>, 2025\n "
1717"Language-Team :Portuguese (Brazil) (https://app.transifex.com/python-doc/ "
@@ -25,7 +25,7 @@ msgstr ""
2525
2626#: ../../library/http.rst:2
2727msgid ":mod:`!http` --- HTTP modules"
28- msgstr ""
28+ msgstr ":mod:`!http` --- módulos HTTP "
2929
3030#: ../../library/http.rst:7
3131msgid "**Source code:** :source:`Lib/http/__init__.py`"
@@ -104,6 +104,19 @@ msgid ""
104104">>> list(HTTPStatus)\n"
105105"[HTTPStatus.CONTINUE, HTTPStatus.SWITCHING_PROTOCOLS, ...]"
106106msgstr ""
107+ ">>> from http import HTTPStatus\n"
108+ ">>> HTTPStatus.OK\n"
109+ "HTTPStatus.OK\n"
110+ ">>> HTTPStatus.OK == 200\n"
111+ "True\n"
112+ ">>> HTTPStatus.OK.value\n"
113+ "200\n"
114+ ">>> HTTPStatus.OK.phrase\n"
115+ "'OK'\n"
116+ ">>> HTTPStatus.OK.description\n"
117+ "'Request fulfilled, document follows'\n"
118+ ">>> list(HTTPStatus)\n"
119+ "[HTTPStatus.CONTINUE, HTTPStatus.SWITCHING_PROTOCOLS, ...]"
107120
108121#: ../../library/http.rst:53
109122msgid "HTTP status codes"
@@ -115,6 +128,9 @@ msgid ""
115128"http-status-codes/http-status-codes.xhtml>`_ available in :class:`http."
116129"HTTPStatus` are:"
117130msgstr ""
131+ "Suportados, `códigos de status registrados no IANA <https://www.iana.org/"
132+ "assignments/http-status-codes/http-status-codes.xhtml>`_ disponíveis em :"
133+ "class:`http.HTTPStatus` são:"
118134
119135#: ../../library/http.rst:60
120136msgid "Code"
@@ -971,12 +987,19 @@ msgid ""
971987">>> HTTPStatus.OK.is_client_error\n"
972988"False"
973989msgstr ""
990+ ">>> from http import HTTPStatus\n"
991+ ">>> HTTPStatus.OK.is_success\n"
992+ "True\n"
993+ ">>> HTTPStatus.OK.is_client_error\n"
994+ "False"
974995
975996#: ../../library/http.rst:169
976997msgid ""
977998"A subclass of :class:`enum.StrEnum` that defines a set of HTTP methods and "
978999"descriptions written in English."
9791000msgstr ""
1001+ "Subclasse de :class:`enum.StrEnum` que define um conjunto de métodos HTTP e "
1002+ "descrições escritas em inglês."
9801003
9811004#: ../../library/http.rst:173
9821005msgid ""
@@ -1001,6 +1024,26 @@ msgid ""
10011024" <HTTPMethod.PUT>,\n"
10021025" <HTTPMethod.TRACE>]"
10031026msgstr ""
1027+ ">>> from http import HTTPMethod\n"
1028+ ">>>\n"
1029+ ">>> HTTPMethod.GET\n"
1030+ "<HTTPMethod.GET>\n"
1031+ ">>> HTTPMethod.GET == 'GET'\n"
1032+ "True\n"
1033+ ">>> HTTPMethod.GET.value\n"
1034+ "'GET'\n"
1035+ ">>> HTTPMethod.GET.description\n"
1036+ "'Retrieve the target.'\n"
1037+ ">>> list(HTTPMethod)\n"
1038+ "[<HTTPMethod.CONNECT>,\n"
1039+ " <HTTPMethod.DELETE>,\n"
1040+ " <HTTPMethod.GET>,\n"
1041+ " <HTTPMethod.HEAD>,\n"
1042+ " <HTTPMethod.OPTIONS>,\n"
1043+ " <HTTPMethod.PATCH>,\n"
1044+ " <HTTPMethod.POST>,\n"
1045+ " <HTTPMethod.PUT>,\n"
1046+ " <HTTPMethod.TRACE>]"
10041047
10051048#: ../../library/http.rst:197
10061049msgid "HTTP methods"
@@ -1011,6 +1054,9 @@ msgid ""
10111054"Supported, `IANA-registered methods <https://www.iana.org/assignments/http-"
10121055"methods/http-methods.xhtml>`_ available in :class:`http.HTTPMethod` are:"
10131056msgstr ""
1057+ "Suportados, `métodos registrados no IANA <https://www.iana.org/assignments/"
1058+ "http-methods/http-methods.xhtml>`_ disponíveis em :class:`http.HTTPMethod` "
1059+ "são:"
10141060
10151061#: ../../library/http.rst:204
10161062msgid "Method"
@@ -1086,7 +1132,7 @@ msgstr "``PATCH``"
10861132
10871133#: ../../library/http.rst:214
10881134msgid "HTTP/1.1 :rfc:`5789`"
1089- msgstr ""
1135+ msgstr "HTTP/1.1 :rfc:`5789` "
10901136
10911137#: ../../library/http.rst:9
10921138msgid "HTTP"