Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit ba8c5a4

Browse filesBrowse files
authored
Translates 'library/http.client.po' (#2308)
Closes #1862
1 parent deda55e commit ba8c5a4
Copy full SHA for ba8c5a4

File tree

Expand file treeCollapse file tree

1 file changed

+16
-18
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+16
-18
lines changed

‎library/http.client.po

Copy file name to clipboardExpand all lines: library/http.client.po
+16-18Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgstr ""
1111
"Project-Id-Version: Python 3.8\n"
1212
"Report-Msgid-Bugs-To: \n"
1313
"POT-Creation-Date: 2022-10-25 19:47+0200\n"
14-
"PO-Revision-Date: 2021-10-30 13:48-0300\n"
14+
"PO-Revision-Date: 2023-02-07 09:17-0600\n"
1515
"Last-Translator: Cristián Maureira-Fredes <cmaureirafredes@gmail.com>\n"
1616
"Language: es_AR\n"
1717
"Language-Team: python-doc-es\n"
@@ -30,15 +30,14 @@ msgid "**Source code:** :source:`Lib/http/client.py`"
3030
msgstr "**Código fuente:** :source:`Lib/http/client.py`"
3131

3232
#: ../Doc/library/http.client.rst:17
33-
#, fuzzy
3433
msgid ""
3534
"This module defines classes that implement the client side of the HTTP and "
3635
"HTTPS protocols. It is normally not used directly --- the module :mod:"
3736
"`urllib.request` uses it to handle URLs that use HTTP and HTTPS."
3837
msgstr ""
39-
"Este módulo define clases que se implementan del lado del cliente de los "
38+
"Este módulo define clases que implementan el lado del cliente de los "
4039
"protocolos HTTP y HTTPS. Normalmente no se usa directamente --- el módulo :"
41-
"mod:`urllib.request` lo usa para gestionar URLs que usan HTTP y HTTPS."
40+
"mod:`urllib.request` lo usa para gestionar URLs que utilizan HTTP y HTTPS."
4241

4342
#: ../Doc/library/http.client.rst:23
4443
msgid ""
@@ -56,22 +55,25 @@ msgstr ""
5655
"El soporte HTTPS solo está disponible si Python se compiló con soporte SSL "
5756
"(a través del módulo :mod:`ssl`)."
5857

58+
#, fuzzy
5959
msgid ":ref:`Availability <availability>`: not Emscripten, not WASI."
60-
msgstr ""
60+
msgstr ":ref:`Disponibilidad <availability>`: no Emscripten, no WASI."
6161

6262
#: ../Doc/library/cpython/Doc/includes/wasm-notavail.rst:5
6363
msgid ""
6464
"This module does not work or is not available on WebAssembly platforms "
6565
"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for "
6666
"more information."
6767
msgstr ""
68+
"Este módulo no funciona o no está disponible en plataformas WebAssembly "
69+
"``wasm32-emscripten`` y ``wasm32-wasi``. Véase :ref:`wasm-availability` para "
70+
"más información."
6871

6972
#: ../Doc/library/http.client.rst:33
7073
msgid "The module provides the following classes:"
7174
msgstr "El módulo proporciona las siguientes clases:"
7275

7376
#: ../Doc/library/http.client.rst:39
74-
#, fuzzy
7577
msgid ""
7678
"An :class:`HTTPConnection` instance represents one transaction with an HTTP "
7779
"server. It should be instantiated by passing it a host and optional port "
@@ -110,7 +112,6 @@ msgid "*source_address* was added."
110112
msgstr "*source_address* fue adicionado."
111113

112114
#: ../Doc/library/http.client.rst:62
113-
#, fuzzy
114115
msgid ""
115116
"The *strict* parameter was removed. HTTP 0.9-style \"Simple Responses\" are "
116117
"no longer supported."
@@ -723,18 +724,17 @@ msgstr ""
723724
"búfer *b*. Retorna el número de bytes leídos."
724725

725726
#: ../Doc/library/http.client.rst:475
726-
#, fuzzy
727727
msgid ""
728728
"Return the value of the header *name*, or *default* if there is no header "
729729
"matching *name*. If there is more than one header with the name *name*, "
730730
"return all of the values joined by ', '. If *default* is any iterable other "
731731
"than a single string, its elements are similarly returned joined by commas."
732732
msgstr ""
733-
"Retorna el valor del encabezado *name* o *default* si no hay un encabezado "
733+
"Retorna el valor del encabezado *name*, o *default* si no hay un encabezado "
734734
"que coincida con *name*. Si hay más de un encabezado con el nombre *name*, "
735-
"retorne todos los valores unidos por ', '. Si es 'default' es cualquier "
736-
"iterable que no sea una sola cadena de caracteres, sus elementos se retornan "
737-
"de manera similar unidos por comas."
735+
"retorne todos los valores unidos por ', '. Si 'default' es cualquier "
736+
"iterable que no sea una sola cadena de caracteres sus elementos se retornan, "
737+
"de manera similar, unidos por comas."
738738

739739
#: ../Doc/library/http.client.rst:482
740740
msgid "Return a list of (header, value) tuples."
@@ -826,12 +826,10 @@ msgstr ""
826826
"que el método ``HEAD`` nunca retorna ningún dato. ::"
827827

828828
#: ../Doc/library/http.client.rst:581
829-
#, fuzzy
830829
msgid "Here is an example session that uses the ``POST`` method::"
831-
msgstr "Aquí hay una sesión de ejemplo que usa el método ``GET`` *method*::"
830+
msgstr "Aquí hay una sesión de ejemplo que usa el método ``POST``::"
832831

833832
#: ../Doc/library/http.client.rst:597
834-
#, fuzzy
835833
msgid ""
836834
"Client side HTTP ``PUT`` requests are very similar to ``POST`` requests. The "
837835
"difference lies only on the server side where HTTP servers will allow "
@@ -840,13 +838,13 @@ msgid ""
840838
"the appropriate method attribute. Here is an example session that uses the "
841839
"``PUT`` method::"
842840
msgstr ""
843-
"Las solicitudes ``HTTP PUT`` del lado del cliente son muy similares a las "
841+
"Las solicitudes HTTP ``PUT`` del lado del cliente son muy similares a las "
844842
"solicitudes ``POST``. La diferencia radica solo en el lado del servidor "
845-
"donde el servidor HTTP permitirá que se creen recursos a través de la "
843+
"donde los servidores HTTP permitirán que se creen recursos a través de la "
846844
"solicitud ``PUT``. Cabe señalar que los métodos HTTP personalizados también "
847845
"se manejan en :class:`urllib.request.Request` configurando el atributo de "
848846
"método apropiado. Aquí hay una sesión de ejemplo que muestra cómo enviar una "
849-
"solicitud ``PUT`` utilizando http.client::"
847+
"solicitud ``PUT``::"
850848

851849
#: ../Doc/library/http.client.rst:618
852850
msgid "HTTPMessage Objects"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.